mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:28:27 -04:00
20 lines
371 B
CSS
20 lines
371 B
CSS
body {
|
|
font-family: var(--fonts-sans) !important;
|
|
background-color: var(--colors-backgroundInner);
|
|
}
|
|
|
|
code,
|
|
kbd,
|
|
samp,
|
|
pre {
|
|
font-family: var(--fonts-mono) !important;
|
|
}
|
|
|
|
/* https://css-tricks.com/almanac/rules/m/media/prefers-reduced-motion/ */
|
|
@media (prefers-reduced-motion: reduce) {
|
|
* {
|
|
animation: none !important;
|
|
transition: none !important;
|
|
}
|
|
}
|