From 57a54a1253c00c9e68e28734ab6a16bf86583f2b Mon Sep 17 00:00:00 2001 From: Nicolas Murua Date: Thu, 23 Apr 2026 22:11:43 -0300 Subject: [PATCH 1/2] =?UTF-8?q?Se=20borro=20una=20lista,=20se=20a=C3=B1adi?= =?UTF-8?q?o=20una=20lista,=20se=20modifico=20una=20lista?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 100 +++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 4 +-- 2 files changed, 102 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..699f439 --- /dev/null +++ b/.gitignore @@ -0,0 +1,100 @@ +# ========================= +# OS / SYSTEM FILES +# ========================= +.DS_Store +Thumbs.db +desktop.ini + +# ========================= +# EDITORS / IDEs +# ========================= +.vscode/ +.idea/ +*.code-workspace + +# Visual Studio +.vs/ +*.vcxproj.user +*.suo +*.user +*.userosscache +*.sln.docstates + +# ========================= +# BUILD / BINARIES +# ========================= +bin/ +build/ +dist/ +out/ +Debug/ +Release/ + +*.exe +*.dll +*.so +*.dylib +*.o +*.obj +*.a +*.lib + +# ========================= +# LOGS +# ========================= +*.log + +# ========================= +# TEMP FILES +# ========================= +*.tmp +*.temp +*.cache + +# ========================= +# ENV / SECRETS +# ========================= +.env +.env.* +*.key +*.pem + +# ========================= +# PYTHON +# ========================= +__pycache__/ +*.pyc +*.pyo +*.pyd +venv/ +.env/ + +# ========================= +# NODE (por si usás algo web) +# ========================= +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# ========================= +# CMAKE / C++ +# ========================= +CMakeFiles/ +CMakeCache.txt +cmake-build-*/ + +# ========================= +# UNREAL ENGINE (IMPORTANTE) +# ========================= +Binaries/ +DerivedDataCache/ +Intermediate/ +Saved/ + +# ========================= +# MISC +# ========================= +*.zip +*.rar +*.7z \ No newline at end of file diff --git a/index.html b/index.html index 6de662b..177130b 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,6 @@ @@ -25,7 +24,7 @@

Comidas favoritas

@@ -36,6 +35,7 @@
  • Leer
  • Programar
  • Escuchar música
  • +
  • Jugar videojuegos
  • -- 2.49.1 From 29bba1dbc81da2f33142efe6f18ebfb5f852df99 Mon Sep 17 00:00:00 2001 From: Nicolas Murua Date: Thu, 23 Apr 2026 22:14:45 -0300 Subject: [PATCH 2/2] Se cambio color de card --- estilo.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/estilo.css b/estilo.css index 01d2854..d2ab688 100644 --- a/estilo.css +++ b/estilo.css @@ -21,7 +21,7 @@ header { } .card { - background-color: white; + background-color: red; border-radius: 10px; padding: 20px; width: 300px; -- 2.49.1