-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (65 loc) · 1003 Bytes
/
styles.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
:root {
--text: #f0dddd;
--background: #000000;
--primary: #5f0d18;
--secondary: #851c1c;
--accent: #df2828;
}
body {
background-color: var(--background);
color: var(--text);
margin: 0px;
overflow-x: hidden;
}
#content {
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
margin-top: 5%;
}
#message {
text-align: center;
}
#footer {
position: absolute;
bottom: 0;
z-index: -1;
}
#playlists {
gap: 2%;
}
.center {
display: flex;
align-items: center;.icon {
width: 30px;
}
justify-content: center;
}
.imageFill {
object-fit: scale-down;
width: 100%;
height: auto;
}
em {
font-weight: bold;
}
.icon {
width: 30px;
}
.playlistLink {
text-decoration: none;
}
.playlistButton {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
border: none;
border-radius: 10px;
cursor: pointer;
background-color: var(--primary);
color: var(--text);
font-weight: bold;
}