]> Dogcows Code - chaz/chatty/blob - root/static/css/common.css
better client-side form validation; layout tweaks
[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 label {
26 width: 150px;
27 float: left;
28 }
29
30
31 .left {
32 float: left;
33 margin: 0 5px 5px 0;
34 }
35
36 .right {
37 float: right;
38 margin: 0 0 5px 5px;
39 }
40
41
42 #outer {
43 margin: 0 auto 0 auto;
44 width: 720px;
45 border: 2px solid black;
46 background: #99c;
47 }
48
49 #inner {
50 margin: 5px;
51 padding: 10px;
52 border: 2px solid black;
53 border-radius: 5px;
54 background: white;
55 }
56
57 #inner h1 {
58 font-size: 1.3em;
59 }
60
61 #inner h2 {
62 font-size: 1.2em;
63 }
64
65 #footer {
66 padding: 10px 0 0 0;
67 height: 31px;
68 line-height: 31px;
69 font-size: 0.8em;
70 }
71
72 #error {
73 line-height: 24px;
74 margin: 5px;
75 padding: 10px 0 10px 44px;
76 border: 2px solid black;
77 background: white url('../img/warning.png') 10px 50% no-repeat;
78 display: none;
79 cursor: pointer;
80 color: red;
81 font-weight: bold;
82 }
83
84 #message {
85 line-height: 24px;
86 margin: 5px;
87 padding: 10px 0 10px 44px;
88 border: 2px solid black;
89 background: white url('../img/info.png') 10px 50% no-repeat;
90 display: none;
91 cursor: pointer;
92 }
93
94 /* error message */
95 .error {
96 background: #c66;
97 }
98
99 form div {
100 height: 32px;
101 line-height: 32px;
102 }
103
This page took 0.034283 seconds and 4 git commands to generate.