Update identation and comments

This commit is contained in:
JeremyStar™ 2024-06-04 00:49:03 +02:00
parent 74c99192bf
commit ca692ac571
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -1,28 +1,29 @@
/* jstm's waybar stylesheet */ /* Global theming */
* { * {
font-family: Jost, 'Fira Code'; font-family: Jost, 'Fira Code';
font: 18px 'Fira Code'; font: 18px 'Fira Code';
font-size: 18px; font-size: 18px;
font-weight: 500; font-weight: 500;
} }
window#waybar.mainbar {
/* background-color: #1b1b1b; */
background-color: transparent;
color: #ffffff; window#waybar.mainbar {
transition-property: background-color; /* background-color: #1b1b1b; */
transition-duration: .5s; background-color: transparent;
color: #ffffff;
transition-property: background-color;
transition-duration: .5s;
} }
window#waybar.hidden { window#waybar.hidden {
opacity: 0.2; opacity: 0.2;
} }
*.module { *.module {
padding: 0 20px 0 20px; padding: 0 20px 0 20px;
color: #ffffff; color: #ffffff;
background-color: #d60532; background-color: #d60532;
border-radius: 32px; border-radius: 32px;
} }