-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
106 lines (91 loc) · 1.58 KB
/
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.iframe-container {
overflow: hidden;
padding-top: 56.25%;
position: relative;
}
iframe {
border: none;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
nav#menu {
position: sticky;
margin: 0;
padding: 0;
top: 0;
left: 0;
width: 100%;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 18pt;
}
#menu ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #30336b;
}
#menu li {
float: left;
}
#menu a {
display: block;
color: white;
text-align: center;
padding: 20px 24px;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s;
}
#menu a:hover {
background-color: #130f40;
}
#data {
position: relative;
top: 0;
left: 0;
color: white;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 20pt;
}
#data table {
width: 100%;
border: none;
padding: 0;
margin: 0;
}
#data thead {
display:flex;
width: 100%;
background: #000;
padding: 18px 0;
}
#data tr:nth-child(even) {
background-color: #95afc0;
display: flex;
width: 100%;
padding: 18px 0;
}
#data tr:nth-child(odd) {
background-color: #535c68;
display: flex;
width: 100%;
padding: 18px 0;
}
#data td, #data th {
flex: 1 1 20%;
text-align:center;
}
#data td {
height: 100%;
}
#data td.fulfill {
cursor: pointer;
transition: color 0.2s;
}
#data td.fulfill:hover {
color: black;
}