-
Notifications
You must be signed in to change notification settings - Fork 1
/
form-style.css
87 lines (72 loc) · 950 Bytes
/
form-style.css
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
font: 16px/17px Arial;
color: #444;
}
input, select, button {
font: 16px Arial;
}
form {
width: 450px;
float: left;
}
fieldset {
padding: 0 0 5px 0;
margin: 5px;
border-color: #999;
}
fieldset p {
margin: 4px 5px;
}
legend {
background-color: #ccc;
padding: 4px;
margin: 0 5px;
}
label {
display: block;
width: 200px;
float: left;
clear: left;
text-align: right;
padding: 0 5px;
line-height: 28px;
}
.group label,
.inline label {
display: inline;
float: none;
}
.error {
width: 100%;
text-align: left;
color: #c00;
margin: 0 0 5px 0;
}
fieldset div {
padding: 5px;
}
fieldset.group div {
padding: 2px;
}
fieldset .highlight {
background: #FFEFD5;
}
label.inline,
.group label {
display: inline;
}
label .required {
color: #c00;
font-weight: bold;
}
.form_nav {
background-color: #ddd;
padding: 4px;
text-align: center;
margin: 4px;
}
#logmsg {
width: 500px;
float: left;
font-size: 13px;
}