64b01cfbdc07196d35d4eb0f78240f7521b7ec3e
[my-dotfiles.git] / rofi / blackpearl / appmenu.rasi
1 /*
2 * BLACKPEARL appsmenu rofi theme
3 * tested on a 1366x768 screen
4 */
5
6 /* IMPORTS */
7 @import "shared/settings.rasi"
8 @import "shared/reset.rasi"
9
10
11 #scrollbar {
12 enabled: false;
13 }
14 #window {
15 fullscreen: true;
16 transparency: "real";
17 background-color: @bg-trans;
18 }
19
20 #mainbox {
21 children: [ inputbar, listview ];
22 border: 0;
23 padding: 0;
24 }
25
26 #inputbar {
27 padding: 40px 383px 10px;
28 }
29 #prompt {
30 enabled: false;
31 }
32 #entry {
33 background-color: @bg-focus;
34 border: 1px solid;
35 border-color: @fg-list;
36 border-radius: 5px;
37 padding: 10px;
38 horizontal-align: 0.0;
39 vertical-align: 0.5;
40 placeholder: "enter app to search...";
41 placeholder-color: @fg;
42 }
43
44 #listview {
45 columns: 6;
46 lines: 4;
47 expand: false;
48 /*cycle: true;*/
49 spacing: 20px;
50 padding: 50px 10px;
51
52 }
53 #element {
54 border: 1;
55 border-radius: 24;
56 border-color: @transparent;
57 text-color: @fg;
58 orientation: vertical;
59 padding: 8 12 8 12;
60 }
61 #element.selected {
62 background-color: @bg-focus;
63 border-color: @accent;
64 }
65 #element-icon {
66 horizontal-align: 0.5;
67 vertical-align: 0.5;
68 size: 64;
69 }
70 #element-name {
71 horizontal-align: 0.5;
72 vertical-align: 0.5;
73 }