From ff2c52eb856a05f483bec8bc3fe65224131f09ed Mon Sep 17 00:00:00 2001 From: frajuar <franciscojavier.juarez@estudiantes.uva.es> Date: Sun, 15 Dec 2024 17:49:54 +0100 Subject: [PATCH] nombre --- css/estilo.css | 10 +++++++++- index.html | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/css/estilo.css b/css/estilo.css index e283499..ce3f981 100644 --- a/css/estilo.css +++ b/css/estilo.css @@ -36,12 +36,20 @@ body { } #textoFuente { position: absolute; - bottom: 0; + bottom: 15px; left: 0; font-family: Arial, sans-serif; font-size: medium; margin: 5px; /* Ajusta el margen según sea necesario */ } +#nombre { + position: absolute; + bottom: 0; + left: 0; + font-family: Arial, sans-serif; + font-size: small; + margin: 5px; /* Ajusta el margen según sea necesario */ +} /* Contenedor inferior */ #grafico { flex: 0.9; /* Ocupa el tercio restante de la pantalla */ diff --git a/index.html b/index.html index 8b5d09f..2d35f8e 100644 --- a/index.html +++ b/index.html @@ -13,6 +13,7 @@ </div> <div id="map"> <div id="yearSelectorContainer"></div> + <p id="nombre">Autor: Francisco Javier Juárez Gutiérrez</p> <p id="textoFuente"> Fuente: <a href="https://www.kaggle.com/datasets/zgrcemta/world-gdpgdp-gdp-per-capita-and-annual-growths">World GDP</a> </p> </div> <div id="grafico"></div> -- GitLab