diff options
| author | William Hergès <william@herges.fr> | 2025-08-09 17:21:33 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-08-09 17:21:33 +0200 |
| commit | 1b763e17ecbe46a3cee806a7177b0bd60e15bf44 (patch) | |
| tree | 45cd4cd4be93ce0c4b80cb86ec21ee882c0afc56 /src/scss/style.scss | |
| parent | e5c92241cf23546e8fdccd92050c02516f0abd9a (diff) | |
refactor(html): create layout
Diffstat (limited to 'src/scss/style.scss')
| -rw-r--r-- | src/scss/style.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/scss/style.scss b/src/scss/style.scss index cfa646b..1b6e93d 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -1,8 +1,12 @@ @use "reset"; +$background: hsl(15, 10%, 5%); + body { font-size: 22px; font-family: sans-serif; + background: $background; + color: white; } h1 { @@ -59,7 +63,7 @@ section { top: 60%; transform: translate(-50%, -50%); gap: 1rem; - background: hsl(15, 10%, 5%); + background: $background; color: white; max-width: 800px; margin: auto; |
