mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
53
modules/home/wlogout/config/style.css
Normal file
53
modules/home/wlogout/config/style.css
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
window {
|
||||
font-family: JetBrainsMono Nerd Font;
|
||||
font-size: 14pt;
|
||||
color: #CED7F4; /* text */
|
||||
background-color: rgba(31, 31, 31, 0.7);
|
||||
}
|
||||
button {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: 50%;
|
||||
border: none;
|
||||
background-color: rgba(30, 30, 46, 0);
|
||||
margin: 5px;
|
||||
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
||||
}
|
||||
button:hover {
|
||||
background-color: rgba(49, 50, 68, 0.5);
|
||||
}
|
||||
button:focus {
|
||||
background-color: #595959;
|
||||
color:#1F1F1F;
|
||||
}
|
||||
#lock {
|
||||
background-image: image(url("./lock.png"));
|
||||
}
|
||||
#lock:focus {
|
||||
background-image: image(url("./lock-hover.png"));
|
||||
}
|
||||
#logout {
|
||||
background-image: image(url("./logout.png"));
|
||||
}
|
||||
#logout:focus {
|
||||
background-image: image(url("./logout-hover.png"));
|
||||
}
|
||||
#suspend {
|
||||
background-image: image(url("./sleep.png"));
|
||||
}
|
||||
#suspend:focus {
|
||||
background-image: image(url("./sleep-hover.png"));
|
||||
}
|
||||
|
||||
#shutdown {
|
||||
background-image: image(url("./power.png"));
|
||||
}
|
||||
#shutdown:focus {
|
||||
background-image: image(url("./power-hover.png"));
|
||||
}
|
||||
#reboot {
|
||||
background-image: image(url("./restart.png"));
|
||||
}
|
||||
#reboot:focus {
|
||||
background-image: image(url("./restart-hover.png"));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue