Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
 
(55 intermediate revisions by one other user not shown)
Line 1: Line 1:
    figure > a > img {
/* Responsive Hn */
        width: 100% !important
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
    }
 
    .site-header .wrap {
h1 {
        display: flex;
font-size: 7rem !important;
        flex-direction: column;
}
        align-items: center;
        background-color: #f6f6f6;
h2 {
        padding: 36px 0;
font-size: 5.2rem !important;
    }
}
    .site-header .title-area {
        width: 100%;
h3 {
        max-width: 100%; /* Elimina restricciones de ancho */
font-size: 4.8rem !important;
        text-align: center;
}
        margin-bottom: 20px;
    }
h4 {
    .site-header .site-title a {
font-size: 3.8rem !important;
        display: inline-block;
}
        width: 100%;
        min-height: 100px; /* Ajusta este valor según la altura real de tu logo */
h5 {
        background-size: contain !important; /* Asegura que el logo escale sin recortarse */
font-size: 4.0rem !important;
        background-position: center !important;
}
    }
    .site-header .title-area img {
h6 {
        width: auto;
font-size: 3.8rem !important;
        max-width: 250px;
}
        height: auto;
}
    }
    .site-header .header-widget-area {
        display: none;  
    }
    .menu-toggle {
        width: 100%;
        border: none;
        border-top: 5px solid #eeeeee;
        color: #444;
        font-weight: bold;
        padding: 15px 0;
        text-transform: none;
    }

Latest revision as of 20:54, 6 February 2026

/* Responsive Hn */
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  
	h1 {
		font-size: 7rem !important;
	}
	
	h2 {
		font-size: 5.2rem !important;
	}
	
	h3 {
		font-size: 4.8rem !important;
	}
	
	h4 {
		font-size: 3.8rem !important;
	}
	
	h5 {
		font-size: 4.0rem !important;
	}
	
	h6 {
		font-size: 3.8rem !important;
	}
}