From 6bb464040a4c2523e9e0b8ddd1429bce7e55facc Mon Sep 17 00:00:00 2001 From: DevMate-Jar Date: Thu, 23 Apr 2026 22:13:42 -0300 Subject: [PATCH 1/3] Add .gitignore --- .gitignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73a4380 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Archivos del sistema +.DS_Store +Thumbs.db + +# Configuración de editores +.vscode/ +.idea/ + +# Logs +*.log + +# Archivos temporales +*.tmp +*.temp + +# Archivos de entorno +.env + +# Cache +.cache/ \ No newline at end of file -- 2.49.1 From 9b4e3b7201c124928cb5370dd8d77c8d9a7eaad7 Mon Sep 17 00:00:00 2001 From: DevMate-Jar Date: Thu, 23 Apr 2026 22:23:09 -0300 Subject: [PATCH 2/3] New items --- pagina.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pagina.html diff --git a/pagina.html b/pagina.html new file mode 100644 index 0000000..6796b8a --- /dev/null +++ b/pagina.html @@ -0,0 +1,43 @@ + + + + + + Mis Preferencias + + + +
+

Mis preferencias personales

+
+ +
+
+

Deportes favoritos

+
    +
  • Básquet
  • +
  • Natación
  • +
+
+ +
+

Comidas favoritas

+
    +
  • Pizza
  • +
  • Hamburguesa
  • +
  • Empanadas
  • +
+
+ +
+

Pasatiempos favoritos

+
    +
  • Jugar jueguitos
  • +
  • Leer
  • +
  • Programar
  • +
  • Escuchar música
  • +
+
+
+ + -- 2.49.1 From 8a58e24f9902ba8ceb7d896e157f50261cfa9b70 Mon Sep 17 00:00:00 2001 From: DevMate-Jar Date: Thu, 23 Apr 2026 22:23:35 -0300 Subject: [PATCH 3/3] Change color card --- style.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..5f519f5 --- /dev/null +++ b/style.css @@ -0,0 +1,49 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + background-color: #f4f6f8; + color: #333; +} + +header { + background-color: #2c3e50; + color: white; + padding: 20px; + text-align: center; +} + +.container { + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 20px; + padding: 20px; +} + +.card { + background-color: rgb(243, 165, 165); + border-radius: 10px; + padding: 20px; + width: 300px; + box-shadow: 0 4px 8px rgba(0,0,0,0.1); +} + +h2 { + margin-top: 0; + color: #2c3e50; +} + +ul { + padding-left: 20px; +} + +li { + margin-bottom: 8px; +} + +@media (max-width: 600px) { + .card { + width: 100%; + } +} + -- 2.49.1