Last active
January 10, 2024 23:12
-
-
Save vtmx/1e8e7796d2b7be31c9e056d81c8fb79b to your computer and use it in GitHub Desktop.
tgl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Reference */ | |
| /* https://codeberg.org */ | |
| /* Print */ | |
| /* https://i.imgur.com/LaGwJmk.png */ | |
| :root { | |
| --color-body: #1d262f; | |
| --color-text: #d2e0f0; | |
| --color-primary: #fb923c; | |
| --color-secondary: #242d38; | |
| --font: 16px/1.5 apple-system, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif; | |
| --max-width: 720px; | |
| } | |
| body { | |
| max-width: var(--max-width); | |
| margin: 0 auto; | |
| font: var(--font); | |
| background: var(--color-body); | |
| color: var(--color-text); | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| border-bottom: 1px solid var(--color-secondary); | |
| } | |
| h2, h3, h4, h5, h6 { | |
| font-size: 1.5em; | |
| margin: 24px 0 16px; | |
| padding-bottom: .3em; | |
| line-height: 1.25; | |
| } | |
| h1 { | |
| padding-bottom: .3em; | |
| font-size: 2em; | |
| } | |
| h2 a { | |
| color: var(--color-text); | |
| &:hover { | |
| cursor: default; | |
| background: none; | |
| text-decoration: none; | |
| color: var(--color-text); | |
| } | |
| } | |
| ul { | |
| margin-bottom: 16px; | |
| padding-left: 2em; | |
| li { | |
| margin-top: 4px; | |
| } | |
| } | |
| footer { | |
| strong { | |
| font-size: 1.5em; | |
| } | |
| } | |
| a { | |
| text-decoration: none; | |
| color: var(--color-primary); | |
| &:hover { | |
| text-decoration: underline; | |
| } | |
| } | |
| hr { | |
| border-top: 0; | |
| border-color: var(--color-secondary); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment