new-ryuslash.org/src/less/main.less
Tom Willemse a4603a7901 Update design and include CSS for my CGit and tekuti instances
This should include both a light and a dark theme, but I will admit that I'm
mostly testing with the dark one.
2021-07-03 01:29:43 -07:00

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; }