mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* Fix pre tag margin top so it looks good inside containers * Bind to 0.0.0.0 for docker container support * Add HTML only tabs shortcode
28 lines
512 B
SCSS
28 lines
512 B
SCSS
@mixin tabs_dark {
|
|
.tabs {
|
|
label.tab-label {
|
|
background-color: $alt-bg-color-dark;
|
|
border-color: $lighter-alt-bg-color-dark;
|
|
}
|
|
|
|
input.tab-input:checked + label.tab-label {
|
|
background-color: $bg-color-dark;
|
|
}
|
|
|
|
.tab-content {
|
|
background-color: $bg-color-dark;
|
|
border-color: $lighter-alt-bg-color-dark;
|
|
}
|
|
}
|
|
}
|
|
|
|
body.colorscheme-dark {
|
|
@include tabs_dark();
|
|
}
|
|
|
|
body.colorscheme-auto {
|
|
@media (prefers-color-scheme: dark) {
|
|
@include tabs_dark();
|
|
}
|
|
}
|