blob: 209a9ac317c287435b922baa2ba6c7ea18f8c3d2 (
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
|
/**
* This theme is intended for a 5 items wide menu
* on a 1366x768 pixels resolution.
*/
@import "colors.rasi"
#window {
width: 1366px;
height: 768px;
/* vertical horizontal */
padding: 270px 88px;
children: [ horibox ];
}
#horibox {
children: [ listview ];
}
#listview {
layout: horizontal;
spacing: 56px;
lines: 5;
}
#element {
/**
* Values bellow are 'no-padding' ones, to which we add 70
* top right bottom left
* -14px 0px -14px -93px */
padding: 56px 70px 56px -23px;
background-color: @background-light;
}
#element.selected {
background-color: @accent;
text-color: @background;
}
|