From 92b6b6fea90638d1da944953875bec6d46179e3b Mon Sep 17 00:00:00 2001 From: Henri Saudubray Date: Fri, 24 May 2024 10:26:09 +0200 Subject: [PATCH] feat: webring de la tortue --- css/style.css | 11 +---------- index.html | 14 +++++++++++--- js/man.js | 15 --------------- 3 files changed, 12 insertions(+), 28 deletions(-) delete mode 100644 js/man.js diff --git a/css/style.css b/css/style.css index b82ca1f..3bc108b 100644 --- a/css/style.css +++ b/css/style.css @@ -30,15 +30,13 @@ header, footer { display: flex; justify-content: space-between; font-weight: bold; - margin-bottom: 1lh; } +header { margin-bottom: 1lh; } .section { margin-bottom: 1lh; } - .content { padding-left: 8ch; } .description { padding-left: 4ch; } - ul { list-style-type: ''; padding-left: 0; @@ -51,10 +49,3 @@ li { margin-bottom: 1lh; } font-weight: bold; text-transform: uppercase; } - -#message { - position: fixed; - bottom: 0; - background: var(--fg-color); - color: var(--bg-color); -} diff --git a/index.html b/index.html index 139fb14..ea8dddf 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,6 @@ Henri Saudubray -
@@ -97,7 +96,9 @@ >FGES - Université Catholique de Lille - September 2020 to May 2023 -
Licence Sciences du Numérique (SDN)
+
+ Licence Sciences du Numérique (SDN) +
@@ -137,12 +138,19 @@ +
+
Webring
+
+ + Webring de la tortue 🐢 + +
+
1.0.0 2024-05-06  HENRI(1)
- diff --git a/js/man.js b/js/man.js deleted file mode 100644 index f376657..0000000 --- a/js/man.js +++ /dev/null @@ -1,15 +0,0 @@ -window.onload = () => { - const msg = document.querySelector("#message"); - msg.innerHTML = "Manual page henri(1)"; - document.onkeydown = (e) => { - e = e || window.event; - switch (e.keyCode) { - case 74: - window.scrollBy(0, msg.clientHeight); break; - case 75: - window.scrollBy(0, -msg.clientHeight); break; - default: break; - } - } -}; -