Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 4: Line 4:
}
}


/* Estilo para títulos y subtítulos dentro de los artículos */
/* Estilo para H2 y H3 en Newsreader con negrita fuerte */
.mw-headline {
h2, h3 {
     font-family: "Newsreader", serif;
     font-family: "Newsreader", serif;
     font-weight: 400;
    font-weight: 800; /* Negrita fuerte */
}
 
/* Estilo para H4 en Commissioner */
h4 {
    font-family: "Commissioner", sans-serif;
     font-weight: 400; /* Regular, ajustable si prefieres una negrita más suave */
}
}


Line 13: Line 19:
.mw-body-content {
.mw-body-content {
     font-family: "Crimson Text", serif;
     font-family: "Crimson Text", serif;
    color: #ffffff;
}
}


Line 35: Line 40:
     text-decoration-color: #f5ed56;
     text-decoration-color: #f5ed56;
}
}
<link href="https://fonts.googleapis.com/css2?family=Garamond&family=Newsreader:ital,wght@0,400;1,400&family=Crimson+Text&family=Commissioner:wght@200&display=swap" rel="stylesheet">


/* Estilo para el subrayado del texto seleccionado */
/* Estilo para el subrayado del texto seleccionado */

Revision as of 00:50, 6 November 2024

/* Estilo para el título principal de los artículos */
#firstHeading {
    font-family: "Garamond", serif;
}

/* Estilo para H2 y H3 en Newsreader con negrita fuerte */
h2, h3 {
    font-family: "Newsreader", serif;
    font-weight: 800; /* Negrita fuerte */
}

/* Estilo para H4 en Commissioner */
h4 {
    font-family: "Commissioner", sans-serif;
    font-weight: 400; /* Regular, ajustable si prefieres una negrita más suave */
}

/* Estilo para el texto normal de los artículos */
.mw-body-content {
    font-family: "Crimson Text", serif;
}

/* Estilo para el pie de página */
#footer, .mw-footer {
    color: #ffffff;
    background-color: #1c1c1c;
    font-family: "Commissioner", sans-serif;
    font-weight: 200;
}

/* Estilo para enlaces: mismo color que el texto normal con subrayado en color #f5ed56 */
a, a:link, a:visited {
    color: inherit; /* El enlace mantiene el mismo color que el texto común */
    text-decoration: underline;
    text-decoration-color: #f5ed56; /* Subrayado en color #f5ed56 */
}

/* Cambia el color del subrayado de enlaces al pasar el cursor */
a:hover {
    text-decoration-color: #f5ed56;
}

/* Estilo para el subrayado del texto seleccionado */
::selection {
    background-color: #f5ed56; /* Fondo amarillo al seleccionar texto */
    color: #1c1c1c; /* Color del texto seleccionado (opcional, puedes ajustarlo según el diseño) */
}