Hyprland-dotfiles/waybar/style.css
Stephan Raabe b616269c58 Updates
2023-08-31 14:23:07 +02:00

302 lines
6.5 KiB
CSS

/*
* __ __ _ ____ _ _
* \ \ / /_ _ _ _| |__ __ _ _ __ / ___|| |_ _ _| | ___
* \ \ /\ / / _` | | | | '_ \ / _` | '__| \___ \| __| | | | |/ _ \
* \ V V / (_| | |_| | |_) | (_| | | ___) | |_| |_| | | __/
* \_/\_/ \__,_|\__, |_.__/ \__,_|_| |____/ \__|\__, |_|\___|
* |___/ |___/
*
* by Stephan Raabe (2023)
* -----------------------------------------------------
*/
/* -----------------------------------------------------
* Import Pywal colors
* ----------------------------------------------------- */
@import 'colors-waybar.css';
/* -----------------------------------------------------
* General
* ----------------------------------------------------- */
* {
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
border: none;
border-radius: 0px;
}
window#waybar {
background-color: rgba(0,0,0,0.8);
border-bottom: 0px solid #ffffff;
/* color: #FFFFFF; */
background: transparent;
transition-property: background-color;
transition-duration: .5s;
}
/* -----------------------------------------------------
* Workspaces
* ----------------------------------------------------- */
#workspaces {
background: #FFFFFF;
margin: 5px 5px 5px 5px;
padding: 4px 1px;
border-radius: 12px;
font-weight: normal;
font-style: normal;
opacity:0.8;
}
#workspaces button {
padding: 0px 10px;
margin: 0px 3px;
border-radius: 12px;
color: @color11;
background-color: @color11;
transition: all 0.3s ease-in-out;
opacity:0.4;
font-size:13px;
}
#workspaces button.active {
color: #cdd6f4;
background-color: @color11;
border-radius: 10px;
min-width: 30px;
background-size: 400% 400%;
transition: all 0.3s ease-in-out;
opacity:1.0;
}
#workspaces button:hover {
background-color: @color1;
color: #cdd6f4;
border-radius: 10px;
min-width: 30px;
background-size: 400% 400%;
}
/* -----------------------------------------------------
* Tooltips
* ----------------------------------------------------- */
tooltip {
border-radius: 10px;
background-color: #FFFFFF;
opacity:0.8;
padding:20px;
margin:0px;
}
tooltip label {
color: @color11;
}
/* -----------------------------------------------------
* Window
* ----------------------------------------------------- */
#window {
background: #FFFFFF;
margin: 5px 15px 5px 5px;
padding: 2px 10px 0px 10px;
border-radius: 12px;
color:@background;
font-size:16px;
font-weight:normal;
opacity:0.8;
}
/* -----------------------------------------------------
* Taskbar
* ----------------------------------------------------- */
#taskbar {
background: #FFFFFF;
margin: 5px 15px 5px 5px;
padding: 0px 1px;
border-radius: 12px;
font-weight: normal;
font-style: normal;
opacity:0.8;
}
#taskbar button {
margin:0;
padding: 0px 5px 0px 5px;
}
/* -----------------------------------------------------
* Modules
* ----------------------------------------------------- */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
/* -----------------------------------------------------
* Custom Modules
* ----------------------------------------------------- */
#custom-appmenu {
background-color: #FFFFFF;
font-size: 16px;
color: @background;
border-radius: 12px;
padding: 2px 10px 0px 10px;
margin: 5px 10px 5px 14px;
opacity:0.8;
}
#custom-brave, #custom-outlook, #custom-teams, #custom-chatgpt, #custom-calculator, #custom-lookingglass {
margin-right:15px;
font-size:16px;
}
#custom-exit {
margin: 0px 10px 0px 10px;
font-size:20px;
}
#custom-updates {
background-color: #FFFFFF;
font-size: 16px;
color: @background;
border-radius: 12px;
padding: 2px 10px 0px 10px;
margin: 5px 15px 5px 0px;
opacity:0.8;
}
#custom-youtube {
background-color: #FFFFFF;
font-size: 16px;
color: @background;
border-radius: 12px;
padding: 2px 10px 0px 10px;
margin: 5px 15px 5px 0px;
opacity:0.8;
}
/* -----------------------------------------------------
* Hardware Group
* ----------------------------------------------------- */
#disk,#memory,#cpu {
margin:0px;
padding:0px;
font-size:16px;
}
/* -----------------------------------------------------
* Clock
* ----------------------------------------------------- */
#clock {
background-color: #FFFFFF;
font-size: 16px;
color: @background;
border-radius: 12px;
padding: 2px 10px 0px 10px;
margin: 5px 14px 5px 10px;
opacity:0.8;
}
/* -----------------------------------------------------
* Pulseaudio
* ----------------------------------------------------- */
#pulseaudio {
background-color: #FFFFFF;
font-size: 16px;
color: @background;
border-radius: 12px;
padding: 2px 10px 0px 10px;
margin: 5px 15px 5px 0px;
opacity:0.8;
}
#pulseaudio.muted {
background-color: @color11;
color: #FFFFFF;
}
/* -----------------------------------------------------
* Battery
* ----------------------------------------------------- */
#battery {
background-color: #FFFFFF;
font-size: 16px;
color: @background;
border-radius: 12px;
padding: 2px 10px 0px 10px;
margin: 5px 15px 5px 0px;
opacity:0.8;
}
#battery.charging, #battery.plugged {
color: #ffffff;
background-color: @color11;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
#battery.critical:not(.charging) {
background-color: #f53c3c;
color: #ffffff;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
/* -----------------------------------------------------
* Tray
* ----------------------------------------------------- */
#tray {
background-color: #2980b9;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
/* -----------------------------------------------------
* Other
* ----------------------------------------------------- */
label:focus {
background-color: #000000;
}
#backlight {
background-color: #90b1b1;
}
#network {
background-color: #2980b9;
}
#network.disconnected {
background-color: #f53c3c;
}