diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-08-31 14:37:39 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-08-31 14:37:39 -0500 |
commit | b3dc7ad8554b7a32012d0aece92da7f949fff166 (patch) | |
tree | c9f2a1ad03deaad368d1b784ca19e61f1e96de09 /static/stylesheets/style.css | |
parent | c2afd94b9c3c1a94469ef0a875e4870ecb78ffd9 (diff) | |
download | hugo-theme-tjkbasic-b3dc7ad8554b7a32012d0aece92da7f949fff166.tar.xz hugo-theme-tjkbasic-b3dc7ad8554b7a32012d0aece92da7f949fff166.zip |
sticky header and other tweaks
Diffstat (limited to 'static/stylesheets/style.css')
-rw-r--r-- | static/stylesheets/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index 8caa40b..0006ba3 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -14,6 +14,8 @@ header { padding: 5px 10px; gap: 1em; user-select: none; + position: sticky; + top: 0; } #title { @@ -109,6 +111,10 @@ ol, ul, pre code { max-width: 100%; } +.alpha-ol ol { + list-style-type: upper-alpha; +} + img, figcaption { margin: auto; display: block; |