2022-03-22 23:50:53 +07:00
|
|
|
$background: #1a1b26;
|
|
|
|
|
$accent: #9d7cd8;
|
|
|
|
|
$foreground: #c0caf5;
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
all: unset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window {
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bar {
|
|
|
|
|
margin: 5px 20px 0px 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.widget {
|
|
|
|
|
background: $background;
|
|
|
|
|
color: $foreground;
|
|
|
|
|
font-family: "Noto Sans";
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
padding: 5px 15px;
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.time {
|
|
|
|
|
.base {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
.extension {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: rgba($foreground, .7);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.workspaces {
|
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
padding: 0px 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty, .occupied {
|
|
|
|
|
color: $accent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-14 11:51:30 +07:00
|
|
|
.widget.line-workspaces {
|
|
|
|
|
color: transparent;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
font-size: 0;
|
|
|
|
|
|
|
|
|
|
button {
|
2022-04-14 13:28:37 +07:00
|
|
|
padding: 0 13px;
|
2022-04-14 11:51:30 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.empty {
|
|
|
|
|
background-color: $background;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.occupied {
|
|
|
|
|
background-color: $accent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.focused {
|
|
|
|
|
background-color: $foreground;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|