diff options
| author | Fuwn <[email protected]> | 2024-01-23 23:00:53 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-23 23:00:53 -0800 |
| commit | d2a5bf359a4f964af342fa1d078fa16b1bd87f8b (patch) | |
| tree | 1c5bcd3d44c8124c2096256646dff8db9edd203b /src/styles/normalise.css | |
| parent | refactor(html): preload stylesheets (diff) | |
| download | due.moe-d2a5bf359a4f964af342fa1d078fa16b1bd87f8b.tar.xz due.moe-d2a5bf359a4f964af342fa1d078fa16b1bd87f8b.zip | |
refactor(styles): move out to src
Diffstat (limited to 'src/styles/normalise.css')
| -rw-r--r-- | src/styles/normalise.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/styles/normalise.css b/src/styles/normalise.css new file mode 100644 index 00000000..85f6442c --- /dev/null +++ b/src/styles/normalise.css @@ -0,0 +1,23 @@ +ul, +ol { + margin: 0; +} + +ul, +li::marker { + content: unset !important; +} + +a:hover { + text-decoration: none !important; +} + +a:focus { + outline: none; +} + +code { + color: var(--base07); + padding: 0.25em 0.5em; + border-radius: 4px; +} |