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