merged from devel
[selectricity] / public / stylesheets / common.css
1 @charset "UTF-8";
2 /* CSS Document */
3
4 /****************************************************************
5    Selectricity || selectricity.org
6    Design by Courtland Allen
7   
8    "Reset Reloaded"
9    Thanks to Eric Meyer
10    http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
11 *****************************************************************/
12
13 /* common css files */
14
15 html, body, div, span, applet, object, iframe,
16 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
17 a, abbr, acronym, address, big, cite, code,
18 del, dfn, em, font, img, ins, kbd, q, s, samp,
19 small, strike, strong, sub, sup, tt, var,
20 dl, dt, dd,
21 fieldset, form, label, legend,
22 table, caption, tbody, tfoot, thead, tr, th, td {
23         margin: 0;
24         padding: 0;
25         border: 0;
26         font-size: 100%; 
27         font-family: inherit;
28         vertical-align: baseline;
29 }
30
31 body {
32         font-size: 0.9em;
33         font-family: Trebuchet, Verdana, Arial, Helvetica, sans-serif;
34 }
35
36 /* tables still need 'cellspacing="0"' in the markup */
37 table {
38         border-collapse: separate;
39         border-spacing: 0;
40 }
41
42 caption, th, td {
43         text-align: left;
44         font-weight: normal;
45 }
46
47 blockquote:before, blockquote:after,
48 q:before, q:after {
49         content: "";
50 }
51
52 blockquote, q {
53         quotes: "" "";
54 }
55
56 strong, h2, h3 {
57     font-weight: bold;
58 }
59
60 h2, h3 {
61         text-transform: uppercase;
62     margin-bottom: 0.5em !important;
63 }
64
65 #page-wrapper {
66         width: 960px;
67         margin: 0 auto 0 auto;
68 }
69
70 .clear-div {
71         clear: both;
72 }
73
74
75 /* footer */
76
77 #footer {
78         font-size: 11px;
79         font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, sans-serif;
80         margin-top: 40px;
81         text-align: center;
82 }
83
84 #footer a {
85         text-decoration: none;
86 }
87
88 #footer a:hover {
89         text-decoration: underline;
90 }
91
92 /* flash notices */
93
94 #notice {
95     background: #FFFBB3; 
96     border: 1px black solid;
97         text-align: center;
98         font-weight: bold;
99         padding: 5px 5px 5px 15px;
100     width: 250px;
101 }
102
103 #notice {
104     background: #FFFBB3; 
105     border: 1px black solid;
106         text-align: center;
107         font-weight: bold
108 }
109
110 .preftable {
111         font-family: verdana,arial,helvetica,sans-serif;
112         border-spacing: 0px;
113         border-width: 2px;
114         border-color: #999999;
115         border-style: solid;
116         caption-side: top;
117 }
118
119 .preftable th {
120         font-family: verdana,arial,helvetica,sans-serif;
121         border-width: 2px;
122         border-color: #999999;
123         border-style: solid;
124         text-align: center;
125         font-weight: bold;
126         padding: 5px 5px 5px 5px;
127         background-color: #999999;
128         color: #FFFFFF;
129 }
130
131 .preftable td {
132   border-collapse: collapse;
133   border-width: 1px;
134   border-color: #999999;
135   border-style: solid;
136   text-align: right;
137   padding-right: 5px;
138   padding-left: 5px;
139 }
140

Benjamin Mako Hill || Want to submit a patch?