From ca5d2f5caad688cc9aaa69cc402c166df14cc720 Mon Sep 17 00:00:00 2001 From: Juanse Marquez Date: Thu, 23 Apr 2026 22:04:23 -0300 Subject: [PATCH 1/3] Agrega archivo .gitignore --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2855fd9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Python +__pycache__/ +*.pyc +*.pyo + +# Entorno virtual de Python +venv/ +.venv/ +env/ + +# Variables de entorno y configuración sensible +.env + +# Sistemas operativos +.DS_Store # macOS +Thumbs.db # Windows + +# Node.js (por si se utiliza npm en algún momento) +node_modules/ \ No newline at end of file -- 2.49.1 From c3070d1a2feaf34fcf6eda16b690c9ca497ea41a Mon Sep 17 00:00:00 2001 From: Juanse Marquez Date: Thu, 23 Apr 2026 22:09:37 -0300 Subject: [PATCH 2/3] Cambios en las listas --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 6de662b..3cfce25 100644 --- a/index.html +++ b/index.html @@ -16,7 +16,6 @@

Deportes favoritos

@@ -27,6 +26,7 @@
  • Pizza
  • Asado
  • Empanadas
  • +
  • Fideos
  • @@ -35,7 +35,7 @@ -- 2.49.1 From c55e9618281aab7ee29f133d3a665563416d8dcf Mon Sep 17 00:00:00 2001 From: Juanse Marquez Date: Thu, 23 Apr 2026 22:15:13 -0300 Subject: [PATCH 3/3] Cambia el color de fondo de las listas --- estilo.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/estilo.css b/estilo.css index 01d2854..113c323 100644 --- a/estilo.css +++ b/estilo.css @@ -21,7 +21,7 @@ header { } .card { - background-color: white; + background-color: rgb(181, 181, 27); border-radius: 10px; padding: 20px; width: 300px; -- 2.49.1