blob: 805975fa1802551403b46d882e555bd1f6ade93a (
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
33
34
35
|
/**
* Stylesheet of the Netflix Stats Generator
* @author Marvin Borner
* @copyright Marvin Borner 2019
*/
html, body {
padding: 8px;
font-family: "Varela Round", sans-serif !important;
text-rendering: optimizeLegibility !important;
}
.loading, .stats {
display: none;
}
.stats {
text-align: center;
}
.stats > div {
padding: 8px;
margin-top: 8px;
border: 1px solid black;
}
.heatMap {
border-collapse: collapse;
}
.heatMap td {
width: 2vw;
height: 2vw;
border: 1px solid black;
}
|