-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (64 loc) · 1015 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
html,
body {
padding: 0;
margin: 0;
font-family: sans-serif;
color: #212121;
}
header {
margin-top: 0;
margin-bottom: 64px;
background-color: #135aa0;
color: #fff;
padding: 42px;
font-size: 1.5rem;
}
footer {
margin-top: 42px;
background-color: #135aa0;
color: #fff;
padding: 24px;
font-size: 1rem;
}
footer a {
color: #fff;
text-decoration: underline;
}
.container {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
}
table {
text-align: center;
border-collapse: collapse;
margin-bottom: 75px;
}
td {
border: 1px solid #212121;
padding: 16px;
}
tr:nth-child(odd) {
background-color: #eaeaea;
}
tr:hover {
background-color: #dadada;
}
.table-left {
text-align: left;
}
tr:nth-child(1) {
background-color: #212121;
color: #fff;
font-weight: bold;
padding: 32px;
}
tr:nth-child(1) > td:nth-child(1) {
border: none;
background-color: #fff;
color: #212121;
}
tr > td:nth-child(1) {
width: 350px;
}