diff options
author | Nick Tchayka <nick@booster.cloud> | 2023-08-28 19:02:09 +0100 |
---|---|---|
committer | Nick Tchayka <nick@booster.cloud> | 2023-08-28 19:02:09 +0100 |
commit | 8db3c544020c00f85a6d85ba61e3e137436104bb (patch) | |
tree | fe8c2073cab70178d43ee89fa5f531e8e1ebc84f /src/css | |
parent | fb1db37588b46f06db8c37c582dd366a97bb9b6a (diff) | |
download | neohaskell.github.io-8db3c544020c00f85a6d85ba61e3e137436104bb.tar.gz neohaskell.github.io-8db3c544020c00f85a6d85ba61e3e137436104bb.tar.bz2 neohaskell.github.io-8db3c544020c00f85a6d85ba61e3e137436104bb.zip |
update
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/custom.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/css/custom.css b/src/css/custom.css index 4537517..6eed942 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -6,18 +6,24 @@ @import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@900&family=Ubuntu&display=swap'); @tailwind base; + +@layer base { + code { + } +} + @tailwind components; @tailwind utilities; body { - background-color: theme('colors.background'); + /* background-color: theme('colors.background'); */ } h1, h2, h3, h4, h5, h6 { font-family: 'Lexend Mega', sans-serif; } -* { +p, li { font-family: 'Ubuntu', sans-serif; } |