cleaned up code and integrated some simple CSS
[rapidsms] / static / style.css
1 h1, h2, h3 {
2     border-bottom: 3px #000080 solid;
3     width: 66%;
4 }
5
6 #errormsg {
7     width: 20em;
8     border: 2px red solid;
9 }
10
11 #errormsg h3 {
12     margin: 0;
13     padding: 0.3em 0 0.3em 0;
14     background: red;
15     color: white;
16     text-align: center;
17     border: 0 0 0 0;
18 }
19
20 table, td, th {
21     border: 1px #000080 solid;
22     border-collapse: collapse;
23     border-spacing: 0px;
24 }
25
26 td, th {
27     padding: 0.2em;
28     text-alignt: left;
29 }
30
31 th {
32     background: #000080;
33     color: white;
34     text-align: center;
35     font-weight: bold;
36 }
37
38 #footer {
39     clear: both;
40     margin-top: 7em;
41     text-align: center;
42     font-size: 70%;
43 }
44

Benjamin Mako Hill || Want to submit a patch?