-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (93 loc) · 1.61 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (93 loc) · 1.61 KB
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
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
font-family: Arial, sans-serif;
background-color: black;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.player-card {
background-color: #1e1e1e;
color: white;
padding: 20px;
border-radius: 20px;
width: 300px;
text-align: center;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.album-cover {
width: 100%;
border-radius: 10px;
margin-bottom: 15px;
}
.music-info h2 {
font-size: 20px;
margin-bottom: 5px;
}
.music-info p {
font-size: 14px;
color: #bbb;
margin-bottom: 20px;
}
.progress-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
font-size: 12px;
color: #ccc;
}
.progress-bar {
flex: 1;
height: 6px;
background-color: #444;
border-radius: 3px;
margin: 0 10px;
overflow: hidden;
}
.progress {
width: 40%;
height: 100%;
background-color: rgb(252, 214, 214);
}
.controls {
display: flex;
justify-content: space-around;
align-items: center;
gap: 10px;
}
.controls button {
background-color: transparent;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
transition: transform 0.2s;
}
.controls button:hover {
transform: scale(1.2);
}
.controls .play {
background-color: rgb(216, 114, 177);
color: white;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
border: none;
}