From 19cc0d903aa1982bee21767fa0024141c1e8fa1e Mon Sep 17 00:00:00 2001 From: ferngon <fernando.gonzalez.sanz@alumnos.uva.es> Date: Thu, 12 Dec 2024 20:02:43 +0000 Subject: [PATCH] Update 2 files - /main.css - /index.html --- index.html | 13 +++++++++++++ main.css | 22 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/index.html b/index.html index 4d3a985..896bb4e 100644 --- a/index.html +++ b/index.html @@ -86,5 +86,18 @@ // Cargar la pestaña inicial (xG 1) showTab(0); </script> + + <!-- Pie de Página --> + <footer> + <p> + Datos proporcionados por + <a href="https://www.kaggle.com/datasets/slehkyi/extended-football-stats-for-european-leagues-xg" + target="_blank" + rel="noopener noreferrer"> + Extended Football Stats for European Leagues (Kaggle) + </a>. + </p> + <p>Fernando González Sanz. 2024-25. Diseño y Evaluación de Sistemas Interactivos. UVa</p> + </footer> </body> </html> diff --git a/main.css b/main.css index df35dbb..3bf62c6 100644 --- a/main.css +++ b/main.css @@ -90,4 +90,26 @@ option { option:hover { background-color: #f1f1f1; /* Fondo gris claro al pasar el mouse */ +} + +footer { + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px; + border-top: 1px solid #ccc; + margin-top: 20px; +} + +footer a { + color: #007BFF; + text-decoration: none; +} + +footer a:hover { + text-decoration: underline; +} + +footer p { + margin: 0; } \ No newline at end of file -- GitLab