9bc6264e406780788ecaf6f262ae275aad6f2dca
[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
32 #body {
33         font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
34         color: white;
35         font-size: 12px;
36         text-align: left;
37         line-height: 1.5em;
38 }
39
40 #body a {
41         text-decoration: underline;
42         color: inherit;
43         display: inline;
44         opacity: 0.8;
45 }
46
47 #body a:hover {
48         opacity: .5;
49 }
50
51 strong, h2, h3 {
52     font-weight: bold;
53 }
54
55 h2, h3 {
56         text-transform: uppercase;
57     margin-bottom: 0.5em !important;
58 }
59
60
61 /* footer */
62
63 #footer {
64         font-size: 11px;
65         font-family: "Trebuchet MS", Trebuchet, Verdana, Arial, Helvetica, sans-serif;
66         margin-top: 40px;
67         text-align: center;
68 }
69
70 #footer a {
71         text-decoration: none;
72         color: #dc0d13;
73 }
74
75 #footer a:hover {
76         text-decoration: underline;
77 }

Benjamin Mako Hill || Want to submit a patch?