From 5b7edc57501754e4976fba06ef9ae9abd71582d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Herg=C3=A8s?= Date: Sat, 9 Aug 2025 14:04:43 +0200 Subject: feat(header): simple style --- src/scss/style.scss | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) (limited to 'src/scss/style.scss') diff --git a/src/scss/style.scss b/src/scss/style.scss index e69de29..42f5727 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -0,0 +1,42 @@ +@use "reset"; + +body { + font-size: 24px; + font-family: sans-serif; +} + +h1 { + font-size: 3rem; + font-weight: bold; + margin-bottom: 1rem; + font-family: serif; +} + +h2 { + font-size: 2rem; + font-weight: bold; +} + +h3 { + font-size: 1.5rem; +} + +h4 { + font-size: 1.25rem; +} + +header { + height: 100vh; + box-sizing: border-box; + padding: 2.5% 5%; + color: white; + background-image: url("/home.jpg"); + background-size: cover; + background-position: center; +} + +.tags { + display: flex; + gap: 1rem; + font-size: 1.75rem; +} -- cgit v1.2.3