mirror of
https://github.com/eliasrenman/dotfiles.git
synced 2026-03-17 04:56:07 +01:00
69 lines
1.5 KiB
CSS
69 lines
1.5 KiB
CSS
window {
|
|
font-family: JetBrainsMono Nerd Font, monospace;
|
|
font-size: 12pt;
|
|
color: #cdd6f4;
|
|
background-color: rgba(30, 30, 46, 0.5);
|
|
}
|
|
|
|
button {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 20%;
|
|
border: none;
|
|
color: #ced7f4;
|
|
text-shadow: 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.1);
|
|
}
|
|
|
|
button:focus {
|
|
background-color: #5e81ac;
|
|
color: #18182a;
|
|
text-shadow: none;
|
|
}
|
|
|
|
#lock {
|
|
background-image: image(url("./icons/lock.png"));
|
|
}
|
|
#lock:focus {
|
|
background-image: image(url("./icons/lock-hover.png"));
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("./icons/logout.png"));
|
|
}
|
|
#logout:focus {
|
|
background-image: image(url("./icons/logout-hover.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("./icons/sleep.png"));
|
|
}
|
|
#suspend:focus {
|
|
background-image: image(url("./icons/sleep-hover.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("./icons/power.png"));
|
|
}
|
|
#shutdown:focus {
|
|
background-image: image(url("./icons/power-hover.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("./icons/restart.png"));
|
|
}
|
|
#reboot:focus {
|
|
background-image: image(url("./icons/restart-hover.png"));
|
|
}
|
|
#hibernate {
|
|
background-image: image(url("./icons/hibernate.png"));
|
|
}
|
|
#hibernate:focus {
|
|
background-image: image(url("./icons/hibernate-hover.png"));
|
|
} |