49 lines
752 B
CSS
49 lines
752 B
CSS
/* Estilos del contenedor para centrar los botones */
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* Estilos del contenedor de cada botón y texto */
|
|
.button-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
/* Estilos del texto debajo de los botones */
|
|
span{
|
|
margin: 0;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Media query para hacer los botones responsive */
|
|
@media (max-width: 900px) {
|
|
button {
|
|
height: 120px;
|
|
width: 120px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
button {
|
|
height: 90px;
|
|
width: 90px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
button {
|
|
height: 70px;
|
|
width: 70px;
|
|
}
|
|
|
|
span{
|
|
font-size: 14px;
|
|
}
|
|
}
|