blob: 075beb8bdc82d48764c6e452651b8085cb27ca8c (
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
|
@import "colors.css";
window {
color: @fg;
background-color: @bg;
border: 2px solid @bg1;
font-family: monospace, sans-serif;
}
.main {
margin: 8px;
}
.left {
margin-top: 8px;
}
.song-title {
font-size: 17px;
font-weight: bold;
}
.song-album {
color: @fg2;
}
.song-artist {
color: @fg2;
}
.control {
font-size: 24;
}
button {
color: @fg;
background: @bg;
border: none;
border-radius: 0;
box-shadow: none;
text-shadow: none;
}
button:hover {
background: @bg1;
}
button:active {
background: @bg2;
}
|