diff options
author | Nick Tchayka <nick@booster.cloud> | 2023-08-30 13:07:51 +0100 |
---|---|---|
committer | Nick Tchayka <nick@booster.cloud> | 2023-08-30 13:07:51 +0100 |
commit | 6001682645bbfb52ffb19156e4d2598c8c075b85 (patch) | |
tree | f267ce3ee922ac439e73a9fadb40c8042680d363 /src/css | |
parent | 18be2308873c50936c08d254ebb20afe1bdc318a (diff) | |
download | neohaskell.github.io-6001682645bbfb52ffb19156e4d2598c8c075b85.tar.gz neohaskell.github.io-6001682645bbfb52ffb19156e4d2598c8c075b85.tar.bz2 neohaskell.github.io-6001682645bbfb52ffb19156e4d2598c8c075b85.zip |
Update
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/custom.css | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/css/custom.css b/src/css/custom.css index f7a3179..04040e8 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -7,26 +7,31 @@ @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.lightbackground'); +} + +[data-theme='dark'] body { + background-color: theme('colors.darkbackground'); } h1, h2, h3, h4, h5, h6 { font-family: 'Lexend Mega', sans-serif; } +.underline { + text-decoration-skip-ink: none !important; + text-underline-offset: 2rem; +} + p, li { font-family: 'Ubuntu', sans-serif; } + /* .navbar { flex: auto; border: 0; |