-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (108 loc) · 1.95 KB
/
style.css
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
115
116
html {
position: relative;
min-height: 100%;
}
body {
font-family: Roboto, Calibri, Arial, sans-serif;
font-weight: 300;
padding: 0;
margin: 0;
background: #f3f3f3;
color: #333333;
margin-bottom: 60px; /* Margin bottom by footer height */
}
h1 {
font-family: "Varela Round", Calibri, Arial, sans-serif;
color: #FFA69E;
}
h1 > span {
color: #84DCC6;
}
#progress-update {
margin-bottom: 15px;
}
#minutes-listened-card .card-title {
margin-bottom: 0;
}
.card {
background: none;
}
.display-1 {
font-family: Roboto, Calibri, Arial, sans-serif;
text-shadow: 5px 5px #84ded3;
font-weight: 700;
margin-bottom: 0;
line-height: 1.0;
margin-right: 1rem;
display: inline-block;
}
.card-title {
color: #666666;
}
.display-4 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0;
line-height: 1.0;
display: inline-block;
color: #FFA69E;
}
.text-muted {
color: #d5d5d5 !important;
}
.top-list {
counter-reset: list-counter;
}
.list-item {
font-size: 2rem;
font-weight: 700;
clear: both;
}
.list-item:before {
content: counter(list-counter, decimal-leading-zero) ". ";
counter-increment: list-counter;
color: #FFA69E;
font-weight: 300;
}
.list-item > span {
font-size: 2rem;
color: #84DCC6;
float: right;
}
#header {
margin-bottom: 15px;
padding-top: 15px;
}
#header h1 {
font-size: 4rem;
display: inline-block;
margin-bottom: -0.4rem;
}
#header div {
display: inline-block;
font-size: 2rem;
font-family: "Varela Round";
color: #666666;
}
.footer {
font-family: "Varela Round", Calibri, Arial, sans-serif;
position: absolute;
bottom: 0;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
line-height: 60px; /* Vertically center the text there */
}
.footer .container {
padding: 0;
text-align: right;
}
.footer a {
color: #84DCC6;
font-size: 1rem;
padding: 0 0.5rem;
transition: transform 0.25s ease-out;
display: inline-block;
}
.footer a:hover {
transform: translate(0, -0.5rem);
}