2024-01-12 20:50:41 -08:00
|
|
|
@import 'catpuccin';
|
|
|
|
|
2024-01-13 18:33:26 -08:00
|
|
|
// highlight transition speed
|
|
|
|
$hl-trn-spd: 0.2s;
|
|
|
|
|
2024-01-12 21:59:19 -08:00
|
|
|
$bg: $latte-base;
|
|
|
|
$nav-bg: $latte-crust;
|
|
|
|
$nav-color: $latte-text;
|
|
|
|
$nav-hover: $latte-surface2;
|
|
|
|
$nav-active-bg: $latte-mauve;
|
|
|
|
$nav-active-color: $latte-base;
|
|
|
|
$green: $latte-green;
|
|
|
|
|
|
|
|
@import 'mixins';
|
|
|
|
|
|
|
|
@import 'nav';
|
|
|
|
|
2024-01-12 20:50:41 -08:00
|
|
|
body {
|
|
|
|
background-color: $latte-base;
|
|
|
|
}
|
2024-01-12 21:59:19 -08:00
|
|
|
|
|
|
|
body.dark-mode {
|
|
|
|
$bg: $macchiato-base;
|
|
|
|
$nav-bg: $macchiato-crust;
|
|
|
|
$green: $macchiato-green;
|
|
|
|
}
|
2024-01-13 18:33:26 -08:00
|
|
|
|
|
|
|
div#below-header {
|
|
|
|
display:flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#left-col {
|
|
|
|
width: 15vw;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#main-body-content {
|
|
|
|
width: 70vw;
|
|
|
|
padding: 10px;
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 0.2s ease-out;
|
|
|
|
}
|
|
|
|
div#main-body-content.htmx-swapping {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.2s ease-out;
|
|
|
|
}
|
|
|
|
div#main-body-content.htmx-added {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#right-col {
|
|
|
|
width: 15vw;
|
|
|
|
padding: 10px;
|
|
|
|
}
|