5e23927b893ede6959b333f2b1261789d88db458
[selectricity-live] / 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
32 #body {
33         font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
34         font-size: 12px;
35         text-align: left;
36         line-height: 1.5em;
37 }
38
39 #body a {
40         text-decoration: underline;
41         color: inherit;
42         display: inline;
43         opacity: 0.8;
44 }
45
46 #body a:hover {
47         opacity: .5;
48 }
49
50 /* tables still need 'cellspacing="0"' in the markup */
51 table {
52         border-collapse: separate;
53         border-spacing: 0;
54 }
55
56 caption, th, td {
57         text-align: left;
58         font-weight: normal;
59 }
60
61 blockquote:before, blockquote:after,
62 q:before, q:after {
63         content: "";
64 }
65
66 blockquote, q {
67         quotes: "" "";
68 }
69
70 strong, h2, h3 {
71     font-weight: bold;
72 }
73
74 h2, h3 {
75         text-transform: uppercase;
76     margin-bottom: 0.5em !important;
77 }
78
79 #page-wrapper {
80         width: 960px;
81         margin: 0 auto 0 auto;
82 }
83
84 .clear-div {
85         clear: both;
86 }
87
88
89 /* footer */
90
91 #footer {
92         font-size: 11px;
93         font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
94         margin-top: 40px;
95         text-align: center;
96 }
97
98 #footer a {
99         text-decoration: none;
100         color: #dc0d13;
101 }
102
103 #footer a:hover {
104         text-decoration: underline;
105 }

Benjamin Mako Hill || Want to submit a patch?