From 71cc5dee85859c6a0ee29a86aaa5af227afb9475 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Tue, 11 Jul 2023 21:11:37 +0200 Subject: [PATCH] split style --- core.css | 31 +++++++++++++++++++++++++++++++ style.css => index.css | 32 -------------------------------- index.html | 3 ++- 3 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 core.css rename style.css => index.css (78%) diff --git a/core.css b/core.css new file mode 100644 index 0000000..f09355b --- /dev/null +++ b/core.css @@ -0,0 +1,31 @@ +@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap"); + +:root { + --background-color: #002992; + --background-color-no-focus: #abbbdf; + --color: white; +} + +* { + border-radius: 0.5rem; +} + +body { + font-size: 28px; + font-family: "Noto Serif", serif; + margin: 0; +} + +header { + text-align: center; + color: var(--background-color); +} + +main { + display: flex; + flex-direction: column; + justify-content: center; + gap: 0; + margin: 1rem 1rem 0; + color: var(--color); +} diff --git a/style.css b/index.css similarity index 78% rename from style.css rename to index.css index 9696c76..eb10d87 100644 --- a/style.css +++ b/index.css @@ -1,35 +1,3 @@ -@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap"); - -:root { - --background-color: #002992; - --background-color-no-focus: #abbbdf; - --color: white; -} - -* { - border-radius: 0.5rem; -} - -body { - font-size: 28px; - font-family: "Noto Serif", serif; - margin: 0; -} - -header { - text-align: center; - color: var(--background-color); -} - -main { - display: flex; - flex-direction: column; - justify-content: center; - gap: 0; - margin: 1rem 1rem 0; - color: var(--color); -} - ul { padding-left: 0; margin: 0; diff --git a/index.html b/index.html index dd431db..752fbb4 100644 --- a/index.html +++ b/index.html @@ -10,7 +10,8 @@ My understanding of the Thinking People System and how it can help people and organization to improve" /> - + +