-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (77 loc) · 1.45 KB
/
style.css
File metadata and controls
89 lines (77 loc) · 1.45 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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
header {
margin-bottom: 20px;
}
.container {
text-align: center;
width: 80%;
max-width: 600px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 30px;
margin-bottom: 20px; /* Added margin to separate the containers */
}
.song-info h1 {
font-size: 28px;
color: #333;
}
.song-info p {
font-size: 18px;
color: #666;
margin-top: 10px;
}
.audio-player {
margin-top: 30px;
}
button {
background-color: #007bff;
color: white;
font-size: 16px;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
#progress-container {
margin-top: 20px;
}
#progress-bar {
width: 100%;
height: 10px;
background-color: #ddd;
border-radius: 5px;
outline: none;
}
#progress-bar::-webkit-slider-thumb {
width: 15px;
height: 15px;
background: #007bff;
cursor: pointer;
border-radius: 50%;
-webkit-appearance: none;
}
#progress-bar::-moz-range-thumb {
width: 15px;
height: 15px;
background: #007bff;
cursor: pointer;
border-radius: 50%;
}