-
Notifications
You must be signed in to change notification settings - Fork 0
/
sweetchai.css
82 lines (68 loc) · 999 Bytes
/
sweetchai.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
/* CSS declarations go here */
body {
background: #111;
color: #fff;
line-height: 1;
}
#player {
position: fixed;
top: 0;
left: 0;
height: 50px;
overflow: hidden;
font-size: 36px;
z-index: 2;
background: rgba(0,0,0,.5);
}
#library {
margin-left: 210px;
margin-top: 50px;
z-index: 1;
}
#queue {
position: fixed;
top: 50px;
left: 0;
bottom: 0;
width: 200px;
z-index: 2;
overflow-y: auto;
overflow-x: hidden;
}
a {
color: rgb(210, 255, 120);
}
a:hover, a:focus, a {
text-decoration: none;
cursor: pointer;
}
.artist {
font-size: 13px;
cursor: pointer;
}
.song {
color: #ddd;
font-size: 14px;
}
.songs {
column-count: 4;
-webkit-column-count: 3;
}
.qsong {
cursor: pointer;
white-space: nowrap;
font-size: 13px
}
.artist:hover, .qsong:hover, .song:hover {
color: rgba(210, 255, 120, .8)
}
.album {
margin-bottom: 10px;
font-size: 20px;
}
.album:hover {
background: #222;
}
.playing{
color: rgb(210, 255, 120)
}