From 274a53538d0b95408d236a7e259db96dde7e4dcf Mon Sep 17 00:00:00 2001
From: Geronimo Hidalgo <45217034@terciariourquiza.edu.ar>
Date: Tue, 19 May 2026 17:09:49 -0300
Subject: [PATCH 1/3] Agregue el git ignore
---
.gitignore | 19 +++++++++++++++++++
index.html | 4 ++--
2 files changed, 21 insertions(+), 2 deletions(-)
create mode 100644 .gitignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..75c8213
--- /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/
diff --git a/index.html b/index.html
index 6de662b..ca50fe0 100644
--- a/index.html
+++ b/index.html
@@ -15,7 +15,6 @@
Deportes favoritos
- - Fútbol
- Básquet
- Natación
@@ -26,7 +25,7 @@
- Pizza
- Asado
- - Empanadas
+ - Tacos
@@ -36,6 +35,7 @@
Leer
Programar
Escuchar música
+ Jugar Videojuegos
--
2.49.1
From 6579848983e91624cf60319ba23f0608277fb879 Mon Sep 17 00:00:00 2001
From: Geronimo Hidalgo <45217034@terciariourquiza.edu.ar>
Date: Tue, 19 May 2026 17:16:26 -0300
Subject: [PATCH 2/3] Agregue,modifique y borre Items de listas
---
index.html | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/index.html b/index.html
index ca50fe0..dd6a362 100644
--- a/index.html
+++ b/index.html
@@ -16,14 +16,14 @@
Deportes favoritos
- Básquet
- - Natación
+ - Baseball
Comidas favoritas
- - Pizza
+ - Pescado
- Asado
- Tacos
@@ -36,6 +36,7 @@
Programar
Escuchar música
Jugar Videojuegos
+ Pelear con Blas
--
2.49.1
From ab7d99a177f243b6b84dc7e6a216461cf63e06e6 Mon Sep 17 00:00:00 2001
From: Geronimo Hidalgo <45217034@terciariourquiza.edu.ar>
Date: Tue, 19 May 2026 17:19:19 -0300
Subject: [PATCH 3/3] Modifique el estilo del ccs
---
estilo.css | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/estilo.css b/estilo.css
index 01d2854..260cb0f 100644
--- a/estilo.css
+++ b/estilo.css
@@ -7,7 +7,7 @@ body {
header {
background-color: #2c3e50;
- color: white;
+ color: rgb(255, 255, 255);
padding: 20px;
text-align: center;
}
@@ -21,7 +21,7 @@ header {
}
.card {
- background-color: white;
+ background-color: rgb(135, 10, 10);
border-radius: 10px;
padding: 20px;
width: 300px;
@@ -38,7 +38,7 @@ ul {
}
li {
- margin-bottom: 8px;
+ margin-bottom: 10px;
}
@media (max-width: 600px) {
--
2.49.1