blob: afba538e024b6cc117aada0b37599b09b623f417 (
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
|
::-webkit-scrollbar {
display: none;
}
html {
height: 100%;
background-size: cover;
-webkit-overflow-scrolling: touch;
user-select: none;
}
img {
user-select: none !important;
touch-action: none;
pointer-events: none;
}
body {
.playerContainer {
background: rgba(0, 0, 0, 0.5);
}
.playlistContainer {
margin: 15px 0;
overflow: scroll;
bottom: 200px;
}
.log {
display: none;
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
background: white;
font-size: 1.5rem;
}
}
|