-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_css.css
More file actions
109 lines (96 loc) · 1.97 KB
/
form_css.css
File metadata and controls
109 lines (96 loc) · 1.97 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
div.webFormContainer {
background: #fff url('/img/table_bg.gif') top left repeat-y;
padding: 10px 30px;
}
div.webFormInput {
color: #369;
font-family: Arial, Tahoma, sans-serif;
margin: 12px 0px;
text-align: right;
}
#webFormHeader {
font-family: Arial, Tahoma, sans-serif;
margin: 0px;
padding: 6px;
color: #000;
font-size: 12px;
width: 100%;
}
.requiredLabel {
display: inline;
color: #c00;
margin-left: 2px;
}
label.webForm {
color: #333;
font-family: Arial, Tahoma, sans-serif;
font-size: 12px;
font-weight: bold;
text-align: left;
}
input.webForm {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
float: right;
}
.errors ul {
font-family: Arial, Tahoma, sans-serif;
list-style: none;
}
.errors li {
font-size: 12px;
color: #c00;
}
input[type=submit],
input[type=button],
input[type=reset] {
padding: 0px 10px 2px 10px;
font-size: 13px;
font-family: Arial, Tahoma, sans-serif;
text-transform: uppercase;
border-top: 0px solid #ccc;
border-right: 0px solid #aaa;
border-bottom: 0px solid #aaa;
border-left: 0px solid #ccc;
height: 40px;
width:150px;
color: #444;
font-weight: bold;
margin: 0px 12px 2px 0px;
background: #eee ;
overflow: visible;
border-radius: 4px;
}
input[type=submit]:hover{
background: #ccc ;
}
table tr {
vertical-align: middle;
text-align: left;
padding: 5px;
}
table tr td {
padding: 4px;
text-align: left;
font-size: 12px;
/* width: 200px; */
}
table tr th {
padding: 4px;
text-align: left;
font-size: 12px;
}