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 🐢 + +
+
- 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; - } - } -}; -