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 1: Line 1:
/* Estilo general para enlaces */
@import url('https://fonts.googleapis.com/css2?family=Garamond:wght@400&family=Abhaya+Libre:wght@400;700&family=Crimson+Text:wght@400&family=Lora:wght@400&family=EB+Garamond:wght@400;600&display=swap');
a, a:link, a:visited {
    color: #ffffff; /* Blanco para enlaces sin interactuar */
    text-decoration: underline;
    text-decoration-color: #f5ed56; /* Subrayado amarillo */
    text-decoration-thickness: 2px; /* Subrayado ligeramente más grueso */
}
 
/* Estilo para los enlaces al pasar el cursor */
a:hover {
    color: #56aaff; /* Azul claro al pasar el cursor */
    text-decoration-color: #56aaff; /* Subrayado coincide con el color del texto */
}
 
/* Estilo para los bloques de cita */
blockquote {
    font-family: "EB Garamond", serif;
    font-size: 1.2em; /* Un poco más grande que el texto normal */
    font-style: normal; /* Sin cursiva por defecto */
    border-left: 4px solid #56aaff; /* Línea azul claro en el borde izquierdo */
    padding-left: 1em;
    margin-left: 0;
    color: #e3e6e4; /* Color del texto */
    background-color: #1c1c28; /* Fondo oscuro consistente */
    border-radius: 8px; /* Bordes suavizados */
}
 
/* 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 los títulos principales */
/* Título principal de los artículos */
#firstHeading {
#firstHeading {
     font-family: "Garamond", serif;
     font-family: "Garamond", serif;
     font-size: 2.5em; /* Tamaño más grande */
     font-size: 2.5em;
    color: #eaeaea; /* Blanco suave */
}
}


/* Estilo para todos los subtítulos en Abhaya Libre */
/* Subtítulos */
h2, h3, h4, h5 {
h2, h3, h4, h5 {
     font-family: "Abhaya Libre", serif;
     font-family: "Abhaya Libre", serif;
     font-weight: 700; /* Negrita para destacarlos */
     font-weight: 700;
    color: #eaeaea; /* Blanco suave */
}
}


/* Estilo para el texto normal de los artículos */
/* Texto normal */
.mw-body-content {
.mw-body-content {
     font-family: "Crimson Text", serif;
     font-family: "Crimson Text", serif;
     color: #e3e6e4;
     color: #eaeaea; /* Blanco suave */
    line-height: 1.8;
}
}


/* Estilo para Sub-Heading 4 en Commissioner con negrita */
/* Subheading específico */
h6 {
h6 {
     font-family: "Commissioner", sans-serif;
     font-family: "Commissioner", sans-serif;
     font-weight: 700; /* Negrita */
     font-weight: 700;
     font-size: 3em;
    font-size: 1.2em;
}
 
/* Pie de página */
#footer, .mw-footer {
    color: #eaeaea;
    background-color: #1a1a1a; /* Gris oscuro */
     font-family: "Commissioner", sans-serif;
    font-weight: 300;
}
}


/* Estilo para los enlaces: subrayado en color #f5ed56 */
/* Enlaces */
a, a:link, a:visited {
a, a:link, a:visited {
     color: inherit; /* El enlace mantiene el mismo color que el texto común */
     color: #eaeaea; /* Blanco suave, igual que el texto normal */
     text-decoration: underline;
     text-decoration: underline;
     text-decoration-color: #f5ed56; /* Subrayado en color #f5ed56 */
     text-decoration-thickness: 3px; /* Subrayado grueso */
    text-decoration-color: #f5ed56; /* Amarillo */
    transition: text-decoration-color 0.3s ease;
}
}


/* Cambia el color del subrayado de enlaces al pasar el cursor */
a:hover {
a:hover {
     text-decoration-color: #56aaff; /* Subrayado en azul claro */
     text-decoration-color: #eaeaea; /* Subrayado blanco al pasar el cursor */
}
}


/* Estilo para el subrayado del texto seleccionado */
/* Texto seleccionado */
::selection {
::selection {
     background-color: #f5ed56; /* Fondo amarillo al seleccionar texto */
     background-color: #f5ed56;
     color: #1c1c1c; /* Color del texto seleccionado */
     color: #1a1a1a; /* Gris oscuro */
}
}


/* Fondo del cuerpo de la página */
/* Fondo del sitio */
body {
body {
     background-color: #1c1c28;
     background-color: #f4f4f4; /* Fondo más claro para mayor contraste */
    color: #333333; /* Texto principal más oscuro */
}
}


/* Panel lateral de navegación */
/* Panel lateral */
#mw-panel {
#mw-panel {
     background-color: inherit;
     background-color: #eaeaea;
    border-right: 1px solid #cccccc; /* Límite claro y limpio */
}
 
/* Bloques de cita */
blockquote {
    font-family: "EB Garamond", serif;
    font-size: 1.2em;
    color: #333333; /* Texto oscuro */
    background-color: #f9f9f9; /* Fondo claro */
    border-left: 5px solid #f5ed56; /* Barra amarilla */
    padding: 15px 20px;
    margin: 15px 0;
    line-height: 1.6;
    font-style: normal; /* Elimina la cursiva */
}
}


/* Estilo del botón "ir arriba" */
/* Círculo con flecha para regresar arriba */
#scrollTop {
#backToTop {
    content: "↑";
     position: fixed;
     position: fixed;
     bottom: 20px;
     bottom: 20px;
     right: 20px;
     right: 20px;
    background-color: #f5ed56;
    border: none;
    border-radius: 50%;
     width: 50px;
     width: 50px;
     height: 50px;
     height: 50px;
     background-color: #56aaff; /* Azul claro */
     display: flex;
    color: #ffffff; /* Blanco para la flecha */
     justify-content: center;
     border-radius: 50%;
    display: none;
     align-items: center;
     align-items: center;
     justify-content: center;
     font-family: "Abhaya Libre", serif;
     font-size: 24px;
     font-size: 1.5em;
    color: #1a1a1a;
     cursor: pointer;
     cursor: pointer;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
}


/* Efecto hover para el botón "ir arriba" */
#backToTop:hover {
#scrollTop:hover {
     background-color: #eaeaea; /* Cambia a blanco suave */
     background-color: #f5ed56; /* Amarillo al pasar el cursor */
     color: #f5ed56;
     color: #1c1c28; /* Fondo oscuro para la flecha */
    transform: scale(1.1); /* Amplía ligeramente */
}
}


/* Mostrar el botón cuando se hace scroll */
/* Acción del círculo */
#scrollTop {
#backToTop:active {
     display: none;
     transform: scale(0.9); /* Animación al hacer clic */
}
}
<div id="backToTop" onclick="window.scrollTo({ top: 0, behavior: 'smooth' });">↑</div>

Revision as of 19:12, 16 November 2024

@import url('https://fonts.googleapis.com/css2?family=Garamond:wght@400&family=Abhaya+Libre:wght@400;700&family=Crimson+Text:wght@400&family=Lora:wght@400&family=EB+Garamond:wght@400;600&display=swap');

/* Título principal de los artículos */
#firstHeading {
    font-family: "Garamond", serif;
    font-size: 2.5em;
    color: #eaeaea; /* Blanco suave */
}

/* Subtítulos */
h2, h3, h4, h5 {
    font-family: "Abhaya Libre", serif;
    font-weight: 700;
    color: #eaeaea; /* Blanco suave */
}

/* Texto normal */
.mw-body-content {
    font-family: "Crimson Text", serif;
    color: #eaeaea; /* Blanco suave */
    line-height: 1.8;
}

/* Subheading específico */
h6 {
    font-family: "Commissioner", sans-serif;
    font-weight: 700;
    font-size: 1.2em;
}

/* Pie de página */
#footer, .mw-footer {
    color: #eaeaea;
    background-color: #1a1a1a; /* Gris oscuro */
    font-family: "Commissioner", sans-serif;
    font-weight: 300;
}

/* Enlaces */
a, a:link, a:visited {
    color: #eaeaea; /* Blanco suave, igual que el texto normal */
    text-decoration: underline;
    text-decoration-thickness: 3px; /* Subrayado grueso */
    text-decoration-color: #f5ed56; /* Amarillo */
    transition: text-decoration-color 0.3s ease;
}

a:hover {
    text-decoration-color: #eaeaea; /* Subrayado blanco al pasar el cursor */
}

/* Texto seleccionado */
::selection {
    background-color: #f5ed56;
    color: #1a1a1a; /* Gris oscuro */
}

/* Fondo del sitio */
body {
    background-color: #f4f4f4; /* Fondo más claro para mayor contraste */
    color: #333333; /* Texto principal más oscuro */
}

/* Panel lateral */
#mw-panel {
    background-color: #eaeaea;
    border-right: 1px solid #cccccc; /* Límite claro y limpio */
}

/* Bloques de cita */
blockquote {
    font-family: "EB Garamond", serif;
    font-size: 1.2em;
    color: #333333; /* Texto oscuro */
    background-color: #f9f9f9; /* Fondo claro */
    border-left: 5px solid #f5ed56; /* Barra amarilla */
    padding: 15px 20px;
    margin: 15px 0;
    line-height: 1.6;
    font-style: normal; /* Elimina la cursiva */
}

/* Círculo con flecha para regresar arriba */
#backToTop {
    content: "↑";
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f5ed56;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Abhaya Libre", serif;
    font-size: 1.5em;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
    background-color: #eaeaea; /* Cambia a blanco suave */
    color: #f5ed56;
    transform: scale(1.1); /* Amplía ligeramente */
}

/* Acción del círculo */
#backToTop:active {
    transform: scale(0.9); /* Animación al hacer clic */
}

<div id="backToTop" onclick="window.scrollTo({ top: 0, behavior: 'smooth' });">↑</div>