Tom Willemse
a4603a7901
This should include both a light and a dark theme, but I will admit that I'm mostly testing with the dark one.
45 lines
653 B
Text
45 lines
653 B
Text
@import 'include/components';
|
|
@import 'include/common';
|
|
|
|
.title {
|
|
&:extend(.title-header);
|
|
}
|
|
|
|
.subtitle {
|
|
&:extend(.subtitle);
|
|
}
|
|
|
|
#postamble {
|
|
&:extend(.footer);
|
|
&:extend(.content-wrapper);
|
|
|
|
p {
|
|
&:extend(.footer-text);
|
|
}
|
|
}
|
|
|
|
#content {
|
|
&:extend(.content-wrapper);
|
|
}
|
|
|
|
figure {
|
|
text-align: center;
|
|
}
|
|
|
|
pre.src {
|
|
@import (less) "yoshi.css";
|
|
|
|
position: static;
|
|
|
|
&::before {
|
|
@media (prefers-color-scheme: dark) {
|
|
background-color: @dark-background;
|
|
}
|
|
@media (prefers-color-scheme: light) {
|
|
background-color: @light-background;
|
|
}
|
|
}
|
|
}
|
|
|
|
.org-src-container { position: relative; }
|
|
.org-svg { width: unset; }
|