-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
81 lines (70 loc) · 1.21 KB
/
app.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
body {
background-color: #dae0e6;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.control-center {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 20px;
padding: 20px;
width: 250px;
display: flex;
flex-direction: column;
gap: 10px;
}
.row {
display: flex;
justify-content: space-between;
gap: 10px;
}
.icon {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
width: 50px;
height: 50px;
}
.media-control {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
width: 100%;
padding: 10px;
display: flex;
align-items: center;
gap: 10px;
}
.album-cover {
width: 50px;
height: 50px;
background-color: #444;
border-radius: 10px;
}
.song-info {
color: white;
display: flex;
flex-direction: column;
font-size: 12px;
}
.song-name {
font-weight: bold;
}
.slider {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
width: 100%;
height: 50px;
}
#brightness {
background: linear-gradient(180deg, #fff, #ffecb3);
}
#volume {
background: linear-gradient(180deg, #fff, #4db6ac);
}
.icon img {
width: 100%;
height: auto;
}
.icon:hover