diff --git a/css/estilo.css b/css/estilo.css index e2834995eed6795d98c9723fc51dac68ce3d71bf..ce3f981ea09c49913603937b23f10686d01e1565 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 8b5d09f74619b746afc5a18d5fcada1edc14736c..2d35f8e7753e4f10f13264ef0d968c3925979eea 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>