blob: 68e5ee8ed8ea3bd87ced2ca03d592803007996ce (
plain)
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
|
/* Kawaii Beats Player Container */
.kawaiibeats {
width: 200px;
height: 320px;
position: relative;
margin-top: 8px;
background-image: url("../../images/kawaiibeats/kawaii_beats.gif");
background-size: 200px 320px;
background-repeat: no-repeat;
-webkit-user-select: none;
user-select: none;
}
.kawaiibeats::after {
content: "";
position: absolute;
top: 20px;
left: 20px;
width: 160px;
height: 280px;
background-color: black;
opacity: 0.75;
z-index: -1;
}
/* Track Information */
#song-title {
position: absolute;
top: 25px;
left: 20px;
width: 160px;
font-weight: bold;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#song-artist-album {
position: absolute;
top: 40px;
left: 25px;
width: 150px;
font-size: 10px;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Player Elements */
#song-cover {
position: absolute;
top: 65px;
left: 30px;
width: 140px;
height: 140px;
}
#song-visualizer {
position: absolute;
top: 190px;
left: 30px;
}
#custom-seekbar {
position: absolute;
top: 220px;
left: 30px;
cursor: pointer;
}
#song-time {
position: absolute;
top: 240px;
left: 30px;
width: 140px;
font-size: 12px;
display: flex;
justify-content: space-between;
}
/* Player Controls */
#song-controls {
position: absolute;
top: 260px;
left: 30px;
width: 140px;
display: flex;
justify-content: space-around;
align-items: center;
}
#song-controls button {
color: white;
font-size: 16px;
cursor: pointer;
background: none;
border: none;
}
#song-controls button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
|