-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
154 lines (119 loc) · 2.33 KB
/
style.css
File metadata and controls
154 lines (119 loc) · 2.33 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
*{
box-sizing: border-box;
outline: none;
}
body{
margin: 0;
padding:0;
font-family: Arial, Helvetica, sans-serif;
}
h1{
padding: 10px 20px;
background: #000;
color: gray;
margin-top: 0;
text-align: center;
}
.container{
padding: 0 20px;
}
.formContainer{
width:60%;
float: left;
/* border: 1px solid #000; */
}
.form_control{
margin-bottom: 20px;
}
.formContainer label{
width: 15%;
font-size: 13px;
font-weight: bold;
display: inline-block;
}
.formContainer input{
outline: none;
}
.formContainer select,
.formContainer input[type=email],
.formContainer input[type=date],
.formContainer input[type=text] {
width: 80%;
padding: 10px;
}
.formContainer input[type=date]{
font-family: Arial, Helvetica, sans-serif;
}
.formContainer small{
width: 70%;
margin-left: 123px;
margin-top: 5px;
display: block ;
visibility: hidden;
}
.formContainer textarea {
vertical-align: top;
width: 80%;
padding: 10px;
}
.formContainer #button{
width: 80%;
padding: 5px;
font-size: 17px;
color: #fff;
background-color: crimson;
border: 1px solid crimson;
border-radius:5px ;
}
.form_control.error input{
border: 2px solid #B22222;
}
.form_control.error small{
color: #B22222;
visibility: visible;
}
.form_control.error select,
.form_control.error textarea{
border: 2px solid #B22222;
}
.form_control.success input{
border:2px solid #42ba96;
}
.form_control.success small{
color: #42ba96;
visibility: visible;
}
.form_control.success select,
.form_control.success textarea{
border: 2px solid #42ba96;
}
.formData{
width: 40%;
float: left;
}
.formData ul{
list-style: none;
float: left;
width: 100%;
font-size: 14px;
border-radius: 5px;
overflow: hidden;
padding: 0;
}
.formData ul li{
padding: 10px;
border: 1px solid gray;
font-weight: bold;
}
.formData ul li span{
font-weight: normal;
}
.formData ul #firstSpan{
width: 100%;
display: block;
padding: 10px;
border:1px solid gray;
background-color: #F1F1F1;
font-weight: bold;
font-size: 16px;
}