diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-01 18:55:12 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-01 18:55:12 -0500 |
commit | 2f9cffa891aafb1d7a2277885228544fb28a0889 (patch) | |
tree | 76724c8ef6f5233da9af6bdbb1e28e884bf4b069 /static | |
parent | b3dc7ad8554b7a32012d0aece92da7f949fff166 (diff) | |
download | hugo-theme-tjkbasic-2f9cffa891aafb1d7a2277885228544fb28a0889.tar.xz hugo-theme-tjkbasic-2f9cffa891aafb1d7a2277885228544fb28a0889.zip |
make some extremely minor changes and fix the sticky header on mobile browsers
Diffstat (limited to 'static')
-rw-r--r-- | static/stylesheets/highlight.css | 1 | ||||
-rw-r--r-- | static/stylesheets/style.css | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/static/stylesheets/highlight.css b/static/stylesheets/highlight.css index 035b2d0..ea6d80c 100644 --- a/static/stylesheets/highlight.css +++ b/static/stylesheets/highlight.css @@ -90,3 +90,4 @@ /* nginx LiteralString */ .chroma code.language-nginx .s { color: #ffffff } /* sh NameVariable */ .chroma code.language-sh .nv { color: #8ec07c } /* sh CommentPreproc */ .chroma .cp { color: #928374 } +/* yaml NameTag */ .chroma code.language-yaml .nt { color: #83a598 } diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index 0006ba3..2ab67d4 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -5,6 +5,7 @@ body { margin: 0 0 1.5em 0; color: white; font-family: serif; + text-underline-offset: 2.25px; } header { @@ -16,6 +17,7 @@ header { user-select: none; position: sticky; top: 0; + overflow: clip; } #title { @@ -112,7 +114,7 @@ ol, ul, pre code { } .alpha-ol ol { - list-style-type: upper-alpha; + list-style-type: lower-alpha; } img, figcaption { |