From 4ddc3e82def5188a72760407b6ad9091b9d09af1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Am=C3=A9lia=20Coutard-Sander?= Date: Wed, 7 Jan 2026 15:34:55 +0100 Subject: [PATCH] Site web basique --- f4mnq/index.html | 19 +++++++++++++++---- f4mnq/style.css | 25 +++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 4 deletions(-) diff --git a/f4mnq/index.html b/f4mnq/index.html index d8acdb8..76caabb 100644 --- a/f4mnq/index.html +++ b/f4mnq/index.html @@ -1,12 +1,23 @@ + -
- Some future content. -
- +
+

Bonjour ! Ici Amélia Coutard-Sander, aka F4MNQ, une étudiante (et + future chercheuse si tout se passe bien) en informatique.

+ +

Vous pouvez trouver certains de mes projets dans les dépôts git + ci-joints.

+ +

Il est possible de me contacter par mail à l'adresse + "contact AROBASE <le domaine de ce site> (f4[···].fr)".

+ +

En bas de cette page est un webring avec mes ami·e·s et mes + camarades d'informatique.

+
+ diff --git a/f4mnq/style.css b/f4mnq/style.css index 2eafbd4..ef8a26e 100644 --- a/f4mnq/style.css +++ b/f4mnq/style.css @@ -1,3 +1,28 @@ +@media (prefers-color-scheme: light) { +body { + background-color: #ffc; + color: #000; +} +a { + color: #099; +} +a:visited { + color: #c3c; +} +} +@media (prefers-color-scheme: dark) { +body { + background-color: #003; + color: #fff; +} +a { + color: #ff9; +} +a:visited { + color: #f99; +} +} + #content { min-height: calc(100vh - 120px); } -- 2.51.0