-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
98 lines (82 loc) · 1.39 KB
/
styles.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
/* General Styles */
body {
font-family: 'Inter', sans-serif;
background-color: #f5f5f5;
color: #333;
margin: 0;
padding: 20px;
font-size: 16px;
}
h1 {
text-align: center;
font-weight: 600;
color: #007BFF;
font-size: 2em;
margin-bottom: 30px;
}
.player, .enhancements {
background-color: #ffffff;
border-radius: 8px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.audio-container {
margin-top: 10px;
}
.audio-container audio {
width: 100%;
}
.controls {
margin-top: 20px;
}
.enhancement-item {
margin-bottom: 30px;
}
.enhancement-item label {
display: flex;
align-items: center;
font-size: 1em;
}
.enhancement-item input[type="checkbox"] {
margin-right: 10px;
transform: scale(1.5);
}
.setting-value {
font-weight: normal;
font-size: 0.9em;
color: #555;
margin-left: 10px;
}
.sub-controls {
margin-left: 30px;
margin-top: 10px;
}
.sub-controls label {
display: block;
margin-bottom: 10px;
}
button {
background-color: #007BFF;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 12px 20px;
font-weight: 600;
cursor: pointer;
margin-right: 10px;
font-size: 1em;
}
button:hover {
background-color: #0056b3;
}
input[type="range"] {
width: 100%;
margin-top: 5px;
}
@media (max-width: 600px) {
.enhancement-item {
flex-direction: column;
align-items: flex-start;
}
}