website: add mdx, typography styling

This commit is contained in:
Mitchell Hashimoto
2023-10-05 15:06:57 -07:00
parent 88cf2eb317
commit c889b814a0
10 changed files with 6972 additions and 59 deletions

13
website/styles/code.css Normal file
View File

@@ -0,0 +1,13 @@
@media (prefers-color-scheme: dark) {
pre[data-theme="light"],
code[data-theme="light"] {
display: none;
}
}
@media (prefers-color-scheme: light), (prefers-color-scheme: no-preference) {
pre[data-theme="dark"],
code[data-theme="dark"] {
display: none;
}
}