aboutsummaryrefslogtreecommitdiff
path: root/assets/css/main.sass
blob: aa10dd89f6c79d79d69f98c43c42c23af1b4ee35 (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
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
/**
 * Design of the Netflix Stats Generator
 * @author Marvin Borner
 * @copyright Marvin Borner 2018

// General
$BlueColor: #1e3264

body
    font-family: "Varela Round", sans-serif !important
    text-rendering: optimizeLegibility !important
    box-sizing: border-box !important

.Main
    // display: none
    min-height: 100vh

// General headers
.SectionHeader
    display: flex
    justify-content: center
    align-items: center
    align-content: space-between
    width: 100%

.SectionHeader h1
    text-transform: capitalize

// Gradients
.GradientBackground
    %Gradient
        position: fixed
        top: 0
        left: 0
        z-index: -1
        transition: opacity 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s
        width: 100%
        height: 100vh

    .Color:not(.Active)
        display: none

    .GreenBlue
        background: linear-gradient(145deg, #c3f0c8, #509bf5)

        @extend %Gradient

    .OrangePink
        background: linear-gradient(145deg, #ffc867, #f037a6)

        @extend %Gradient

    .GreenBlue
        background: linear-gradient(145deg, #c3f0c8, #509bf5)

        @extend %Gradient

// Favorites
.FavoritesSection
    .SectionHeader
        height: 40vh
        color: $BlueColor

    .MostWatchedOverview
        padding: 10vw

        .OverviewText
            position: relative
            float: left
            max-width: 50%

        .MostWatchedPoster
            position: relative
            float: right
            max-width: 50%
            margin-bottom: 20px

// Charts
canvas#MostWatchedChart
    opacity: 0


// Heatmap
text.month-name,
text.calendar-heatmap-legend-text,
text.day-initial 
    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