Subversion Repositories php_library

Rev

Rev 1 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 rodolico 1
/*-----------------------------------------------------------------------------
2
   Copyright 2006
3
   Daily Data, Inc.
4
   All rights reserved
5
   Name: $Id: contact_us.css,v 1.7 2006/11/30 03:58:26 rodolico Exp $
6
   Description:
7
      CSS for contact_us.php library
8
 
9
   $Date: 2006/11/30 03:58:26 $
10
   $Revision: 1.7 $
11
   Revision History:
12
      $Log: contact_us.css,v $
13
      Revision 1.7  2006/11/30 03:58:26  rodolico
14
      Beginning work on connection to payment center. Still needs a little work
15
 
16
 
17
-------------------------------------------------------------------------------*/
18
 
19
/* Contact form */
20
/* Master styles v 1 */
21
/* 2006, Daily Data, Inc. */
22
 
23
/* Global */
24
 
25
 
26
 
27
body {
28
    background:#caedb3;  /* page background color*/
29
    color:#000;   /*default text color*/
30
    font-family:Arial, Helvetica, sans-serif;
31
    margin:0px;
32
    padding:0px;
33
  }
34
 
35
 
36
a:link, a:visited {
37
    /*default link color/appearance*/
38
    color:#FF0000;
39
    text-decoration:underline;
40
  }
41
 
42
 
43
a:hover, a:active {
44
    /*on hover*/
45
    color:#0000FF;
46
    text-decoration:none;
47
  }
48
 
49
 
50
p {
51
    font-size:10px;
52
    margin-left:4px;
53
    margin-right:4px;
54
  }
55
 
56
/*h1-h4 sizes, based relative to default font size.*/
57
/*color, margin, padding, etc. can all be applied*/
58
 
59
 
60
 
61
h1 {
62
    font-size : 14px;
63
    text-align : center;
64
  }
65
 
66
 
67
h2 {
68
    font-size:13px;
69
  }
70
 
71
 
72
h3 {
73
    font-size:12px;
74
  }
75
 
76
 
77
h4 {
78
    font-size:11px;
79
  }
80
 
81
/* Layout */
82
 
83
 
84
 
85
#header {
86
    /*adjust properties based on the header properties of the page in question*/
87
    width : 600px;
88
    background-color : #d2f0bd;
89
    height : 130px;
90
    vertical-align : top;
91
  }
92
 
93
 
94
.header-menu {
95
    /*if header has a menu, adjust this section accordingly*/
96
    float:right;
97
    height:25px;
98
    text-align:right;
99
  }
100
 
101
 
102
#content {
103
    /*the main body of the page. Adjust styles to fit with existing style*/
104
    width:600px;
105
  }
106
 
107
 
108
.left-menu {
109
    /*if page has left sidebar menu, adjust css properties to match*/float:left;
110
    background:#99CCFF;
111
    width:150px;
112
    padding:5px 5px 5px 5px;
113
  }
114
 
115
 
116
.main-text {
117
    /*content area. This is where the form itself will live. It's nested within the content div in case specific styling should be applied*/
118
    background:#d2f0bd;
119
    padding:5px 5px 5px 5px;
120
  }
121
 
122
 
123
#footer {
124
    /*page footer*/width:760px;
125
    height:20px;
126
    background:#d2f0bd;
127
    text-align:center;
128
    font:0.8em Arial, Helvetica, sans-serif;
129
  }
130
 
131
/* Form styles */
132
 
133
 
134
 
135
.form-table {
136
    border:0px dotted #000;
137
  }
138
 
139
 
140
.form-table th {
141
    background:#FF9999;
142
    padding:2px 2px 2px 2px;
143
    border:0px solid #000;
144
  }
145
 
146
 
147
.form-table tr {
148
    border:1px solid #000;
149
    padding:0px 1px 1px 1px;
150
  }
151
 
152
 
153
.form-table td {
154
    border:0px solid #000;
155
    padding:1px 1px 1px 1px;
156
  }
157
 
158
 
159
.select {
160
    border:1px solid #000;
161
    background:#FFFFCC;
162
    color:#ee7205;
163
  }
164
 
165
 
166
.text-field {
167
    border:1px solid #000;
168
    background:#FFFFCC;
169
    color:#ee7205;
170
  }
171
 
172
 
173
.text-area {
174
    border:1px solid #000;
175
    background:#FFFFCC;
176
    color:#ee7205;
177
  }
178
 
179
 
180
.button {
181
    background:#297348;
182
    color:#fff;
183
    border-top:1px solid #000;
184
    border-bottom:3px solid #000;
185
    border-left:1px solid #000;
186
    border-right:3px solid #000;
187
  }
188