forked from marquez.juan/ejercicio-forks-ramas-pr
Compare commits
3 Commits
main
...
ab7d99a177
| Author | SHA1 | Date | |
|---|---|---|---|
| ab7d99a177 | |||
| 6579848983 | |||
| 274a53538d |
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/
|
||||
@@ -7,7 +7,7 @@ body {
|
||||
|
||||
header {
|
||||
background-color: #2c3e50;
|
||||
color: white;
|
||||
color: rgb(255, 255, 255);
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -21,7 +21,7 @@ header {
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: white;
|
||||
background-color: rgb(135, 10, 10);
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
width: 300px;
|
||||
@@ -38,7 +38,7 @@ ul {
|
||||
}
|
||||
|
||||
li {
|
||||
margin-bottom: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
|
||||
@@ -15,18 +15,17 @@
|
||||
<div class="card">
|
||||
<h2>Deportes favoritos</h2>
|
||||
<ul>
|
||||
<li>Fútbol</li>
|
||||
<li>Básquet</li>
|
||||
<li>Natación</li>
|
||||
<li>Baseball</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h2>Comidas favoritas</h2>
|
||||
<ul>
|
||||
<li>Pizza</li>
|
||||
<li>Pescado</li>
|
||||
<li>Asado</li>
|
||||
<li>Empanadas</li>
|
||||
<li>Tacos</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -36,6 +35,8 @@
|
||||
<li>Leer</li>
|
||||
<li>Programar</li>
|
||||
<li>Escuchar música</li>
|
||||
<li>Jugar Videojuegos<li>
|
||||
<li>Pelear con Blas</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user