-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 836 Bytes
/
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
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: bisque;
height: 100vh;
}
.playListContainer {
margin-bottom: 40px;
width: 400px;
}
.trackItem {
border-bottom: 1px solid #b1a28f;
padding: 10px 0px;
user-select: none;
cursor: pointer;
font-size: 15px;
}
.currentAndTotalTime {
user-select: none;
color: #533f3f;
}
#progressBar {
width: 300px;
background-color: #bebebe;
height: 3px;
margin: 7px 0 10px 0;
cursor: pointer;
}
#currentProgress {
width: 0px;
height: 100%;
background-color: #c20d0d;
cursor: pointer;
}
.controls {
font-size: 1.5rem;
margin-left: 15px;
cursor: pointer;
user-select: none;
}
.musicPlayer .pauseButton {
display: none;
}