-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (60 loc) · 1.05 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
body {
font-family: 'Merriweather', serif;
color: white;
background: radial-gradient(ellipse at center, #000000 44%, #222222 100%);
background-size: cover;
background-position: center center;
}
#play, #pause, #next, #previous, #shuffle {
font-size: 50px;
margin-right: 15px;
}
#playlist-container {
position: absolute;
right: 60px;
top: 20px;
}
#cover {
margin: 0 auto;
display: block;
width: 200px;
}
#notes {
z-index: -1;
position: absolute;
bottom: 20px;
right: 10px;
display: block;
width: 100%;
margin-right: 10px;
margin: 0 auto;
text-align: right;
font-size: 10px;
}
#controls {
/*border: 5px solid black;*/
padding: 10px;
text-align: center;
/*background-color: black;*/
color: white;
position: fixed;
bottom: 0px;
margin: 0 auto;
width: 100%;
}
#playlist li {
width: fit-content;
margin-top: 5px;
}
#playlist-container {
position: absolute;
color: white;
padding: 0px 20px 20px 20px;
width: 20%;
right: 20px;
height: 100%;
transition: .4s;
}
#info {
margin-left: 10px;
}