updated all my files for rofi
[danixland-rofi.git] / theme / runner.rasi
CommitLineData
a442b5f5 1/*
2 * DARKNIX runner rofi theme
3 * tested on a 1366x768 screen
4 */
5
6/* IMPORTS */
7@import "libs/settings.rasi"
8@import "libs/reset.rasi"
9
10window {
11 anchor: north;
12 location: north;
13 width: 600px;
14 height: 400px;
15 margin: 0;
16 background-color: @bg-trans;
17}
18mainbox {
19 background-color: @bg-trans;
20 children: [ inputbar, listview ];
21 border: 0;
22 padding: 0;
23}
24inputbar {
25}
26prompt {
27 enabled: false;
28}
29entry {
30 text-color: @accent;
31 background-color: @bg-focus;
32 border: 1px solid;
33 border-color: @accent;
34 border-radius: 5px;
35 padding: 10px;
36 horizontal-align: 0.0;
37 vertical-align: 0.5;
38 placeholder: "enter app to search...";
39 placeholder-color: @fg;
40}
41listview {
42 margin: 60px 0;
43 columns: 1;
44 lines: 12;
45 expand: false;
46 /*cycle: true;*/
47 spacing: 10px;
48 /*padding: 50px 10px;*/
49}
50element {
51 text-color: @fg;
52}
53element.selected {
54 background-color: @bg-focus;
55 text-color: @accent;
56}