68 lines
1.4 KiB
CSS
68 lines
1.4 KiB
CSS
@import url("file:///home/rionzaphkiel/.cache/wal/colors-waybar.css");
|
|
|
|
* {
|
|
background-image: none;
|
|
font-size: 20px;
|
|
font-family: "JetBrains Mono";
|
|
}
|
|
|
|
window {
|
|
background-image: image(url("./images/wallpaper_blurred.png"));
|
|
}
|
|
|
|
button {
|
|
border-radius: 20px;
|
|
margin: 10px;
|
|
color: @inverse_surface;
|
|
border-color: @inverse_surface;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
outline-style: none;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 20%;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
animation: gradient_f 20s ease-in infinite;
|
|
}
|
|
|
|
button:hover,button:focus {
|
|
background-color: @on_secondary_fixed_variant;
|
|
background-size: 30%;
|
|
color: @color1;
|
|
animation: gradient_f 20s ease-in infinite;
|
|
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
|
|
}
|
|
|
|
/* Adjust the size of the icon or content inside the button */
|
|
button span {
|
|
font-size: 1.2em; /* Increase the font size */
|
|
}
|
|
|
|
|
|
#lock {
|
|
background-image: image(url("./icons/lock.png"));
|
|
}
|
|
|
|
#logout {
|
|
background-image: image(url("./icons/logout.png"));
|
|
}
|
|
|
|
#suspend {
|
|
background-image: image(url("./icons/sleep.png"));
|
|
}
|
|
|
|
#shutdown {
|
|
background-image: image(url("./icons/power.png"));
|
|
}
|
|
|
|
#reboot {
|
|
background-image: image(url("./icons/restart.png"));
|
|
}
|
|
|
|
#hibernate {
|
|
background-image: image(url("./icons/hibernate.png"));
|
|
}
|
|
|