-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
112 lines (90 loc) · 1.33 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
background-color: #000000;
overflow-x: hidden;
}
h1 {
padding: 0.5em;
background-color: #000000;
}
ul {
list-style: none;
}
.main .fas {
font-size: 2em;
}
.play_control .fas {
font-size: 1em;
}
li {
text-decoration: none;
}
li.list-group-item i {
float: left;
}
li.list-group-item:hover {
background-color: #000099;
color: #99ffff;
cursor: pointer;
}
#controls i:hover {
color: #000099;
}
#trackimg {
width: 20em;
height: 20em;
}
.list-group-item i.fas.fa-pause {
display: none;
}
.song_list {
width: 1em;
height: 12em;
overflow-y: scroll;
overflow-x: hidden;
}
#details h3 {
margin-top: 5px;
}
#player_contain {
display: flex;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#playlist .song_list {
width: 100%;
}
.disable {
color: grey !important;
}
.disable:hover {
cursor: not-allowed !important;
}
.neon {
color: #fff;
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #0ff,
0 0 80px #0ff, 0 0 90px #0ff, 0 0 100px #0ff, 0 0 150px #0ff;
}
.card {
height: 81vh;
width: 40vw;
}
canvas {
display: block;
width: 40vw;
height: 5em;
}
#container {
position: relative;
}
#logo {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.track-art {
border: none;
}