]> Dogcows Code - chaz/chatty/blob - root/static/css/common.css
implemented session tracking and authentication
[chaz/chatty] / root / static / css / common.css
1
2 body {
3 font: 100 14px Verdana, Helvetica, Arial;
4 margin: 10px;
5 background: #ccf;
6 }
7
8 img {
9 border: 0;
10 }
11
12 hr {
13 border: 0;
14 border-bottom: 1px solid gray;
15 }
16
17 a {
18 text-decoration: none;
19 }
20
21 a:hover {
22 border-bottom: 1px dotted blue;
23 }
24
25
26 .left {
27 float: left;
28 margin: 0 5px 5px 0;
29 }
30
31 .right {
32 float: right;
33 margin: 0 0 5px 5px;
34 }
35
36
37 #outer {
38 margin: 0 auto 0 auto;
39 width: 640px;
40 border: 2px solid black;
41 background: #99c;
42 }
43
44 #inner {
45 margin: 5px;
46 padding: 10px;
47 border: 2px solid black;
48 background: white;
49 }
50
51 #inner h1 {
52 font-size: 1.3em;
53 }
54
55 #footer {
56 padding: 0;
57 height: 31px;
58 line-height: 31px;
59 font-size: 0.8em;
60 }
61
62 #error {
63 margin: 5px;
64 padding: 10px;
65 border: 2px solid black;
66 background: white;
67 color: red;
68 font-weight: bold;
69 }
70
71 #message {
72 margin: 5px;
73 padding: 10px;
74 border: 2px solid black;
75 background: white;
76 }
77
This page took 0.033929 seconds and 4 git commands to generate.