-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
100 lines (82 loc) · 1.27 KB
/
site.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
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
body {
background-color: #2B2D30;
color: white;
}
h1 a {
color: white;
display: inline-block;
text-decoration: none;
}
::selection {
background: white; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: white; /* Gecko Browsers */
}
* {
font-family: "Source Code Pro";
}
a.resident {
background-color: black;
color: #ff0;
}
a.spotify {
background-color: black;
color: #1DB954;
}
p {
padding: 40px 0;
}
span.resident {
color: #ff0;
background-color: black;
}
span.spotify {
color: #1DB954;
background-color: black;
}
.last-updated {
font-size: 13px;
color: #DEDFE5;
}
.last-song {
padding-top: 30px;
text-align:center;
}
#spotify-last-find-time {
font-style: italic;
}
svg.fa-chart-line {
position: relative;
top: 4px;
width: 18px;
}
.site {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.site-content {
padding-top: 100px;
padding-bottom: 40px;
max-width: 1200px;
flex: 1;
width: 70%;
margin: 0 auto;
}
.footer {
width: 70%;
margin: 0 auto;
text-align: center;
height: 60px;
}
.footer-box {
display: inline;
vertical-align: middle;
}
.footer a {
color: white;
font-size: 12px;
text-decoration: none;
}