mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
108 lines
1.5 KiB
CSS
108 lines
1.5 KiB
CSS
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: "Liberation Mono", "Font Awesome 6 Free", "Font Awesome 6 Brands", monospace;
|
|
font-size: 12px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: #000000;
|
|
color: #dcdcdc;
|
|
border-bottom: 1px solid #101010;
|
|
}
|
|
|
|
/* blocchi principali */
|
|
#workspaces,
|
|
#custom-music,
|
|
#temperature,
|
|
#memory,
|
|
#cpu,
|
|
#pulseaudio,
|
|
#backlight,
|
|
#network,
|
|
#bluetooth,
|
|
#battery,
|
|
#clock,
|
|
#custom-powermenu,
|
|
#tray {
|
|
font-size: 16px;
|
|
padding: 0 8px;
|
|
margin: 3px 0;
|
|
}
|
|
|
|
/* workspaces */
|
|
#workspaces {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
#workspaces button {
|
|
background: transparent;
|
|
color: #6f6f6f;
|
|
padding: 0 7px;
|
|
margin: 0 2px;
|
|
border-bottom: 1px solid transparent;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
color: #dcdcdc;
|
|
background: transparent;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #ffffff;
|
|
border-bottom: 1px solid #ffffff;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
color: #ffffff;
|
|
background: #0f0f0f;
|
|
}
|
|
|
|
/* centro */
|
|
#custom-music {
|
|
color: #bfbfbf;
|
|
}
|
|
|
|
/* moduli destra */
|
|
#temperature,
|
|
#memory,
|
|
#cpu,
|
|
#pulseaudio,
|
|
#backlight,
|
|
#network,
|
|
#bluetooth,
|
|
#battery {
|
|
color: #d0d0d0;
|
|
}
|
|
|
|
/* clock e power leggermente più evidenti */
|
|
#clock,
|
|
#custom-powermenu {
|
|
color: #ffffff;
|
|
}
|
|
|
|
#clock {
|
|
letter-spacing: 0.5px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
#custom-powermenu {
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
#tray {
|
|
padding-right: 12px;
|
|
}
|
|
|
|
/* tooltip */
|
|
tooltip {
|
|
background: #000000;
|
|
border: 1px solid #ffffff;
|
|
color: #e6e6e6;
|
|
padding: 10px;
|
|
}
|