diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/styles.css | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/assets/styles.css b/assets/styles.css new file mode 100644 index 0000000..23def5f --- /dev/null +++ b/assets/styles.css @@ -0,0 +1,75 @@ +/* styles.css */ +/* Minimal, readable styles for Org-mode HTML exports */ + +body { + font-family: system-ui, sans-serif; + font-size: 16px; + line-height: 1.6; + color: #222; + background: #ffffff; + margin: 2rem auto; + max-width: 800px; + padding: 0 1rem; +} + +h1, h2, h3, h4 { + font-weight: 600; + margin-top: 2rem; + margin-bottom: 1rem; +} + +h1 { font-size: 1.75rem; border-bottom: 2px solid #ccc; padding-bottom: 0.3rem; } +h2 { font-size: 1.5rem; border-bottom: 1px solid #ddd; padding-bottom: 0.2rem; } +h3 { font-size: 1.25rem; } +h4 { font-size: 1.1rem; } + +ul, ol { + margin-left: 1.5rem; + padding-left: 0; +} + +pre, code { + font-family: monospace; + background: #f4f4f4; + padding: 0.2em 0.4em; + border-radius: 4px; +} + +pre { + padding: 1em; + overflow-x: auto; +} + +blockquote { + margin-left: 1rem; + padding-left: 1rem; + border-left: 3px solid #ccc; + color: #555; +} + +table { + border-collapse: collapse; + width: 100%; + margin: 1rem 0; +} + +th, td { + border: 1px solid #ccc; + padding: 0.5rem; + text-align: left; +} + +hr { + border: none; + border-top: 1px solid #ccc; + margin: 2rem 0; +} + +a { + color: #0366d6; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +}
\ No newline at end of file |