source: branches/htmlform/ipdb.css@ 469

Last change on this file since 469 was 469, checked in by Kris Deugau, 14 years ago

/branches/htmlform

Checkpoint - convert editDisplay.html to template
Still need to finish type dropdown
Still need to clean up formatting, tr/div/form nesting/classes,
etc around buttons and restricted data
See #3

File size: 3.4 KB
Line 
1/* Default/global defs for specific tags */
2fieldset {
3 border: none;
4 padding: 0px;
5 margin: 0px;
6}
7
8#debug {
9 background-color: #990066;
10 padding: 2px;
11}
12
13/* Specific divs */
14#bodyheader {
15 margin-left: 4px;
16 position: relative;
17}
18#homelink {
19 font-size: 13px;
20 font-weight: bold;
21 position: absolute;
22 right: 10px;
23 bottom: 2px;
24 text-align: right;
25}
26#subheader {
27 background-color: #D0E0E0;
28 font-size: 90%;
29 padding: 3px;
30 border-top: thin solid #000000;
31 /* apparently this is required to keep "contained" position: absolute divs from escaping. O_o */
32 position: relative;
33}
34#csearch {
35 float: right;
36 padding: 3px;
37}
38#newlink {
39 position: absolute;
40 right: 10px;
41 top: 6px;
42 text-align: right;
43}
44#main {
45 padding: 10px;
46 border-top: thin solid #000000;
47/* text-align: center;*/
48 padding-top: 20px;
49 position: relative;
50}
51#utils {
52 font-size: 13px;
53 font-weight: bold;
54 position: absolute;
55 right: 10px;
56 top: 2px;
57 text-align: right;
58}
59#adminlink {
60 position: absolute;
61 right: 10px;
62 bottom: 5px;
63}
64#footer {
65 border-top: thin solid #000000;
66}
67#contact {
68 font-size: 10px;
69 position: absolute;
70 right: 10px;
71 text-align: right;
72}
73
74body {
75 background-color: #ffffff;
76 text-color: #000000;
77 font-family: helvetica;
78 margin: 0;
79}
80
81a { text-decoration: underline; }
82a:link { color:#3333ff; } /* unvisited link */
83a:visited { color:#663366; } /* visited link */
84a:hover { color:#dd00dd; } /* mouse over link */
85a:active { color:#cc0000; } /* selected link */
86
87table.center {
88 margin-left: auto;
89 margin-right: auto;
90 text-align: center;
91}
92
93/* Defs for bulk-data rows */
94tr.header {
95 background-color: #CCCCCC;
96 font-family: Verdana, Arial, Helvetica, sans-serif;
97}
98/* for reasons of Please The Validation Gods, these may be applied to
99 things that are not technically table rows */
100.row0 {
101 background-color: #D0E0E0;
102 font-family: Verdana, Arial, Helvetica, sans-serif;
103 font-size: 90%;
104}
105.row1 {
106 background-color: #A8C4D0;
107 font-family: Verdana, Arial, Helvetica, sans-serif;
108 font-size: 90%;
109}
110
111hr.w60 {
112 width: 60%;
113}
114hr.w30 {
115 width: 30%;
116}
117
118/* legacy defs */
119tr.hack {
120 background-color: #E4EEE8;
121 font-family: Verdana, Arial, Helvetica, sans-serif;
122 font-size: 90%;
123}
124
125tr.warning {
126 background-color: #000000;
127 font-family: Verdana, Arial, Helvetica, sans-serif;
128 font-weight: bold;
129 color: red;
130}
131
132tr.header {
133 background-color: #CCCCCC;
134 font-family: Verdana, Arial, Helvetica, sans-serif;
135}
136
137td {
138 padding-right: 2px;
139 padding-left: 2px;
140}
141
142/* Generic classes */
143.indent {
144 margin-left: 5%;
145 font-size: 90%;
146}
147
148.regular {
149 font-family: Verdana, Arial, Helvetica, sans-serif;
150 font-size: 100%;
151}
152
153.heading {
154 font-size: 110%;
155 font-weight: bold;
156 font-family: Verdana, Arial, Helvetica, sans-serif;
157}
158
159.tbltitle {
160 text-align: center;
161 font-size: 110%;
162 font-weight: bold;
163 font-family: Verdana, Arial, Helvetica, sans-serif;
164}
165.tblsubtitle {
166 font-size: 105%;
167 font-weight: bold;
168 font-family: Verdana, Arial, Helvetica, sans-serif;
169}
170
171.small {
172 font-size: 60%;
173}
174
175.center {
176 text-align: center;
177 font-family: Verdana, Arial, Helvetica, sans-serif;
178 font-size: 100%;
179}
180
181.err {
182 text-align: center;
183 font-size: 100%;
184}
185
186.red {
187 font-weight: bold;
188 font-family: Verdana, Arial, Helvetica, sans-serif;
189 font-size:100%;
190 color: red;
191}
192
193.mask {
194 background: #00ff00;
195}
196
197.wildcard {
198 background: #ffff00;
199}
Note: See TracBrowser for help on using the repository browser.