generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
165 additions
and
113 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,6 @@ | |
"dependencies": { | ||
"axios": "^1.6.7", | ||
"cors": "^2.8.5", | ||
"express": "^4.18.2" | ||
"express": "^4.18.3" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* src/Estilos/home.css */ | ||
|
||
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); | ||
|
||
/* Estilizamos el título del juego */ | ||
.titulo { | ||
/* Cambiamos el color del texto a un tono de azul */ | ||
color: #efeff1; | ||
/* Aumentamos el tamaño de la fuente */ | ||
font-size: 10em; | ||
/* Añadimos un margen inferior para separar el título de los botones */ | ||
margin-bottom: 0.5em; | ||
font-family: 'Monaco', monospace; | ||
} | ||
|
||
/* Estilizamos el contenedor de los botones */ | ||
.button-container { | ||
/* Cambiamos la dirección de los elementos a columna para que los botones se apilen verticalmente */ | ||
display: flex; | ||
flex-direction: column; | ||
/* Añadimos un espacio entre los botones */ | ||
gap: 1em; | ||
} | ||
|
||
/* TODO: CORREGIR ESTA REGLA */ | ||
/* Estilizamos los botones */ | ||
.button { | ||
/* Aumentamos el tamaño de la fuente */ | ||
font-size: 3em; | ||
/* Añadimos padding para dar más espacio alrededor del texto del botón */ | ||
padding: 2em 4em; | ||
} | ||
|
||
#btJugar, #btEstadisticas{ | ||
/* Aumentamos el tamaño de la fuente */ | ||
font-size: 2em; | ||
font-weight: 400; | ||
/* Añadimos padding para dar más espacio alrededor del texto del botón */ | ||
padding: 1em 4em; | ||
font-family:'Trebuchet MS'; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.