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
145
146
147
|
html {
scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
}
a:focus {
outline: none;
}
.card {
margin: 4rem auto;
}
.card-header {
padding: 2rem 0;
}
.card-body {
padding: 2rem;
}
.graphCard {
display: none;
}
#resultsTableHeading, #infoTableHeading {
display: none;
margin-top: 4rem;
}
.table {
display: none;
}
.card,
.btn,
.form-control {
border-radius: 0;
}
@media(prefers-color-scheme: dark) {
body {
background: #161616;
color: #ccc;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: white;
}
.navbar-light .navbar-brand {
color: white;
}
.navbar-light .navbar-brand:hover {
color: white;
text-decoration: underline;
}
.border-bottom {
border-color: #5b5b5b !important;
}
.card {
border-color: #7b7b7b;
}
.card-header {
background-color: #202020;
border-color: #7b7b7b;
}
.card-body {
background-color: #202020;
}
.card-body label {
color: white;
}
.card-body .form-control {
background: #3b3b3b;
border-color: #5b5b5b;
color: white;
}
.card-body .form-control:focus {
color: white;
background-color: #5b5b5b;
border-color: #00ff00;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.25);
}
.btn-outline-primary {
color: #00ff00;
border-color: #00ff00
}
.btn-outline-primary:hover {
color: #fff;
background-color: #00ff00;
border-color: #00ff00
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.5)
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
color: #00ff00;
background-color: transparent
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
color: #fff;
background-color: #00ff00;
border-color: #00ff00
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.5)
}
td,
th {
border-color: #7b7b7b !important;
}
th {
background-color: #202020;
color: white;
}
td {
color: #ddd;
}
}
|