From fb513275d046156094ebb326996a6ecae79e044a Mon Sep 17 00:00:00 2001 From: Nery Benincasa <42608796@terciariourquiza.edu.ar> Date: Thu, 23 Apr 2026 23:01:39 -0300 Subject: [PATCH 1/3] Agrego .gitignore --- .gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5cce09 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Dependencias +node_modules/ +/vendor + +# Configuraciones locales y secretos +.env +.env.local +.vscode/ +.idea/ + +# Archivos de sistema +.DS_Store +Thumbs.db + +# Logs y bases de datos +*.log +*.sqlite -- 2.49.1 From 723e4293fff65fedd03ba2380c3f549b62d0f55a Mon Sep 17 00:00:00 2001 From: Nery Benincasa <42608796@terciariourquiza.edu.ar> Date: Thu, 23 Apr 2026 23:04:35 -0300 Subject: [PATCH 2/3] Nuevo cambios index --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 6de662b..47662b7 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@ @@ -33,8 +33,8 @@

Pasatiempos favoritos

-- 2.49.1 From f8d70fa0c4827df78742eb2ed8ffcc3cc449cb85 Mon Sep 17 00:00:00 2001 From: Nery Benincasa <42608796@terciariourquiza.edu.ar> Date: Thu, 23 Apr 2026 23:05:59 -0300 Subject: [PATCH 3/3] Cambios colores CSS --- estilo.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/estilo.css b/estilo.css index 01d2854..d370475 100644 --- a/estilo.css +++ b/estilo.css @@ -6,7 +6,7 @@ body { } header { - background-color: #2c3e50; + background-color: #020507; color: white; padding: 20px; text-align: center; @@ -21,11 +21,11 @@ header { } .card { - background-color: white; + background-color: rgba(255, 14, 14, 0.664); border-radius: 10px; padding: 20px; width: 300px; - box-shadow: 0 4px 8px rgba(0,0,0,0.1); + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } h2 { @@ -45,5 +45,4 @@ li { .card { width: 100%; } -} - +} \ No newline at end of file -- 2.49.1