From 95fb5190949f454f8be5b50c863a686cbecc94ed Mon Sep 17 00:00:00 2001 From: Maxence LANONE Date: Tue, 11 Oct 2022 07:19:09 +0000 Subject: [PATCH] =?UTF-8?q?Transf=C3=A9rer=20les=20fichiers=20vers=20'src/?= =?UTF-8?q?styles'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/index.scss | 1 + src/styles/settings.scss | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 src/styles/index.scss create mode 100644 src/styles/settings.scss diff --git a/src/styles/index.scss b/src/styles/index.scss new file mode 100644 index 0000000..a38598e --- /dev/null +++ b/src/styles/index.scss @@ -0,0 +1 @@ +@import "./settings.scss"; \ No newline at end of file diff --git a/src/styles/settings.scss b/src/styles/settings.scss new file mode 100644 index 0000000..543e569 --- /dev/null +++ b/src/styles/settings.scss @@ -0,0 +1,29 @@ + +$font-1: sans-serif; + +$color-1: #61dafb; +$color-2: salmon; +$color-3: #282c34; +$white: rgb(243, 243, 243); + +@mixin verticalCenter { + display: flex; + justify-content: center; + align-items: center; +} + +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +body { + background: $white; + font-family: $font-1; + // @include verticalCenter; +} + +li { + list-style-type: none; +} \ No newline at end of file