-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
185 lines (159 loc) · 3.91 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* Adjust values from Cosmo https://bootswatch.com/4/cosmo/bootstrap.css */
/* In CSS, comments look like this */
/* You can even make them over
multiple lines! */
/* We want to use our purple color in the navbar */
.navbar {
background-color: #65427D;
border-color: #65427D
}
/* Change font size for improved readability */
/* Whole document: */
body{
font-family: Helvetica;
font-size: 14pt;
}
/* Headers */
h1,h2,h3,h4,h5,h6{
font-size: 18pt;
}
/* Change default colors from the Bootstrap for improved accessibility */
/* unvisited link */
a:link {
color: #0033FF;
}
.page-link {
position: relative;
display: block;
padding: 0.5rem 0.75rem;
margin-left: -1px;
line-height: 1.25;
color: #0033FF;
background-color: #fff;
border: 1px solid #dee2e6;
}
.list-group-item.active {
z-index: 2;
color: #fff;
background-color: #65427D;
border-color: #65427D;
}
.btn-primary {
color: #fff;
background-color: #65427D;
border-color: #65427D;
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #65427D;
border-color: #65427D;
}
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #65427D;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: #fff;
background-color: #65427D;
}
div.footer a:link, fab:link { color: #65427D;}
/* Below this comment are dark mode settings!
Enable dark mode if it's the browser preference. */
@media (prefers-color-scheme: dark) {
a:link {
color: #CA9BE9;
}
div.footer a:link { color: #CA9BE9;}
div.footer a:visted { color: #CA9BE9;}
div.footer a:hover { color: #fff;}
div.footer a:tab { color: #fff;}
div.footer a:focus { color: #fff;}
/* Force Twitter because it's pulling the blue */
fab-twitter { color: #CA9BE9;}
body {
background-color: #1F222A;
color: white;
}
.list-group-item.active, .list-group-item.active:hover,
.list-group-item.active:focus {
background-color: #CA9BE9;
color: #1F222A;
}
.btn-primary {
color: #fff;
background-color: #240C34;
border-color: #240C34;
}
.btn-primary.disabled, .btn-primary:disabled {
color: #fff;
background-color: #240C34;
border-color: #240C34;
}
.dropdown-item.active, .dropdown-item:active {
color: #fff;
text-decoration: none;
background-color: #240C34;
}
.dropdown-menu {
background-color: #1F222A;
color: #fff;
}
.dropdown-menu>li>a {
color: white;
}
.nav-pills .nav-link.active {
color: #fff;
background-color: #240C34;
}
.nav-pills .show > .nav-link {
color: #fff;
background-color: black;
}
.tocify-item {
color: #fff;
background-color: #1F222A;
}
.list-group-item-action:hover, .list-group-item-action:focus {
color: #fff;
background-color: #1F222A;
}
.list-group-item.active:active, .list-group-item.active:hover, .list-group-item.active:focus {
color: #1F222A;
background-color: white;
}
/* Start data tables */
div.datatables {
color: white;
background-color: #1F222A;
}
.dataTables_wrapper {
color: white;
background-color: #1F222A;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
color: white !important;
}
div.dtsb-group {
color: black;
}
table.dataTable.row-border tbody tr:first-child th, table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, table.dataTable.display tbody tr:first-child td {
background-color: #211F29;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
background-color: #211F29;
}
.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
color: white;
}
label {
color: white;
}
input{
color: black;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
color: white !important;
}
}