aboutsummaryrefslogtreecommitdiff
path: root/frontend/scss/main.scss
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-10-02 16:59:29 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-10-02 16:59:29 +0200
commit5bfd611e7b3468ae38263388e2415d4bba94b0fc (patch)
tree4aede9ce1ced890467211bb8c06f89afd0dbf36f /frontend/scss/main.scss
parent06c8b78fd08de1259b4c6c9046532c296db83e4d (diff)
feat(frontend): setup and rewrite style with scss
Diffstat (limited to 'frontend/scss/main.scss')
-rw-r--r--frontend/scss/main.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/frontend/scss/main.scss b/frontend/scss/main.scss
new file mode 100644
index 0000000..e89d4e7
--- /dev/null
+++ b/frontend/scss/main.scss
@@ -0,0 +1,24 @@
+@use "../../node_modules/reset-css/reset.css";
+
+:root {
+ --color-dark: hsl(202, 25%, 9%);
+ --color-light: #EFF7F6;
+ --color-gray: #BCB3BB; /* quote and legend */
+ --color-rose: #F2B5D4; /* link accent */
+ --color-light-rose: hsl(330, 55%, 70%, 0.2); /* link accent hover and highlight */
+
+ --font-size-tiny: 0.85rem; /* quote, legend, code */
+
+ --width-content: 700px; /* main, article */
+ --width-deco: 900px; /* header, footer, large image */
+ --height-header: 8rem; /* header, footer, introduction */
+
+ --margin-base: 1.5rem;
+ --margin-header: calc(var(--height-header) / 2);
+
+ font-size: 20px;
+}
+
+@use "general";
+@use "special";
+@use "home";