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,10 +1,4 @@
@import url('../common.css');
#clock {
border: solid 1px #5e81ac;
border-radius: 9999px;
padding: 0 10px;
color: #eee;
background: linear-gradient(144deg, #8fbcbb 0%, #5e81ac 100%);
color: white;
}

View file

@ -1,6 +1,4 @@
#cpu {
padding: 0 10px;
background-color: #2ecc71;
color: #333;
color: white;
}

View file

@ -1,4 +1,5 @@
#idle_inhibitor {
border-radius: 9999px;
background-color: #2d3436;
}

View file

@ -1,6 +1,4 @@
#memory {
padding: 0 10px;
color: #ddd;
background-color: #9b59b6;
color: white;
}

View file

@ -1,10 +1,8 @@
#network {
padding: 10px;
color: #ddd;
background-color: #2980b9;
color: #2980b9;
}
#network.disconnected {
background-color: #f53c3c;
color: #f53c3c;
}

View file

@ -0,0 +1,4 @@
.custom-spotify {
color: #1DB954;
}

View file

@ -1,10 +1,8 @@
#temperature {
padding: 0 10px;
color: #ddd;
background-color: #f0932b;
color: #f0932b;
}
#temperature.critical {
background-color: #eb4d4b;
color: #eb4d4b;
}

View file

@ -1,2 +0,0 @@

View file

@ -1,10 +1,8 @@
#wireplumber {
background-color: #fff0f5;
padding: 0 10px;
color: #000000;
color: white;
}
#wireplumber.muted {
background-color: #f53c3c;
color: #f53c3c;
}

View file

@ -26,3 +26,13 @@
background-color: #eb4d4b;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 8px;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}