aboutsummaryrefslogtreecommitdiff
path: root/src/scss/style.scss
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-08-09 14:04:43 +0200
committerWilliam Hergès <william@herges.fr>2025-08-09 14:04:43 +0200
commit5b7edc57501754e4976fba06ef9ae9abd71582d6 (patch)
tree6d523e9091cbf494ca5f84b024bbb2b49db107e3 /src/scss/style.scss
parentcbf9a7b672fce0943cc6306c506dda3ab1c1024e (diff)
feat(header): simple style
Diffstat (limited to 'src/scss/style.scss')
-rw-r--r--src/scss/style.scss42
1 files changed, 42 insertions, 0 deletions
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;
+}