62 lines
1.3 KiB
CSS
62 lines
1.3 KiB
CSS
.form-header{
|
|
width: 100% !important;
|
|
& img {
|
|
width: 100px;
|
|
height: auto !important;
|
|
animation: rotacion 10s linear infinite;
|
|
transform-origin: center center; /* Asegura que gire desde el centro */
|
|
display: inline-block; /* Para mejor comportamiento en algunos navegadores */
|
|
}
|
|
}
|
|
|
|
@keyframes rotacion {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
|
|
/* Smartphones (hasta 767px) */
|
|
@media (max-width: 767px) {
|
|
/* main{ background-color: black; } */
|
|
main {
|
|
min-height: 80vh;
|
|
}
|
|
}
|
|
|
|
/* Tablets (768px - 1023px) */
|
|
@media (min-width: 768px) and (max-width: 1023px) {
|
|
/* main{ background-color: pink; } */
|
|
main {
|
|
min-height: 80vh;
|
|
}
|
|
}
|
|
|
|
/* Laptops (1024px - 1439px) monitores resulición baja */
|
|
@media (min-width: 1024px) and (max-width: 1439px) {
|
|
/* main{ background-color: purple; } */
|
|
main {
|
|
min-height: 80vh;
|
|
}
|
|
|
|
}
|
|
|
|
/* PCs de escritorio (1440px - 1919px) macbook */
|
|
@media (min-width: 1440px) and (max-width: 1919px) {
|
|
/* main{ background-color: greenyellow; } */
|
|
main {
|
|
min-height: 80vh;
|
|
}
|
|
}
|
|
|
|
/* Pantallas Ultrawide (1920px en adelante) */
|
|
@media (min-width: 1920px) {
|
|
/* main{ background-color: red; } */
|
|
main {
|
|
min-height: 80vh;
|
|
}
|
|
}
|