source: branches/1.1dev/css/admin.inc.css @ 306

Last change on this file since 306 was 289, checked in by quinn, 17 years ago

Modifications made for tilecity site.

File size: 4.2 KB
Line 
1/**
2 * admin.css
3 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
4 *
5 * CSS for the Strangecode administration sites.
6 */
7
8/*_____________________ GLOBAL ____________________*/
9body
10{
11    background: #fff;
12    margin: 0;
13    padding: 0;
14    font-family: verdana,geneva,arial,sans-serif;
15    color: #000;
16}
17
18a:link
19{
20    color: #336;
21    text-decoration: underline;
22}
23
24a:visited
25{
26    color: #336;
27    text-decoration: underline;
28}
29
30a:hover
31{
32    color: #C30;
33    text-decoration: none;
34}
35
36a:active
37{
38    color: #336;
39    text-decoration: none;
40}
41
42/*_____________________ MISC ____________________*/
43
44/* The following are here in addition to in utilities.inc.css only because I want the font size 70%. Is there a more general way to do this? There currently are NO font-size specifications in utilities.inc.css or codebase.inc.css. That seems safest, but requires that they are redefined anyways (like here for eg). Have you figured out how to do font sizes correctly? */
45
46form label
47{
48    font-size: 70%;
49    max-width: 20em;
50    /* BEAU: I added class="right" to the <TD> to make them align right as they were before. Do you know a better way? */
51    /*float: right;*/
52}
53form .formtext label
54{
55    font-size: 100%;
56    font-weight: normal;
57    padding: 0;
58}
59
60form table td {
61    padding-top: 0.5em;
62}
63
64.help
65{
66    font-size: 70%;
67}
68
69.commandtext
70{
71    font-size: 70%;
72}
73
74
75
76/*_____________________ HEADER ____________________*/
77#userinfo
78{
79    width: 98%;
80    margin: 10px auto 2px;
81    background-color: #fff;
82    color: #333;
83    text-align: right;
84}
85
86#userinfo p
87{
88    margin: 0;
89    padding: 0;
90    font-size: 60%;
91}
92
93#container
94{
95    width: 98%;
96    margin: 0 auto 10px;
97    background-color: #EEE;
98    border: 1px solid gray;
99}
100
101#top
102{
103    border-bottom: 1px solid gray;
104    background-color: #CCC;
105    padding: .5em;
106}
107
108#top h1
109{
110    margin: 0;
111    padding: 0;
112    font-size: 120%;
113    color: #000;
114}
115
116/*_____________________ NAVIGATION ____________________*/
117#leftnav
118{
119    float: left;
120    width: 9em;
121    margin: 0;
122    border-right: 1px solid gray;
123    padding: 0;
124    background-color: #EEE;
125}
126
127#leftnav ul
128{
129    padding: 0;
130    margin: 0;
131    width: 9em;
132}
133
134#leftnav #navlist li
135{
136    list-style: none;
137    margin: 0;
138    border-bottom: 1px solid gray;
139    margin-left: 0em;
140    padding: 1px 0 2px 6px;
141    font: bold 60% Verdana, sans-serif;
142}
143
144#leftnav #navlist li a
145{
146    text-decoration: none;
147    padding: 1px;
148}
149
150#leftnav #navlist li a:link, #navlist li a:visited
151{
152    color: #336;
153}
154
155#leftnav #navlist li a:hover, #navlist li a:active
156{
157    color: #C00;
158}
159
160#leftnav a.addlink
161{
162    margin-left: 0.5em;
163}
164
165/*_____________________ CONTENT ____________________*/
166#content
167{
168    margin-left: 9em;
169    border-left: 1px solid gray;
170    padding: 1px 10px 20px 10px;
171    background-color: #FFF;
172}
173
174#content h2
175{
176    font-size: 100%;
177    margin: 1.5em 0 .5em 0;
178}
179
180#content h3
181{
182    font-size: 85%;
183    margin: 1em 0 .5em 0;
184}
185
186#content h4
187{
188    font-size: 70%;
189    margin: .5em 0 .5em 0;
190}
191
192#content p
193{
194    margin: 0 0 .5em 0;
195    font-size: 70%;
196    /*     max-width: 36em; */
197    line-height: 130%;
198}
199
200#content li
201{
202    margin: 0 0 0 0;
203    font-size: 70%;
204    /*     max-width: 36em; */
205    line-height: 100%;
206}
207
208/*_____________________ TABLES ____________________*/
209/* BEAU: I copied this from NEXT. Please help! */
210table
211{
212    border: 1;
213    border-collapse: collapse;
214    border-spacing: 0;
215}
216
217th
218{
219    padding: 2px;
220    text-align: left;
221    vertical-align: middle;
222    white-space: nowrap;
223}
224
225td
226{
227    vertical-align: top;
228    padding-right: 6px;
229}
230
231table.list
232{
233    border: 1;
234    width: 100%;
235    margin: 4px 0;
236}
237
238table.list th
239{
240    padding-right: 6px;
241    font-size: 70%;
242    background-color: #CCC;
243    border-bottom: 1px solid #000;
244}
245
246table.list td
247{
248    font-size: 70%;
249    padding: 2px 6px 2px 2px;
250    border-bottom: 1px dotted #000;
251}
252
253/*_____________________ FOOTER ____________________*/
254#footer
255{
256    clear: both;
257    margin: 0;
258    padding: 6px;
259    color: #333;
260    background-color: #DDD;
261    border-top: 1px solid gray;
262    font-size: 60%;
263    line-height: 100%;
264}
265
266#footer a:link, 
267#footer a:visited
268{
269    color: #333;
270    text-decoration: none;
271}
272
273#footer a:active, 
274#footer a:hover
275{
276    color: #333;
277    text-decoration: underline;
278}
Note: See TracBrowser for help on using the repository browser.