mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
different powermenu
This commit is contained in:
parent
2800b9b792
commit
61e44658e5
1 changed files with 57 additions and 32 deletions
|
|
@ -1,42 +1,67 @@
|
||||||
|
configuration {
|
||||||
|
location: 0;
|
||||||
|
font: "Overpass:style=regular";
|
||||||
|
}
|
||||||
* {
|
* {
|
||||||
background: #00000000;
|
border: 0;
|
||||||
black: #000000;
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
spacing: 0;
|
||||||
|
background: #000000;
|
||||||
blue: #7aa2f7;
|
blue: #7aa2f7;
|
||||||
deepblue: #03339c;
|
deepblue: #03339c;
|
||||||
}
|
|
||||||
* {
|
|
||||||
background-color: #00000000;
|
|
||||||
text-color: @blue;
|
|
||||||
font: "Material Design Icons 60";
|
|
||||||
}
|
|
||||||
prompt,inputbar,entry,textbox-prompt-colon { enabled: false; }
|
|
||||||
#window {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-color: @background;
|
background-color: @background;
|
||||||
transparency: "real";
|
text-color: @blue;
|
||||||
children: [dummy, listview, dummy];
|
|
||||||
}
|
}
|
||||||
#dummyofdummy {
|
|
||||||
children: [dummy, listview, dummy];
|
|
||||||
}
|
window {
|
||||||
#dummy {
|
background-color: @background;
|
||||||
expand: true;
|
border: 2px;
|
||||||
|
border-color: @deepblue;
|
||||||
|
border-radius: 50px;
|
||||||
|
width: 490px;
|
||||||
|
height: 130px;
|
||||||
|
x-offset: -4;
|
||||||
|
y-offset: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
listview {
|
listview {
|
||||||
lines: 4;
|
background-color: @background;
|
||||||
layout: horizontal;
|
columns: 1;
|
||||||
children: [element];
|
lines: 5;
|
||||||
margin: 100px 0px 100px 585px;
|
spacing: 50px;
|
||||||
|
layout: horizontal;
|
||||||
}
|
}
|
||||||
#element {
|
|
||||||
padding: 30px 40px;
|
mainbox {
|
||||||
background-color: @black;
|
background-color: @background;
|
||||||
border-color: #00000000;
|
children: [ listview ];
|
||||||
border-radius: 20px;
|
padding: 40px;
|
||||||
text-color: @black;
|
|
||||||
}
|
}
|
||||||
#element.selected {
|
|
||||||
text-color: @black;
|
element {
|
||||||
background-color: @deepblue;
|
background-color: @background;
|
||||||
|
text-color: @blue;
|
||||||
|
orientation: horizontal;
|
||||||
|
/*border-radius: 100%;*/
|
||||||
|
/*padding: 8px 32px 8px 32px;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
font: "Material Design Icons 30";
|
||||||
|
expand: false;
|
||||||
|
horizontal-align: 0.5;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected {
|
||||||
|
background-color: @background;
|
||||||
|
text-color: @deepblue;
|
||||||
|
border: 0px;
|
||||||
|
/*border-radius: 100%;*/
|
||||||
|
border-color: @blue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue