updated all my files for rofi
[danixland-rofi.git] / theme / scrotmenu.rasi
1 /*
2 * DARKNIX scrotmenu rofi theme
3 * tested on a 1366x768 screen
4 */
5
6 /* IMPORTS */
7 @import "libs/settings.rasi"
8 @import "libs/reset.rasi"
9
10 scrollbar {
11 disabled: true;
12 }
13 window {
14 fullscreen: true;
15 background-color: @bg-trans;
16 width: 100%;
17 position: north;
18 }
19 mainbox {
20 children: [ listview ];
21 border: 0;
22 padding: 0;
23 }
24 listview {
25 columns: 2;
26 lines: 1;
27 expand: false;
28 cycle: true;
29 spacing: 4em;
30 /* 60px is the height of the items */
31 padding: calc(50% - 5em) 22em;
32 orientation: horizontal;
33 }
34 element {
35 border: 1px;
36 border-radius: 1em 2em;
37 border-color: @accent;
38 background-color: @bg;
39 orientation: horizontal;
40 padding: 2em 0;
41 }
42 element selected {
43 background-color: @accent;
44 /* border-color: @bg-focus;*/
45 }
46 element-text {
47 font: "Inconsolata Nerd Font 70";
48 horizontal-align: 0.35;
49 vertical-align: 0.5;
50 }
51 element-text selected {
52 text-color: @bg;
53 }