Invert full pre blocks; give the footer some room to breathe

This commit is contained in:
James Eversole 2024-03-13 18:42:29 -05:00
parent b1bd1c3d1b
commit bf47f02282
2 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cabal-version: 3.0
name: sampu
version: 0.9.0
version: 0.9.1
license: ISC
author: James Eversole
maintainer: james@eversole.co

View File

@ -30,6 +30,7 @@ core_ = do
footer_
html_
p_
pre_
a_ :: Css
a_ = do
@ -84,7 +85,7 @@ p_ = do
main_ :: Css
main_ = do
".main" ? do
margin (em 0) auto (em 0) auto
margin (em 0) auto (em 2) auto
width $ pct 60
notFound_ :: Css
@ -114,6 +115,13 @@ code_ = do
backgroundColor terColor
overflowX scroll
pre_ :: Css
pre_ = do
pre ? do
color priColor
backgroundColor terColor
overflowX scroll
nav_ :: Css
nav_ = do
".navContainer" ? do