blob: afb61a12b152603a53cb0572d83a7c4e001aab1a (
plain) (
blame)
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
|
/**
* Stylesheet of the Netflix Stats Generator
* @author Marvin Borner
* @copyright Marvin Borner 2019
*/
html,
body {
padding: 8px;
color: #fff;
background-color: #141414;
font-family: "Varela Round", sans-serif !important;
text-rendering: optimizeLegibility !important;
}
.loading,
.stats,
.input {
display: none;
}
.stats {
text-align: center;
}
.stats > div {
padding: 8px;
margin-top: 8px;
border: 1px solid white;
max-width: 800px;
margin: 8px auto;
}
|