committed css changes from courtland fixing some headerbar wonkiness
[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: 11px;
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: Verdana, Arial, Helvetica, 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         padding: 5px 5px 5px 15px;
109     width: 250px;
110 }

Benjamin Mako Hill || Want to submit a patch?