mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-14 22:49:23 +01:00
71 lines
1.4 KiB
SCSS
71 lines
1.4 KiB
SCSS
---
|
|
# front-matter
|
|
---
|
|
|
|
/** @format */
|
|
|
|
@charset "utf-8";
|
|
$base-font-family: ui-sans-serif, system-ui, "Liberation Sans", Arimo, Arial,
|
|
sans-serif;
|
|
$monospace-font-family: ui-monospace, "Liberation Mono", Cousine, "Courier New",
|
|
monospace;
|
|
|
|
@import "{{ site.theme }}";
|
|
|
|
:root {
|
|
color-scheme: dark light !important;
|
|
}
|
|
|
|
* {
|
|
// box-sizing: border-box !important;
|
|
color: revert !important;
|
|
background-color: revert !important;
|
|
//margin: auto !important;
|
|
// line-height: 1.2 !important;
|
|
font-size: revert;
|
|
//padding: auto !important;
|
|
overflow-wrap: break-word !important;
|
|
hyphens: auto !important;
|
|
}
|
|
|
|
a {
|
|
text-decoration: underline !important;
|
|
}
|
|
|
|
pre,
|
|
code {
|
|
font-size: 0.8em !important;
|
|
}
|
|
|
|
img {
|
|
border-radius: 50% !important;
|
|
display: block;
|
|
margin-left: auto !important;
|
|
margin-right: auto !important;
|
|
@media (min-width: 395px) {
|
|
display: float !important;
|
|
float: right !important;
|
|
}
|
|
}
|
|
|
|
// Customize the dark theme to be more me
|
|
@media (prefers-color-scheme: dark) {
|
|
* {
|
|
color: #ffb700 !important;
|
|
border-color: #ffb700 !important;
|
|
background-color: #000000 !important;
|
|
}
|
|
|
|
.site-nav {
|
|
color-scheme: only dark !important;
|
|
color: #ffb700 !important;
|
|
background-color: #000000 !important;
|
|
color: #ffb700 !important;
|
|
}
|
|
|
|
// I don't want links to be restored to amber'
|
|
a {
|
|
color: revert !important;
|
|
}
|
|
}
|