Jump to content

Diferencia entre revisiones de «MediaWiki:Timeless.css»

Página creada con «All CSS here will be loaded for users of the Timeless skin: #mw-header #p-logo a { background-image: url("/resources/assets/logo3.svg"); background-repeat: no-repeat; background-size: contain; width: 135px; ajusta según quieras: height: 135px; ajusta según quieras: } #mw-header #p-logo img { display: none; ocultar imagen directa si molestara:
 
Sin resumen de edición
 
(No se muestran 27 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
/* All CSS here will be loaded for users of the Timeless skin */
#mw-header #p-logo img {
#mw-header #p-logo a {
    max-width: 135px;
     background-image: url("/resources/assets/logo3.svg");
    max-height: 135px;
     background-repeat: no-repeat;
}
     background-size: contain;
@font-face {
     width: 135px;  /* ajusta según quieras */
     font-family: 'EspinosaNova';
     height: 135px;  /* ajusta según quieras */
    src: url("/resources/fonts/EspinosaNovaPro-Regular.woff2") format("woff2"),
        url("/resources/fonts/EspinosaNovaPro-Regular.woff") format("woff");
     font-weight: normal;
    font-style: normal;
}
/* Aplicar Espinosa Nova a todo el contenido principal */
body,
.mw-body,
.mw-body-content {
     font-family: 'EspinosaNova', serif;
     font-size: 18px;  /* prueba 18px; si quieres más, 19px o 20px */
     line-height: 1.6;  /* mejora la legibilidad */
}
.portada-cabecera-menu a {
    display: inline-block;
    margin-left: 0.4em;
    padding: 0.2em 0.8em;
    border-radius: 999px;              /* borde redondeado tipo píldora */
    border: 1px solid #af972d;
    background-color: #ffffff;
    color: #af972d !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
}
#mw-header #p-logo img {
.portada-cabecera-menu a:first-child {
     display: none; /* ocultar imagen directa si molestara */
     margin-left: 0; /* que el primero no tenga margen a la izquierda */
}
.portada-cabecera-menu a:hover {
    background-color: #af972d;
    color: #ffffff !important;
}
}

Revisión actual - 00:53 11 dic 2025

#mw-header #p-logo img {
    max-width: 135px;
    max-height: 135px;
}
@font-face {
    font-family: 'EspinosaNova';
    src: url("/resources/fonts/EspinosaNovaPro-Regular.woff2") format("woff2"),
         url("/resources/fonts/EspinosaNovaPro-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
/* Aplicar Espinosa Nova a todo el contenido principal */
body,
.mw-body,
.mw-body-content {
    font-family: 'EspinosaNova', serif;
    font-size: 18px;   /* prueba 18px; si quieres más, 19px o 20px */
    line-height: 1.6;  /* mejora la legibilidad */
}
.portada-cabecera-menu a {
    display: inline-block;
    margin-left: 0.4em;
    padding: 0.2em 0.8em;
    border-radius: 999px;              /* borde redondeado tipo píldora */
    border: 1px solid #af972d;
    background-color: #ffffff;
    color: #af972d !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.portada-cabecera-menu a:first-child {
    margin-left: 0; /* que el primero no tenga margen a la izquierda */
}
.portada-cabecera-menu a:hover {
    background-color: #af972d;
    color: #ffffff !important;
}