diff options
author | Tim Keller <tjkeller.xyz> | 2025-01-11 21:53:07 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-01-11 21:53:07 -0600 |
commit | 675e39fa962b30ee013d1feb0aa148b4ebdd1837 (patch) | |
tree | 3319595b9ba2900c6679a83480a75f408d5e210d | |
parent | 0fe4fef69be3fb1ef58186896179aa228cbc018f (diff) | |
download | hugo-theme-tjkbasic-675e39fa962b30ee013d1feb0aa148b4ebdd1837.tar.xz hugo-theme-tjkbasic-675e39fa962b30ee013d1feb0aa148b4ebdd1837.zip |
add table themeimg
-rw-r--r-- | static/stylesheets/style.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/static/stylesheets/style.css b/static/stylesheets/style.css index 27b9ae7..4c32ae3 100644 --- a/static/stylesheets/style.css +++ b/static/stylesheets/style.css @@ -140,6 +140,36 @@ img, figcaption { opacity: .2; } +.overflow-box { + overflow: scroll; +} + +table { + border-collapse: collapse; +} + +tr:nth-child(even) { + background: #252525; +} + +th { + background: #333; + border-right: 1.5px solid #222; + padding: .25em; +} + +td:not(.img) { + padding-inline: .75ex; +} + +td:not(:last-child) { + border-right: 1.5px solid #2b2b2b; +} + +td.img { + border: none; +} + @media (max-width: 1000px) { header { grid-template-columns: auto auto; |