blob: 2973aabc2eae2c535b610b729cbd24d18afea1ad (
plain)
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
|
@import "dark.css";
@font-face {
font-family: "Nunito";
src: url("/fonts/Nunito-VariableFont_wght.ttf");
font-weight: 125 950;
font-stretch: 75% 125%;
font-style: normal;
}
@font-face {
font-family: "Nunito";
src: url("/fonts/Nunito-Italic-VariableFont_wght.ttf");
font-weight: 125 950;
font-stretch: 75% 125%;
font-style: italic;
}
* {
font-family: "Nunito", sans-serif !important;
}
body, html {
margin: 0;
overflow-x: hidden;
height: 100%;
}
center {
display: block;
text-align: center;
}
.list-group-item.d-flex.justify-content-between.align-items-center {
flex-wrap: wrap;
}
.big-head {
font-size: 64px;
}
big {
font-size: 64px;
vertical-align: middle;
}
nav.navbar.navbar-expand-sm.bg-dark.navbar-dark {
background-color: #333 !important;
}
|