-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (44 loc) · 716 Bytes
/
style.css
File metadata and controls
51 lines (44 loc) · 716 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
49
50
51
.clickButton {
border: #006BB0; /* Blueish */
color: black;
padding: 12px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 4px;
transition-duration: 0.4s;
}
.clickButton:hover {
background-color: #006BB0;
color: white;
}
input[type=text] {
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
input[type=date] {
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
input[type=email] {
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
h3{
font-size: 28px;
}
h4{
font-size: 24px;
}
h5{
font-size: 20px;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px 10px;
}