-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.css
More file actions
48 lines (39 loc) · 693 Bytes
/
Form.css
File metadata and controls
48 lines (39 loc) · 693 Bytes
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
h1{
color:red;
background-color:yellow;
}
body{
background-color: beige;
}
input[type=text]{
width: 15%;
padding: 12px 20px;
margin: 8px 0px;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type=date]{
width: 15%;
padding: 12px 20px;
margin: 8px 0;
display:inline-block;
border: 1px solid #ccc;
border-radius: 4px;
}
.ckbox,input[type=checkbox]{
display:inline-block;
border-radius: 4px;
}
.button{
width: 15%;
padding: 12px 20px;
margin: 8px 0;
display:inline-block;
border: 1px solid #ccc;
border-radius: 4px;
}
.button:hover{
display:inline-block;
background-color: cornflowerblue;
}