nycki.net/static/cookbook/style.css
nycki 14c5d7d61c
All checks were successful
/ build (push) Successful in 46s
pull in old static files
2025-08-21 18:39:02 -07:00

39 lines
No EOL
808 B
CSS

:root {
/* xkcd.com/color/rgb */
--amber: #feb308;
--black: #000000;
--steel-blue: #5a7d9a;
--olive-green: #677a04;
--grey: #929591;
--warm-grey: #978a84;
--light-grey: #d8dcd6;
--background: var(--black);
--foreground: var(--light-grey);
--code: var(--amber);
--link: var(--steel-blue);
font-family: sans-serif;
color: var(--foreground);
background-color: var(--background);
max-width: 100ch;
margin: auto;
padding: 1ch;
}
a {
color: var(--link);
}
code {
color: var(--code);
font-size: 1rem;
}
pre, pre.sourceCode {
color: var(--code);
margin: 2ch;
white-space: pre-wrap;
border: solid 1.5px;
padding: 2ch;
}
section.level2 {
border-top: 0.5ch solid white;
}