Compare commits
3 Commits
main
...
f8d70fa0c4
| Author | SHA1 | Date | |
|---|---|---|---|
| f8d70fa0c4 | |||
| 723e4293ff | |||
| fb513275d0 |
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
@@ -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
|
||||
@@ -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%;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -17,7 +17,7 @@
|
||||
<ul>
|
||||
<li>Fútbol</li>
|
||||
<li>Básquet</li>
|
||||
<li>Natación</li>
|
||||
<li>Jockey</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
<div class="card">
|
||||
<h2>Pasatiempos favoritos</h2>
|
||||
<ul>
|
||||
<li>Leer</li>
|
||||
<li>Programar</li>
|
||||
<li>Futbol</li>
|
||||
<li>Videojuegos</li>
|
||||
<li>Escuchar música</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user