diff options
author | Prefetch | 2021-02-20 13:46:18 +0100 |
---|---|---|
committer | Prefetch | 2021-02-20 13:46:18 +0100 |
commit | e71c14aa725d71a2ea7310c69b3d11a8bc12c0b0 (patch) | |
tree | 987d344c8758d3250cf5c997891b8e645dd00594 /latex/main.css | |
parent | f7d88d0ae1c5544cc517ae6b25970f82d82b1496 (diff) |
Add latex/ directory + fix MathJax renderer
Diffstat (limited to 'latex/main.css')
-rw-r--r-- | latex/main.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/latex/main.css b/latex/main.css new file mode 100644 index 0000000..390858b --- /dev/null +++ b/latex/main.css @@ -0,0 +1,24 @@ +body { + background:#ddd; + color:#222; + max-width:80ch; + text-align:justify; + margin:auto; + padding:1em 0; + font-family:sans-serif; + line-height:1.3; +} +a {text-decoration:none;color:#00f;} +h1,h2,h3 {text-align:center} +h1 {font-size:200%;} +h2 {font-size:160%;} +h3 {font-size:120%;} +.nav {height:3rem;font-size:250%;} +.nav a:link,a:visited {color:#222;} +.nav a:hover,a:focus,a:active {color:#00f;} +.navl {width:30%;float:left;text-align:left;} +.navr {width:70%;float:left;text-align:right;} +pre {filter:invert(100%);} +@media (prefers-color-scheme: dark) { + body {background:#222;filter:invert(100%);} +} |