113 lines
1.9 KiB
CSS
113 lines
1.9 KiB
CSS
* {
|
|
all: unset;
|
|
}
|
|
|
|
|
|
window {
|
|
background-color: rgba(30, 30, 30, 0.8);
|
|
color: #ffffff;
|
|
font-family: "IBMPlexSans-Regular", sans-serif;
|
|
font-size: 14px;
|
|
padding: 2px 7px;
|
|
}
|
|
|
|
#clock-label {
|
|
font-weight: bold;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.workspace-pill {
|
|
padding: 2px 5px;
|
|
margin-right: 6px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.workspace-pill:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.workspace-pill-focused {
|
|
background-color: #ffffff;
|
|
color: #1e1e1e;
|
|
font-weight: bold;
|
|
box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.workspace-pill-focused:hover {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.workspace-pill-active {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.workspace-pill-urgent {
|
|
background-color: #ff5555;
|
|
color: #fff;
|
|
|
|
/* base glow (will be animated) */
|
|
animation: workspace-blink 1s linear infinite;
|
|
}
|
|
|
|
/* blinking animation for urgent workspaces */
|
|
@keyframes workspace-blink {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.workspace-pill:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.minimized {
|
|
background-color: rgba(50, 50, 50, 0.5);
|
|
}
|
|
|
|
.restored {
|
|
background-color: transparent;
|
|
}
|
|
|
|
button {
|
|
padding: 2px 5px;
|
|
margin: 0 2px;
|
|
border-radius: 3px;
|
|
background-color: transparent;
|
|
color: #ffffff;
|
|
border: none;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #111111;
|
|
}
|
|
|
|
#spacer {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
padding: 0 5px;
|
|
}
|
|
|
|
popover {
|
|
background-color: rgb(30, 30, 30);
|
|
color: #ffffff;
|
|
font-family: "IBMPlexSans-Regular", sans-serif;
|
|
}
|
|
|
|
tooltip {
|
|
background-color: rgba(50, 50, 50, 0.9);
|
|
color: #ffffff;
|
|
font-family: "IBMPlexSans-Regular", sans-serif;
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.icon-label {
|
|
font-family: "Material Icons, Font Awesome 7 Brands, Hack Nerd Font Mono";
|
|
font-size: 19px;
|
|
} |