131 lines
1.7 KiB
SCSS
Raw Normal View History

2023-04-12 20:32:07 +02:00
@import 'css/colors';
2023-11-23 20:46:43 +01:00
/* MIXIN */
@mixin border-radius {
2023-11-21 16:52:35 +01:00
border-radius: $border-radius;
2023-04-12 20:32:07 +02:00
}
2023-11-23 20:46:43 +01:00
@mixin border-inactive {
border-width: $border-width;
border-style: solid;
border-color: $base03;
2023-04-12 20:32:07 +02:00
}
2023-11-23 20:46:43 +01:00
@mixin border-active {
2024-04-13 12:06:31 +02:00
border-width: $border-width;
border-style: solid;
2023-11-23 20:46:43 +01:00
border-color: $base04;
}
@mixin test {
}
/* GENERAL */
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;
}
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; }
2023-11-29 23:12:08 +01:00
.icon-text {
padding: 4pt;
font-size: 6pt;
font-weight: 900;
}
2023-04-12 20:32:07 +02:00
.grey {
2023-11-29 23:12:08 +01:00
color: $base02;
2023-04-12 20:32:07 +02:00
}
.red {
2023-11-29 23:12:08 +01:00
color: $base0F;
2023-04-12 20:32:07 +02:00
}
.orange {
2023-11-29 23:12:08 +01:00
color: $base08;
2023-04-12 20:32:07 +02:00
}
.green {
2023-11-29 23:12:08 +01:00
color: $base0B;
2023-04-12 20:32:07 +02:00
}
.blue {
2023-11-29 23:12:08 +01:00
color: $base0C;
2023-11-23 20:46:43 +01:00
}
/* WINDOW WRAPPER CSS */
.winevent {
background-color: $base01;
color: $base07;
@include border-radius;
@include border-inactive;
}
.winevent:hover {
@include border-active;
}
.wininner {
padding: $gaps-window;
}
.winouter {
margin: $gaps-screen;
}
/* MODULE WRAPPER CSS */
.modevent {
background-color: $base01;
color: $base07;
@include border-radius;
@include border-inactive;
border-right-style: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.modevent:hover {
@include border-active;
2024-05-18 08:14:56 +02:00
border-right-style: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
2023-11-23 20:46:43 +01:00
}
.modinner {
padding: $gaps-screen 0 $gaps-screen $gaps-window;
}
.modouter {
margin: $gaps-screen 0;
}
/* IMPORTS EXTERNAL */
@import 'css/sys';
@import 'css/net';
@import 'css/clock';
@import 'css/radio';
@import 'css/powermenu';
2024-04-13 12:06:31 +02:00
@import 'css/systray';
2023-11-23 20:46:43 +01:00
/* BAR */
.bar label {
font-size: 1.2rem;
}