From 1193c676bd28776a66c66b37d573f329492cd7ca Mon Sep 17 00:00:00 2001 From: Mathieu GROUSSEAU Date: Sun, 8 Jan 2023 11:59:34 +0100 Subject: [PATCH 1/7] Je sais pas trop quoi faire pour la nav --- styles/base.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles/base.css b/styles/base.css index 780af1d..c18b7f1 100644 --- a/styles/base.css +++ b/styles/base.css @@ -39,6 +39,14 @@ h6[titlenum]::before { font-weight: normal; } +nav { + display: inline-block; + padding-left: 1rem; + padding-right: 1rem; + border: thin solid black; + box-shadow: 0px 2px 5px black; +} + section {} section>h2, From 766bba42a809d064b921dce72914cf1204adb660 Mon Sep 17 00:00:00 2001 From: "mathis.moulin" Date: Sun, 8 Jan 2023 12:08:04 +0100 Subject: [PATCH 2/7] Ajout bg + shadow --- styles/base.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/styles/base.css b/styles/base.css index c18b7f1..903aab1 100644 --- a/styles/base.css +++ b/styles/base.css @@ -8,7 +8,9 @@ html { padding: 0; } -body {} +body { + background-color: rgb(216, 216, 216); +} h1, h2, @@ -47,6 +49,10 @@ nav { box-shadow: 0px 2px 5px black; } +table{ + box-shadow: 0px 2px 5px black; +} + section {} section>h2, From 95c00ac83600330af59ed2b08dce6b982c42c8d2 Mon Sep 17 00:00:00 2001 From: Mathieu GROUSSEAU Date: Sun, 8 Jan 2023 12:12:37 +0100 Subject: [PATCH 3/7] Ajout tag 'lang="fr"' --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2373c1c..b020d1f 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ - + From af1257ce496e2b2884300c0d21b8a0c56b129be9 Mon Sep 17 00:00:00 2001 From: Mathieu GROUSSEAU Date: Sun, 8 Jan 2023 12:12:57 +0100 Subject: [PATCH 4/7] =?UTF-8?q?Regle=20chang=C3=A9e=20de=20place?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles/base.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/styles/base.css b/styles/base.css index 903aab1..7ff4788 100644 --- a/styles/base.css +++ b/styles/base.css @@ -1,7 +1,5 @@ html, -body { - font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; -} +body {} html { margin: 0; @@ -9,6 +7,7 @@ html { } body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: rgb(216, 216, 216); } @@ -49,7 +48,7 @@ nav { box-shadow: 0px 2px 5px black; } -table{ +table { box-shadow: 0px 2px 5px black; } From 5108ee3b1b9176bfaef5a1166f9d5051cfa1c9b8 Mon Sep 17 00:00:00 2001 From: Mathieu GROUSSEAU Date: Sun, 8 Jan 2023 12:26:39 +0100 Subject: [PATCH 5/7] =?UTF-8?q?Revert=20"Regle=20chang=C3=A9e=20de=20place?= =?UTF-8?q?"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit af1257ce496e2b2884300c0d21b8a0c56b129be9. --- styles/base.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/styles/base.css b/styles/base.css index 7ff4788..903aab1 100644 --- a/styles/base.css +++ b/styles/base.css @@ -1,5 +1,7 @@ html, -body {} +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} html { margin: 0; @@ -7,7 +9,6 @@ html { } body { - font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: rgb(216, 216, 216); } @@ -48,7 +49,7 @@ nav { box-shadow: 0px 2px 5px black; } -table { +table{ box-shadow: 0px 2px 5px black; } From b060a6dd67ff52fe862649a641f057e15811d934 Mon Sep 17 00:00:00 2001 From: Mathieu GROUSSEAU Date: Sun, 8 Jan 2023 12:30:01 +0100 Subject: [PATCH 6/7] Couleurs du tableau --- styles/base.css | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/styles/base.css b/styles/base.css index 903aab1..9e30a2b 100644 --- a/styles/base.css +++ b/styles/base.css @@ -43,16 +43,12 @@ h6[titlenum]::before { nav { display: inline-block; - padding-left: 1rem; - padding-right: 1rem; + padding-left: 1em; + padding-right: 1em; border: thin solid black; box-shadow: 0px 2px 5px black; } -table{ - box-shadow: 0px 2px 5px black; -} - section {} section>h2, @@ -69,7 +65,9 @@ section div p { } #swot { + margin-top: 0.5em; border-collapse: collapse; + box-shadow: 0px 2px 5px black; } #swot th, @@ -79,6 +77,14 @@ section div p { border-width: thin; } +#swot th { + background-color: bisque; +} + +#swot td { + background-color: whitesmoke; +} + @media (min-width: 900px) { body { margin-left: auto; From b4921df1ef13f2744d20c69c08dfafe2e93342a4 Mon Sep 17 00:00:00 2001 From: Mathieu GROUSSEAU Date: Sun, 8 Jan 2023 12:33:00 +0100 Subject: [PATCH 7/7] couleur qui a disparu je sais pas comment --- styles/base.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles/base.css b/styles/base.css index 9e30a2b..9d1155f 100644 --- a/styles/base.css +++ b/styles/base.css @@ -47,6 +47,7 @@ nav { padding-right: 1em; border: thin solid black; box-shadow: 0px 2px 5px black; + background-color: whitesmoke; } section {}