forked from marquez.juan/ejercicio-forks-ramas-pr
Compare commits
2 Commits
main
...
Nicolas-Mu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
29bba1dbc8 | ||
|
|
57a54a1253 |
100
.gitignore
vendored
Normal file
100
.gitignore
vendored
Normal file
@@ -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
|
||||||
@@ -21,7 +21,7 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
background-color: white;
|
background-color: red;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
width: 300px;
|
width: 300px;
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>Fútbol</li>
|
<li>Fútbol</li>
|
||||||
<li>Básquet</li>
|
<li>Básquet</li>
|
||||||
<li>Natación</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -25,7 +24,7 @@
|
|||||||
<h2>Comidas favoritas</h2>
|
<h2>Comidas favoritas</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Pizza</li>
|
<li>Pizza</li>
|
||||||
<li>Asado</li>
|
<li>Milansesa</li>
|
||||||
<li>Empanadas</li>
|
<li>Empanadas</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -36,6 +35,7 @@
|
|||||||
<li>Leer</li>
|
<li>Leer</li>
|
||||||
<li>Programar</li>
|
<li>Programar</li>
|
||||||
<li>Escuchar música</li>
|
<li>Escuchar música</li>
|
||||||
|
<li>Jugar videojuegos</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user