blob: 44106e10a1847c271f4afb14f140b591a5ec3265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
.cue-view {
font-size: 24px;
background: shade(@theme_bg_color, 0.95);
padding: 12px;
border-radius: 12px;
}
.cue-view link {
color: @theme_fg_color;
text-decoration: none;
}
.cue-view link:hover {
background: shade(@theme_bg_color, 0.8);
}
.cue-view link:active {
background: shade(@theme_bg_color, 0.6);
}
|