This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (91 loc) · 1.57 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
html {
background-color: #fff;
}
body h1,h2,h3,p {
padding: 0;
margin: 0;
}
h1,h2,h3 {
color: #343434;
}
.content {
position: relative;
padding: 1em;
z-index: 100;
}
.season-btn.current {
font-weight: 600;
}
.season-btn.current::before {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f84a";
margin-right: 0.5rem;
}
/*
Fix for all rows not showing
https://datatables.net/forums/discussion/comment/85793/#Comment_85793
*/
.dataTables_scrollBody {
min-height: 80vh;
}
.hidden {
display: none;
}
/* Hides labels of non-highlighted charts */
.dygraph-legend > span {
display: none;
}
.dygraph-legend > span.highlight {
display: inline;
}
/* Aligns Search box on the left */
#stands_filter {
text-align: left;
}
#stands_filter input {
width: 100%;
}
#loader-background {
z-index: 500;
background-color: rgba(0, 0, 0, 0.14);
position: absolute;
top: 0;
height: 27.5vh;
width: calc(100% - 1rem);
}
#loader-spinner {
margin-top: 5vh;
}
#alert-box {
z-index: 9999;
position: fixed;
bottom: 1rem;
left: 1rem;
}
.modal img {
width: 100%;
}
.graph-time-buttons {
position: absolute;
top: 2px;
left: 3.6rem;
z-index: 50;
font-size: smaller;
}
.graph-time-buttons button {
background-color: #fefefe;
}
.graph-time-buttons button:focus {
outline: none;
box-shadow: none;
}
#slider-label {
position: absolute;
text-align: center;
top: 1rem;
left: 0;
width: 100%;
font-size: x-large;
color: #ababab;
}