51 lines
961 B
CSS
51 lines
961 B
CSS
body {
|
|
font-family: "Roboto", sans-serif !important;
|
|
}
|
|
|
|
main{
|
|
display: grid;
|
|
margin: auto;
|
|
margin-top: 2em;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
|
|
/* Smartphones (hasta 767px) */
|
|
@media (max-width: 767px) {
|
|
/* body{ background-color: black; } */
|
|
main {
|
|
width: 98vw !important;
|
|
}
|
|
}
|
|
|
|
/* Tablets (768px - 1023px) */
|
|
@media (min-width: 768px) and (max-width: 1023px) {
|
|
/* body{ background-color: pink; } */
|
|
main {
|
|
width: 96vw !important;
|
|
}
|
|
}
|
|
|
|
/* Laptops (1024px - 1439px) baja resolución */
|
|
@media (min-width: 1024px) and (max-width: 1439px) {
|
|
/* body{ background-color: purple; } */
|
|
main {
|
|
width: 95vw !important;
|
|
}
|
|
}
|
|
|
|
/* PCs de escritorio (1440px - 1919px) macbook */
|
|
@media (min-width: 1440px) and (max-width: 1919px) {
|
|
main{
|
|
width: 90vw !important;
|
|
}
|
|
}
|
|
|
|
/* Pantallas Ultrawide (1920px en adelante) */
|
|
@media (min-width: 1920px) {
|
|
main {
|
|
width: 80vw !important;
|
|
}
|
|
}
|
|
|