forked from sriram1998/Ecell-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
54 lines (52 loc) · 1.03 KB
/
form.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
.center {
text-align: center;
}
.ecellSignup {
background-color: #587272;
color: white;
display: inline-block;
text-align: left;
padding: 80px;
margin: 10px 10px;
border: 1px solid #ccc;
}
.ecellInput {
width: 100%;
padding: 20px 20px;
margin: 10px 10px;
display: inline-block;
border-bottom: 2px solid #4CAF50;
box-sizing: border-box;
}
input[type=text], input[type=email], input[type=date], input[type=radio] {
background-color: #000;
color: #e0ffff;
border:none;
border-bottom:2px solid green;
margin:10px 10px;
border-radius: 4px;
padding:12px 12px;
display: table-cell;
}
.submitBtn {
background-color: #64D5A4;
color: white;
}
.submitBtn:hover {
background-color: #28875E;
color: white;
}
select {
width: 100%;
background-color: #000;
color: #ff0;
border:none;
margin:10px 10px;
border-bottom:2px solid green;
border-radius: 4px;
padding:12px 12px;
display: table-cell;
}
select:hover {
color:#00ff7f
}