blob: 27cd8b802429b3f16314c17f0d69cc66aa50ddde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
@CHARSET "UTF-8";
u {
text-decoration: underline;
}
form {
width: 450px;
background-color: #ccc;
border: 1px dotted #333;
padding: 5px;
margin: 0px auto;
}
form h1 {
text-align: center;
}
div.row {
clear: both;
padding-top: 5px;
}
div.row label {
float: left;
width: 200px;
text-align: right;
}
div.row .formw {
float: right;
width: 235px;
text-align: left;
}
div.spacer {
clear: both;
}
|