-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (48 loc) · 997 Bytes
/
styles.css
File metadata and controls
64 lines (48 loc) · 997 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
52
53
54
55
56
57
58
59
60
61
62
63
64
body {
font-family: 'Chakra Petch';
background-color: #444d9f;
}
h1 {
font-weight: bold;
font-size: 54px;
text-align: center;
color: white;
margin: 2%;
}
table {
border-collapse:separate;
border: 2px solid #291954;
text-align: center;
vertical-align: middle;
width: 100%;
border-radius: 4px;
border-spacing: 0px;
}
th, td {
border: 2px solid #291954;
padding: 10px;
padding-top: 15px;
padding-bottom: 15px;
color: #ffca05;
border-left: 2px solid #291954;
}
td {
border-top: 2px solid #291954;
}
thead th {
width: 25%;
}
tbody tr:nth-child(odd) {
background-color: #291954;
font-size: xx-large;
}
tbody tr:nth-child(even) {
background-color: #444d9f;
font-size: large;
}
thead:first-child tr:first-child th:first-child, tbody:first-child tr:first-child td:first-child {
border-radius: 4px 0 0 0;
}
thead:last-child tr:last-child th:first-child, tbody:last-child tr:last-child td:first-child {
border-radius: 0 0 0 4px;
}