52 lines
970 B
CSS
52 lines
970 B
CSS
* {
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window {
|
|
background-image: url("../hypr/wallpapers/Purple-blurred.jpg");
|
|
}
|
|
|
|
button {
|
|
font-family: "JetBrainsMono Nerd Font Mono";
|
|
border-color: #89b4fa;
|
|
color: rgba(213, 93, 124, 0.933);
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
border: 3px solid rgba(89, 89, 89, 0.667);
|
|
border-radius: 8px;
|
|
background-repeat: no-repeat;
|
|
background-position: 50% 45%;
|
|
background-size: 18%;
|
|
margin: 13px;
|
|
}
|
|
|
|
button:hover {
|
|
/* 20% Overlay 2, 80% mantle */
|
|
background-color: rgba(0, 0, 0, 0.9);
|
|
border-color: rgba(213, 93, 124, 0.933);
|
|
outline-style: none;
|
|
}
|
|
|
|
#lock {
|
|
background-image: url("icons/lock.svg");
|
|
}
|
|
|
|
#logout {
|
|
background-image: url("icons/logout.svg");
|
|
}
|
|
|
|
#suspend {
|
|
background-image: url("icons/suspend.svg");
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: url("icons/hibernate.svg");
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: url("icons/shutdown.svg");
|
|
}
|
|
|
|
#reboot {
|
|
background-image: url("icons/reboot.svg");
|
|
}
|