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
RevLine 
[451]1/* Default/global defs for specific tags */
2fieldset {
3 border: none;
4 padding: 0px;
5 margin: 0px;
6}
7
[463]8#debug {
9 background-color: #990066;
10 padding: 2px;
11}
12
[450]13/* Specific divs */
[451]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}
[450]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
[413]74body {
75 background-color: #ffffff;
76 text-color: #000000;
77 font-family: helvetica;
78 margin: 0;
[4]79}
80
[413]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 */
[4]86
[466]87table.center {
[451]88 margin-left: auto;
89 margin-right: auto;
[465]90 text-align: center;
[451]91}
92
[450]93/* Defs for bulk-data rows */
94tr.header {
95 background-color: #CCCCCC;
96 font-family: Verdana, Arial, Helvetica, sans-serif;
97}
[469]98/* for reasons of Please The Validation Gods, these may be applied to
99 things that are not technically table rows */
100.row0 {
[466]101 background-color: #D0E0E0;
[450]102 font-family: Verdana, Arial, Helvetica, sans-serif;
103 font-size: 90%;
104}
[469]105.row1 {
[466]106 background-color: #A8C4D0;
[450]107 font-family: Verdana, Arial, Helvetica, sans-serif;
108 font-size: 90%;
109}
110
[465]111hr.w60 {
112 width: 60%;
113}
[466]114hr.w30 {
115 width: 30%;
116}
[465]117
[450]118/* legacy defs */
[397]119tr.hack {
120 background-color: #E4EEE8;
121 font-family: Verdana, Arial, Helvetica, sans-serif;
122 font-size: 90%;
123}
124
[4]125tr.warning {
[199]126 background-color: #000000;
[4]127 font-family: Verdana, Arial, Helvetica, sans-serif;
[199]128 font-weight: bold;
129 color: red;
[4]130}
131
132tr.header {
133 background-color: #CCCCCC;
134 font-family: Verdana, Arial, Helvetica, sans-serif;
135}
136
[461]137td {
138 padding-right: 2px;
139 padding-left: 2px;
140}
141
[451]142/* Generic classes */
[4]143.indent {
144 margin-left: 5%;
145 font-size: 90%;
146}
147
148.regular {
149 font-family: Verdana, Arial, Helvetica, sans-serif;
[254]150 font-size: 100%;
[4]151}
152
153.heading {
154 font-size: 110%;
155 font-weight: bold;
156 font-family: Verdana, Arial, Helvetica, sans-serif;
157}
158
[465]159.tbltitle {
160 text-align: center;
161 font-size: 110%;
162 font-weight: bold;
163 font-family: Verdana, Arial, Helvetica, sans-serif;
164}
[456]165.tblsubtitle {
166 font-size: 105%;
167 font-weight: bold;
168 font-family: Verdana, Arial, Helvetica, sans-serif;
169}
170
[4]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
[463]181.err {
182 text-align: center;
183 font-size: 100%;
184}
185
[4]186.red {
187 font-weight: bold;
188 font-family: Verdana, Arial, Helvetica, sans-serif;
189 font-size:100%;
190 color: red;
191}
[371]192
193.mask {
194 background: #00ff00;
195}
196
197.wildcard {
198 background: #ffff00;
199}
Note: See TracBrowser for help on using the repository browser.