-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (48 loc) · 842 Bytes
/
style.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
55
56
#nav a:hover {
background-color: darkred;
}
a.active {
background-color: white;
color: black;
}
nav a {
text-decoration: none;
color: white;
padding: 10px;
padding-bottom: 0px;
border-radius: 5px;
width:inherit;
}
input[type="text"],
input[type="number"],
input[type="tel"] {
border: 0;
background-color: #edf2f7;
border-bottom: 3px solid #F59494;
}
input[type="button"],
input[type="submit"] {
background-color: #F59494;
border: 0;
font-weight: bold;
}
form {
background-color: white;
align-items: center;
padding: 10px;
text-align: center;
}
th {
background-color: #F59494;
border: 0;
}
tr {
background-color: white;
text-align: center;
}
td:nth-child(even) {
background-color: #edf2f7;
}
tr:hover td{
background-color: #D3D9E0;
}