source: branches/htmlform/ipdb.css@ 466

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

/branches/htmlform

Give up on proper spelling of "centre" in CSS class names and
defs - browsers only understand an alignment of "center".
Adjust width of some <hr>'s
Visual row0/row1 classes got switched somehow, somewhere
Remove legacy "color0/color1/color2" row class defs
Convert showrouted to template
See #3.

File size: 3.3 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}
98tr.row0 {
99 background-color: #D0E0E0;
100 font-family: Verdana, Arial, Helvetica, sans-serif;
101 font-size: 90%;
102}
103tr.row1 {
104 background-color: #A8C4D0;
105 font-family: Verdana, Arial, Helvetica, sans-serif;
106 font-size: 90%;
107}
108
109hr.w60 {
110 width: 60%;
111}
112hr.w30 {
113 width: 30%;
114}
115
116/* legacy defs */
117tr.hack {
118 background-color: #E4EEE8;
119 font-family: Verdana, Arial, Helvetica, sans-serif;
120 font-size: 90%;
121}
122
123tr.warning {
124 background-color: #000000;
125 font-family: Verdana, Arial, Helvetica, sans-serif;
126 font-weight: bold;
127 color: red;
128}
129
130tr.header {
131 background-color: #CCCCCC;
132 font-family: Verdana, Arial, Helvetica, sans-serif;
133}
134
135td {
136 padding-right: 2px;
137 padding-left: 2px;
138}
139
140/* Generic classes */
141.indent {
142 margin-left: 5%;
143 font-size: 90%;
144}
145
146.regular {
147 font-family: Verdana, Arial, Helvetica, sans-serif;
148 font-size: 100%;
149}
150
151.heading {
152 font-size: 110%;
153 font-weight: bold;
154 font-family: Verdana, Arial, Helvetica, sans-serif;
155}
156
157.tbltitle {
158 text-align: center;
159 font-size: 110%;
160 font-weight: bold;
161 font-family: Verdana, Arial, Helvetica, sans-serif;
162}
163.tblsubtitle {
164 font-size: 105%;
165 font-weight: bold;
166 font-family: Verdana, Arial, Helvetica, sans-serif;
167}
168
169.small {
170 font-size: 60%;
171}
172
173.center {
174 text-align: center;
175 font-family: Verdana, Arial, Helvetica, sans-serif;
176 font-size: 100%;
177}
178
179.err {
180 text-align: center;
181 font-size: 100%;
182}
183
184.red {
185 font-weight: bold;
186 font-family: Verdana, Arial, Helvetica, sans-serif;
187 font-size:100%;
188 color: red;
189}
190
191.mask {
192 background: #00ff00;
193}
194
195.wildcard {
196 background: #ffff00;
197}
Note: See TracBrowser for help on using the repository browser.