From e9e91c72650e7e7bd9501f103b28897b71c5454a Mon Sep 17 00:00:00 2001 From: Bocquel Raphael Date: Fri, 3 Jan 2025 16:06:28 +0100 Subject: [PATCH] =?UTF-8?q?r=C3=A9activation=20du=20scroll=20dans=20main?= =?UTF-8?q?=20et=20help?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- help.css | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ help.html | 2 +- main.css | 3 +-- 3 files changed, 75 insertions(+), 3 deletions(-) create mode 100644 help.css diff --git a/help.css b/help.css new file mode 100644 index 0000000..f08b740 --- /dev/null +++ b/help.css @@ -0,0 +1,73 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + background: linear-gradient(135deg, #007BFF, #00C6FF); + color: #007BFF; + display: flex; + justify-content: center; + align-items: center; + height: 180vh; + text-align: center; + /*overflow:hidden;*/ +} + + +.container { + text-align: center; + max-width: 650px; + padding: 20px; + background: #ffffff; + border-radius: 12px; + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); +} + + +header .logo { + width: 100px; + margin-bottom: 20px; +} + +header h1 { + font-size: 2rem; + color: #007BFF; + margin-bottom: 10px; +} + + +.welcome-image { + width: 80%; + max-width: 70px; + margin: 20px auto; + display: block; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); +} + + + +button { + padding: 15px 30px; + font-size: 18px; + font-weight: bold; + color: #ffffff; + background-color: #007BFF; + border: none; + border-radius: 8px; + text-transform: uppercase; + cursor: pointer; + /*transition: background-color 0.3s, transform 0.2s;*/ + +} + +button:hover { + background-color: #d3e017; + transform: scale(1.1); +} + + +footer { + margin-top: 20px; + font-size: 14px; + color: #888; +} diff --git a/help.html b/help.html index 6e1d021..e122498 100644 --- a/help.html +++ b/help.html @@ -4,7 +4,7 @@ Démineur - Help - + diff --git a/main.css b/main.css index ba261e8..95bbbd8 100644 --- a/main.css +++ b/main.css @@ -1,4 +1,3 @@ - body { font-family: Arial, sans-serif; margin: 0; @@ -10,7 +9,7 @@ body { align-items: center; height: 100vh; text-align: center; - overflow:hidden; + /*overflow:hidden;*/ }