From 8009da602986853a80b874f0d13ae87bb9e20d39 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Sun, 2 Nov 2025 12:01:50 +0100 Subject: checkpoint --- .gitignore | 1 + index.tmpl.html | 294 ++++++++++++++++++++++++++++++++++++++++-------------- main.go | 301 +++++++++++++++++++++++++++++++++++++++++++++----------- 3 files changed, 468 insertions(+), 128 deletions(-) diff --git a/.gitignore b/.gitignore index a9a5aec..0ca623a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ tmp +people.gob diff --git a/index.tmpl.html b/index.tmpl.html index 43e51c4..25b7186 100644 --- a/index.tmpl.html +++ b/index.tmpl.html @@ -1,5 +1,5 @@ - + @@ -18,16 +18,15 @@ h1 { } button { - font-size: 1em; + font-size: 1rem; } -#buttons { - margin: 1.5em; +.buttons { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; - gap: 1em; + gap: 1rem; } body { @@ -37,106 +36,255 @@ body { height: 50vh; } -span#name { - color: blue; +span.name { + color: #87bfcf; } +textarea { + display: block !important; +} + +.fade { + animation: fadeOut 1s forwards; /* Duration and direction of the animation */ +} + +@keyframes fadeOut { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +}