diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-01-05 23:44:45 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-01-05 23:45:00 +0100 |
commit | 4b76a856b2841fb197acc982ed168bc52db6ea3d (patch) | |
tree | bb92327990d20b262dca7f597453c8ae7bfee16d /assets/scss/input.css | |
parent | f9e5452a0046e6e47425f0c58d438d0f573fece9 (diff) | |
download | hugo-minimalist-theme-4b76a856b2841fb197acc982ed168bc52db6ea3d.tar.gz hugo-minimalist-theme-4b76a856b2841fb197acc982ed168bc52db6ea3d.tar.bz2 hugo-minimalist-theme-4b76a856b2841fb197acc982ed168bc52db6ea3d.zip |
add tailwind and do some replacements
Diffstat (limited to 'assets/scss/input.css')
-rw-r--r-- | assets/scss/input.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/assets/scss/input.css b/assets/scss/input.css new file mode 100644 index 0000000..f9bf4b2 --- /dev/null +++ b/assets/scss/input.css @@ -0,0 +1,35 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +/* HERO */ +#hero { + text-shadow: 2px 2px 3px black; +} + +blockquote::before { + font-family: "Font Awesome 6 Free"; + color: #79c753; + content: "\f10d"; + font-weight: 900; + font-size: 2rem; + position: absolute; + left: 10px; + top: -15px; +} + +.baskerville { + font-family: baskerville, serif; +} +.w3-theme-border { + border-color: #79c753; +} + +@layer base { + blockquote { + @apply border-l-4 p-6 pb-1 mx-8 relative w3-theme-border baskerville; + } + blockquote p:last-of-type { + @apply text-center uppercase mt-4; + } +} |