:root { --bg: #181a1b; --bg-light: #222; --fg: #ddd; --gray: #888; --gray-light: #555; --yellow: #fda; --yellow-dark: #ca8; --yellow-warm: #e6c79a; --wine: #c65a5a } body { background-color: var(--bg); color: var(--fg); font: 1em/1.8 'Open Sans', sans-serif; margin: 0 auto; max-width: 50em; padding: 0em 1em; } header { margin-top: 1em; font-size: 2em; color: var(--gray); } footer { margin-top: 3em; margin-bottom: 1.5em; text-align: center; font-size: 0.95em; color: var(--gray); } a { color: var(--yellow); text-decoration: none; } a:hover { text-decoration: underline; text-decoration-color: var(--yellow-dark); } pre > code { display: block; padding: 10px 15px; white-space: pre-wrap; line-height: 1.4em; } pre, code { font-family: 'Fira Code', monospace; font-size: 0.98em; color: var(--fg); background-color: var(--bg-light); border-radius: 5px; } code { padding: 3px 5px; white-space: nowrap; } p img, table { max-width: 100%; } img { display: block; margin-left: auto; margin-right: auto; } blockquote { background-color: var(--bg-light); border-left: 5px solid var(--yellow-warm); border-radius: 5px; margin: 0em 1em; padding-left: 1em; } .homepage-link { color: var(--wine); text-decoration-color: var(--gray-light); }