Compare commits
3 Commits
main
...
737a32d28b
| Author | SHA1 | Date | |
|---|---|---|---|
| 737a32d28b | |||
| 243d454689 | |||
| 7b4d5af39b |
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@@ -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/
|
||||
@@ -21,7 +21,7 @@ header {
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: white;
|
||||
background-color: red;
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
width: 300px;
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
<div class="card">
|
||||
<h2>Deportes favoritos</h2>
|
||||
<ul>
|
||||
<li>Fútbol</li>
|
||||
<li>Básquet</li>
|
||||
<li>Natación</li>
|
||||
</ul>
|
||||
@@ -27,6 +26,7 @@
|
||||
<li>Pizza</li>
|
||||
<li>Asado</li>
|
||||
<li>Empanadas</li>
|
||||
<li>Milanesas</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
<ul>
|
||||
<li>Leer</li>
|
||||
<li>Programar</li>
|
||||
<li>Escuchar música</li>
|
||||
<li>Escuchar música con auriculares</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user