44 lines
799 B
CSS
44 lines
799 B
CSS
window {
|
|
font-family: "Lexend";
|
|
font-size: 12pt;
|
|
color: #cdd6f4;
|
|
background-color: rgba(30, 30, 46, 0.9);
|
|
}
|
|
|
|
button {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 25%;
|
|
border-style: solid;
|
|
border-width: 3px;
|
|
background-color: rgba(12, 12, 12, 0.3);
|
|
border-color: #313244;
|
|
margin: 5px;
|
|
border-radius: 20px;
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
#lock {
|
|
background-image: image(url("icons/lock.png"));
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("icons/logout.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("icons/suspend.png"));
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: image(url("icons/hibernate.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("icons/reboot.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("icons/shutdown.png"));
|
|
}
|