-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
144 lines (120 loc) · 2.61 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* GENERAL STYLING */
body {
margin: 30px;
background-color: #121212; /* #0e0e10 */
color: #efeff1;
font-family: 'Source Sans Pro', sans-serif;
}
/* TOP PANEL */
#panel-top {
background-color: #121212;
padding: 1.2em;
font-size: 1em;
text-align: center;
margin: auto;
margin-bottom:20px;
min-width: 300px;
max-width: 850px;
border-radius: 5px 5px 5px 5px;
}
h2 {
font-family: 'Source Sans Pro', sans-serif;
color: #efeff1;
}
/* TABLE */
.content-table {
font-family: 'Source Sans Pro', sans-serif;
font-size: 0.85em;
margin: auto;
position: absolute center;
min-width: 375px;
max-width: 1500px;
border-radius: 5px 5px 5px 5px;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
white-space: pre-wrap;
}
/* TABLE CAPTION */
.content-table caption {
text-align: left;
font-size: 1.2em;
padding: 0.9em 0em;
color: #efeff1;
}
/* TABLE HEADER */
.content-table th {
background-color: #202225;
color: #efeff1;
text-align: left;
font-weight: bold;
}
th {
text-align: left;
border-bottom: 4px solid black;
position: sticky; /*cannot get sticky header to work */
top: 0; /* required for stickiness */
}
th, td {
padding: 1.2em;
text-align: left;
min-width: 50px;
max-width: 150px;
border: none;
}
/* TABLE BODY */
.content-table tbody {
background-color: #2F3136;
color: #8E9297;
vertical-align: baseline;
}
table {
margin-left: auto;
margin-right: auto;
}
table, td {
text-align: left;
border-bottom: 2px solid #202225;
border-collapse: collapse;
}
/* TABLE HOVER */
tr:hover {
background-color: #202225;
transform: scale(1.01);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
/* BOTTOM PANEL */
#panel-bottom {
background-color: #121212;
padding: 20px 0;
font-size: 0.9em;
text-align: center;
border-radius: 5px 5px 5px 5px;
margin: auto;
margin-top:50px;
min-width: 300px;
max-width: 1000px;
}
a:link, a:visited {
color: white;
font-size: 0.9em;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
color: #a9a9a9;
}
/* FOOTER */
.footer {
padding: 20px 0;
background-color:#121212;
margin: auto;
margin-top: 20px;
margin-bottom:20px;
min-width: 300px;
max-width: 450px;
text-align: center;
font-size: 0.8em;
color:#a9a9a9;
}