revert to basic styling

This commit is contained in:
Benjamin Palko 2024-03-20 12:36:49 -05:00
parent 1106ae4dd6
commit 1610d3a732
13 changed files with 83 additions and 137 deletions

View file

@ -1,9 +1,5 @@
window#waybar {
background-color: rgba(43, 48, 59, 0.5);
border-bottom: 2px solid rgba(100, 114, 125, 0.5);
color: #ffffff;
transition-property: background-color;
transition-duration: 0.5s;
background-color: rgba(0, 0, 0, 0.2);
}
window#waybar.hidden {
@ -19,3 +15,44 @@ window#waybar.chromium {
border: none;
}
.modules-left {
background-color: rgba(43, 48, 59, 0.5);
border-bottom: 2px solid rgba(100, 114, 125, 0.5);
border-left: 2px solid white;
border-radius: 5px;
color: #ffffff;
padding: 0 2px 0 2px;
transition-property: background-color;
transition-duration: 0.5s;
}
.moadules-left:first-child {
border-right: none;
}
.modules-center {
background-color: rgba(43, 48, 59, 0.5);
border-bottom: 2px solid rgba(100, 114, 125, 0.5);
border-radius: 5px;
color: #ffffff;
padding: 0 2px 0 2px;
transition-property: background-color;
transition-duration: 0.5s;
}
.modules-right {
background-color: rgba(43, 48, 59, 0.5);
border-bottom: 2px solid rgba(100, 114, 125, 0.5);
border-radius: 5px;
color: #ffffff;
padding: 0 2px 0 2px;
transition-property: background-color;
transition-duration: 0.5s;
}
.modules-right:last-child {
border-right: none;
}