91 lines
1.3 KiB
SCSS
Raw Normal View History

2023-04-12 20:32:07 +02:00
@import 'css/colors';
@mixin rounding {
2023-11-21 16:52:35 +01:00
border-radius: $border-radius;
2023-04-12 20:32:07 +02:00
}
@mixin window {
2023-11-21 16:52:35 +01:00
border: $border-width solid $base04;
margin: $gaps-screen $gaps-screen $gaps-screen;
2023-04-12 20:32:07 +02:00
@include rounding;
}
2023-11-21 16:52:35 +01:00
@import 'css/sys';
@import 'css/net';
@import 'css/clock';
2023-11-22 06:14:03 +01:00
@import 'css/radio';
@import 'css/powermenu';
2023-11-21 16:52:35 +01:00
2023-04-12 20:32:07 +02:00
* {
all: unset;
font-family: "IBM Plex Mono";
transition: 200ms ease;
}
.bar {
color: $fg;
label {
font-size: 1.2rem;
}
}
tooltip {
2023-11-21 16:52:35 +01:00
background: $base01;
border: $border-width solid $base04;
border-radius: $border-radius;
2023-04-12 20:32:07 +02:00
label {
font-size: 1rem;
}
}
.icon,
.icon label { font-family: Material Design Icons; }
.ws {
2023-11-21 16:52:35 +01:00
border-radius: $border-radius;
margin: $gaps-window;
2023-04-12 20:32:07 +02:00
}
.focused {
2023-11-21 19:19:09 +01:00
background-color: $bg1;
2023-04-12 20:32:07 +02:00
border-radius: 1rem;
margin: .3rem;
padding: .25rem;
}
2023-11-21 16:52:35 +01:00
.module {
background: $base01;
border-radius: $border-radius;
border-color: $base03;
border-style: solid;
border-width: $border-width;
border-right-style: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
2023-11-21 19:19:09 +01:00
padding: $gaps-screen $gaps-window;
2023-11-21 16:52:35 +01:00
margin: $gaps-screen 0;
2023-04-12 20:32:07 +02:00
}
2023-11-21 20:33:19 +01:00
2023-04-12 20:32:07 +02:00
.grey {
background-color: $base02;
}
.red {
background-color: $base0F;
}
.orange {
background-color: $base08;
}
.green {
background-color: $base0B;
}
.blue {
background-color: $base0C;
}