-
Notifications
You must be signed in to change notification settings - Fork 0
/
form3.css
54 lines (46 loc) · 825 Bytes
/
form3.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
.one{
border-radius: 5px;
box-sizing: border-box;
background-color: #f2f2f2;
padding:30px;
padding-right:10px;
padding-left: 60px;
width:1000px;
float:right;
margin-right:45px;
margin-top:0px;
margin-bottom:50px;
font-family:Arial;
}
.column {
float: left;
width: 33%;
}
.row:after {
content: "";
display: table;
clear: both;
}
input[type=text],input[type=number],input[type=date],select {
width: 30%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit]{
background-color: #0077b3;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
display:inline-block;
margin-top:20px;
}
input[type=submit]:hover {
background-color: #0088cc;
}