blob: d0327e77effe08644dd2168affe73fe4bf703160 (
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
|
#logo h1
{
color: #468;
}
#chat a.u
{
color: #f08;
font-weight: bold;
text-shadow: #000 0 0 2px;
}
#chatbg
{
background-color: #000;
opacity: 0.7;
}
#lastlogbg
{
background-color: #000;
opacity: 0.8;
}
#playlistbg
{
background-color: #000;
opacity: 0.8;
}
#chat span a
{
color: #03f;
opacity: 1;
}
#queue li
{
}
#queue li.selected
{
background-color: #000;
}
#queue li span.yt
{
}
#queue li.selected span.yt
{
}
#queue li a
{
color: #f24;
letter-spacing: -1px;
}
#queue li.selected a
{
color: #f08;
}
#queue li span.like
{
color: #bbb;
}
#queue li.selected span.like
{
color: #888;
}
#queue li.liked span.like
{
color: #999;
font-weight: bold;
}
#queue li.selected.liked span.like
{
color: #fff;
font-weight: bold;
}
|