-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (82 loc) · 1.36 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
body {
background-image: linear-gradient(
rgb(59, 88, 93),
rgb(29, 40, 42)
);
height: 100vh;
color: white;
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
button{
background-color: inherit;
color: inherit;
border: none;
}
#below-cover {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 3em 0 1em 0;
}
#button-container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.button{
font-size: 1.5em;
cursor: pointer;
}
.button-navigate{
font-size: 3em;
}
.button-biggest{
font-size: 4em;
}
#cover {
width: 370px;
}
#playlist-title{
display: flex;
flex-direction: row;
justify-content: center;
margin: 1em 0 2em 0;
}
#song-name{
font-size: 1.5em;
font-weight: bolder;
}
.light-color {
color: rgb(139, 153, 156);
}
#progress-bar {
background-color: rgb(139, 153, 156);
height: 3px;
width: 100%;
border-radius: 15px;
}
#current-progress {
--progress: 0%;
background-color: white;
height: inherit;
width: var(--progress);
border-radius: 15px;
}
#progress-container{
cursor: pointer;
}
.button-active{
color:rgb(0 ,183, 107);
}
#time-box{
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: smaller;
margin-top: 0.5em;
}