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
|
/**
* Design of the Netflix Stats Generator
* @author Marvin Borner
* @copyright Marvin Borner 2018
//// General
$BlueColor: #1e3264
html, body
width: 100vw !important
background-color: #141518
font-family: "Varela Round", sans-serif !important
text-rendering: optimizeLegibility !important
color: #bbb
box-sizing: border-box !important
overflow-x: hidden
.Main
// display: none
min-height: 100vh
.row:not(.MostWatchedOverview) div
border: .5px solid #25272a
//// Charts
.MostWatchedOverview
.Description
margin: 20px
.MostWatchedPoster
height: 50%
/// Heatmap
.HeatmapWrap
max-width: 100vw !important
text.month-name,
text.calendar-heatmap-legend-text,
text.day-initial
fill: #bbb
font-size: 10px
font-family: Helvetica, arial, 'Open Sans', sans-serif
rect.day-cell:hover
stroke: #555555
stroke-width: 1px
.day-cell-tooltip
position: absolute
z-index: 9999
padding: 5px 9px
color: #bbbbbb
font-size: 12px
background: rgba(0, 0, 0, 0.85)
border-radius: 3px
text-align: center
.day-cell-tooltip>span
font-family: Helvetica, arial, 'Open Sans', sans-serif
.calendar-heatmap
overflow: visible
box-sizing: initial
|