From b6f5a19355c38dd6b5027c476d2a92ed9dc9ae66 Mon Sep 17 00:00:00 2001 From: Agustin Lautaro Moneta <46840139@terciariourquiza.edu.ar> Date: Thu, 7 May 2026 21:42:14 -0300 Subject: [PATCH 1/3] Se agrego el .gitignore --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..560dd6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +__pycache__/ +*.pyc +*.pyo + +venv/ +.venv/ +env/ + +.env + +.DS_Store # macOS +Thumbs.db # Windows + +node_modules/ \ No newline at end of file -- 2.49.1 From 36445d0259609efeed779592b1e9363bdfb10af2 Mon Sep 17 00:00:00 2001 From: Agustin Lautaro Moneta <46840139@terciariourquiza.edu.ar> Date: Thu, 7 May 2026 21:53:26 -0300 Subject: [PATCH 2/3] Se hicieron cambios en el archivo HTML --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 6de662b..494ff79 100644 --- a/index.html +++ b/index.html @@ -13,29 +13,29 @@
-

Deportes favoritos

+

Deportes favoritos

-

Comidas favoritas

+

Comidas favoritas

-

Pasatiempos favoritos

+

Pasatiempos favoritos

-- 2.49.1 From a45a8fae19a0a9f65df2edf9cac4851009e43044 Mon Sep 17 00:00:00 2001 From: Agustin Lautaro Moneta <46840139@terciariourquiza.edu.ar> Date: Thu, 7 May 2026 22:02:28 -0300 Subject: [PATCH 3/3] Se hicieron cambios en estilo.css --- estilo.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/estilo.css b/estilo.css index 01d2854..05bf368 100644 --- a/estilo.css +++ b/estilo.css @@ -6,8 +6,8 @@ body { } header { - background-color: #2c3e50; - color: white; + background-color: #b40606; + color: rgb(0, 0, 0); padding: 20px; text-align: center; } @@ -30,7 +30,7 @@ header { h2 { margin-top: 0; - color: #2c3e50; + color: #b40606; } ul { -- 2.49.1