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
 
(63 intermediate revisions by the same user not shown)
Line 1: Line 1:
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Abhaya+Libre:wght@400;700&family=Newsreader:wght@400;700&family=Garamond:wght@400&family=Commissioner:wght@400;700&display=swap');
/* --- Importación de Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&family=Reddit+Sans:wght@400;700&display=swap');


/* General */
/* --- Configuración General --- */
body {
body {
    background-color: #18181e; /* Fondo oscuro */
  font-family: 'Cardo', serif; /* Fuente principal para el texto normal */
    font-family: "Newsreader", serif; /* Fuente principal para el cuerpo */
  background-color: #07070a; /* Fondo general del sitio */
    font-size: 1.1em;
  color: #e4ddcf; /* Color del texto principal */
    color: #ffffff;
  line-height: 1.5; /* Espaciado cómodo */
    line-height: 1.7; /* Mejor legibilidad */
  margin: 0;
  padding: 0;
}
}


/* Letra capital al inicio del artículo */
/* --- Títulos del Artículo (no modificables) --- */
.mw-body-content p:first-of-type::first-letter {
.firstHeading {
    font-size: 3em; /* Tamaño mayor */
  font-family: 'Garamond', serif; /* Fuente Garamond */
    font-family: "Newsreader", serif; /* Fuente elegante */
  font-size: 2.3rem; /* Tamaño ligeramente más pequeño */
    font-weight: 700; /* Negrita */
  font-weight: normal; /* Sin negrita */
    float: left; /* Flota la letra a la izquierda */
  color: #ffffff; /* Color blanco */
    line-height: 1; /* Ajuste para alineación */
  text-align: center;
    margin-right: 10px; /* Espaciado con el texto */
  margin: 20px 0;
    color: inherit; /* Mantiene el color blanco */
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
  padding-bottom: 10px;
}
}


/* Títulos */
/* --- Texto Normal de los Artículos --- */
#firstHeading {
.mw-parser-output {
    font-family: "Libre Baskerville", serif;
  font-family: 'Cardo', serif; /* Fuente principal del contenido */
    font-size: 2.5em;
  font-size: 1.1rem; /* Tamaño ligeramente más grande */
    text-decoration: none;
  color: #e4ddcf;
    text-align: center; /* Centra el título principal */
  line-height: 1.8; /* Espaciado cómodo */
    margin-bottom: 20px; /* Espaciado inferior */
  margin: 0 10%;
}
}


h2 {
/* --- Subrayado Exclusivo de los Enlaces en el Texto de Artículos --- */
    font-family: "EB Garamond", serif;
.mw-parser-output a {
    font-size: 1.8em;
  text-decoration: none; /* Sin subrayado predeterminado */
    font-weight: 700;
  color: #ffffff; /* Color del texto */
    margin-bottom: 10px;
  border-bottom: 3.5px solid #f1c45e; /* Subrayado siempre visible */
    padding-bottom: 5px;
  position: relative;
    border-bottom: 2px solid #f5ed56; /* Línea amarilla */
  transition: color 0.3s ease-in-out; /* Transición para el cambio de color */
}
}


h3, h4, h5 {
/* --- Efecto de Marcado en Enlaces (Deslizar de izquierda a derecha) --- */
    font-family: "EB Garamond", serif;
.mw-parser-output a::after {
    font-weight: 700;
  content: ''; /* Sin contenido visible */
  position: absolute;
  width: 0; /* Inicialmente no se ve */
  height: 100%; /* Cubre toda la altura del texto */
  background-color: #f1c45e; /* Color del marcado */
  bottom: 0; /* Posicionado en la parte inferior del texto */
  left: 0; /* Empieza desde la izquierda */
  z-index: -1; /* Colocado detrás del texto */
  transition: width 0.3s ease-in-out; /* Transición suave */
}
}


h6 {
/* --- Efecto de Cambio de Color del Texto al Pasar el Mouse --- */
    font-family: "Ysabeau Infant", sans-serif;
.mw-parser-output a:hover {
    font-size: 1.2em;
  color: #1a1a1f; /* El texto se pone del mismo color que el fondo */
    font-weight: 700;
    margin-top: 15px;
}
}


/* Enlaces en el cuerpo del artículo */
/* --- Efecto de Expansión del Marcado (de izquierda a derecha) al Pasar el Mouse --- */
.mw-body-content a {
.mw-parser-output a:hover::after {
    color: inherit; /* Mantiene el color del texto normal */
  width: 100%; /* El efecto de marcado se extiende */
    text-decoration: underline 3px #f5ed56; /* Subrayado grueso amarillo */
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
}


.mw-body-content a:visited {
/* --- Subheadings de Primer Nivel (Heading 2) --- */
    text-decoration-color: #707070; /* Subrayado gris claro en enlaces visitados */
.mw-parser-output h2 {
  font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
  font-size: 1.8rem; /* Tamaño reducido */
  font-weight: bold;
  color: #ffffff;
  margin: 30px 0 10px;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
}
}


.mw-body-content a:active {
/* --- Subheadings Secundarios (Heading 3 a 5) --- */
    color: #707070; /* Gris claro al hacer clic */
.mw-parser-output h3 {
    text-decoration-color: #707070;
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
  font-size: 1.5rem; /* Tamaño reducido */
  font-weight: bold;
  color: #ffffff;
  margin: 20px 0 10px;
}
}


.mw-body-content a:hover {
.mw-parser-output h4,
    color: #ffffff; /* Mantiene el color blanco al pasar el cursor */
.mw-parser-output h5 {
    text-decoration-color: #f5ed56; /* Subrayado amarillo */
  font-family: 'Crimson Pro', serif;
  font-size: 1.3rem; /* Tamaño ligeramente más pequeño */
  font-weight: bold;
  color: #ffffff;
  margin: 15px 0 8px;
}
}


.mw-body-content a::before {
/* --- Heading 6 en Reddit Sans --- */
    content: "";
.mw-parser-output h6 {
    position: absolute;
  font-family: 'Reddit Sans', sans-serif; /* Fuente Reddit Sans */
    bottom: 0;
  font-size: 1.1rem; /* Tamaño reducido */
    left: 0;
  font-weight: normal;
    width: 0;
  color: #ffffff;
    height: 100%;
  margin: 10px 0 5px;
    background-color: #f5ed56;
    z-index: -1;
    transition: width 0.4s ease;
}
}


.mw-body-content a:hover::before {
/* --- Bloques de Cita Simplificados --- */
    width: 100%; /* Fondo amarillo dinámico */
.mw-parser-output blockquote {
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
  font-size: 0.95rem; /* Tamaño más pequeño que el texto normal */
  font-weight: normal;
  color: #e4ddcf; /* Igual al texto principal */
  margin-left: 20px; /* Sangría para bloques de cita */
  margin-right: 20px;
  border: none; /* Sin bordes ni estilos especiales */
  padding: 0; /* Sin relleno adicional */
}
}


/* Quitar subrayados en enlaces dentro de títulos */
::selection {
#firstHeading a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  background-color: #f1c45e; /* Color del fondo de la selección de texto */
    text-decoration: none;
  color: #1a1a1f; /* Color del texto seleccionado */
}
}


/* Texto seleccionado */
/* --- Estilo para la selección de texto --- */
::selection {
::selection {
    background-color: #f5ed56; /* Fondo amarillo */
  background-color: #f1c45e; /* Color amarillo para el fondo de la selección */
    color: #18181e; /* Texto oscuro */
  color: #1a1a1f; /* El texto seleccionado tendrá el color del fondo de los artículos */
}
 
/* Citas */
blockquote {
    font-family: "Newsreader", serif;
    font-size: 1em;
    color: #dcdcdc;
    border-left: 5px solid #f5ed56; /* Línea amarilla más visible */
    padding: 10px 20px; /* Espaciado interior */
    margin: 20px 25px; /* Espaciado externo */
    line-height: 1.8;
    background: #202020; /* Fondo ligeramente oscuro */
    border-radius: 4px; /* Bordes ligeramente redondeados */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra sutil */
}
 
blockquote p {
    margin: 0; /* Sin márgenes extra */
    font-style: italic; /* Texto en cursiva para estilo clásico de cita */
}
 
/* Botón flotante "Volver al inicio" */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f5ed56;
    color: #090a0a;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
 
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
 
#backToTop:hover {
    background-color: #e0e0e0;
    color: #18181e;
}
 
/* Barra de progreso de lectura */
.reading-progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    z-index: 1000;
}
 
.reading-progress-bar {
    height: 100%;
    width: 0;
    background-color: #0078d7; /* Azul para el progreso */
    transition: width 0.2s ease-out;
}
}

Latest revision as of 04:05, 9 December 2024

/* --- Importación de Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&family=Reddit+Sans:wght@400;700&display=swap');

/* --- Configuración General --- */
body {
  font-family: 'Cardo', serif; /* Fuente principal para el texto normal */
  background-color: #07070a; /* Fondo general del sitio */
  color: #e4ddcf; /* Color del texto principal */
  line-height: 1.5; /* Espaciado cómodo */
  margin: 0;
  padding: 0;
}

/* --- Títulos del Artículo (no modificables) --- */
.firstHeading {
  font-family: 'Garamond', serif; /* Fuente Garamond */
  font-size: 2.3rem; /* Tamaño ligeramente más pequeño */
  font-weight: normal; /* Sin negrita */
  color: #ffffff; /* Color blanco */
  text-align: center;
  margin: 20px 0;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
  padding-bottom: 10px;
}

/* --- Texto Normal de los Artículos --- */
.mw-parser-output {
  font-family: 'Cardo', serif; /* Fuente principal del contenido */
  font-size: 1.1rem; /* Tamaño ligeramente más grande */
  color: #e4ddcf;
  line-height: 1.8; /* Espaciado cómodo */
  margin: 0 10%;
}

/* --- Subrayado Exclusivo de los Enlaces en el Texto de Artículos --- */
.mw-parser-output a {
  text-decoration: none; /* Sin subrayado predeterminado */
  color: #ffffff; /* Color del texto */
  border-bottom: 3.5px solid #f1c45e; /* Subrayado siempre visible */
  position: relative;
  transition: color 0.3s ease-in-out; /* Transición para el cambio de color */
}

/* --- Efecto de Marcado en Enlaces (Deslizar de izquierda a derecha) --- */
.mw-parser-output a::after {
  content: ''; /* Sin contenido visible */
  position: absolute;
  width: 0; /* Inicialmente no se ve */
  height: 100%; /* Cubre toda la altura del texto */
  background-color: #f1c45e; /* Color del marcado */
  bottom: 0; /* Posicionado en la parte inferior del texto */
  left: 0; /* Empieza desde la izquierda */
  z-index: -1; /* Colocado detrás del texto */
  transition: width 0.3s ease-in-out; /* Transición suave */
}

/* --- Efecto de Cambio de Color del Texto al Pasar el Mouse --- */
.mw-parser-output a:hover {
  color: #1a1a1f; /* El texto se pone del mismo color que el fondo */
}

/* --- Efecto de Expansión del Marcado (de izquierda a derecha) al Pasar el Mouse --- */
.mw-parser-output a:hover::after {
  width: 100%; /* El efecto de marcado se extiende */
}

/* --- Subheadings de Primer Nivel (Heading 2) --- */
.mw-parser-output h2 {
  font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
  font-size: 1.8rem; /* Tamaño reducido */
  font-weight: bold;
  color: #ffffff;
  margin: 30px 0 10px;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
}

/* --- Subheadings Secundarios (Heading 3 a 5) --- */
.mw-parser-output h3 {
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
  font-size: 1.5rem; /* Tamaño reducido */
  font-weight: bold;
  color: #ffffff;
  margin: 20px 0 10px;
}

.mw-parser-output h4,
.mw-parser-output h5 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.3rem; /* Tamaño ligeramente más pequeño */
  font-weight: bold;
  color: #ffffff;
  margin: 15px 0 8px;
}

/* --- Heading 6 en Reddit Sans --- */
.mw-parser-output h6 {
  font-family: 'Reddit Sans', sans-serif; /* Fuente Reddit Sans */
  font-size: 1.1rem; /* Tamaño reducido */
  font-weight: normal;
  color: #ffffff;
  margin: 10px 0 5px;
}

/* --- Bloques de Cita Simplificados --- */
.mw-parser-output blockquote {
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
  font-size: 0.95rem; /* Tamaño más pequeño que el texto normal */
  font-weight: normal;
  color: #e4ddcf; /* Igual al texto principal */
  margin-left: 20px; /* Sangría para bloques de cita */
  margin-right: 20px;
  border: none; /* Sin bordes ni estilos especiales */
  padding: 0; /* Sin relleno adicional */
}

::selection {
  background-color: #f1c45e; /* Color del fondo de la selección de texto */
  color: #1a1a1f; /* Color del texto seleccionado */
}

/* --- Estilo para la selección de texto --- */
::selection {
  background-color: #f1c45e; /* Color amarillo para el fondo de la selección */
  color: #1a1a1f; /* El texto seleccionado tendrá el color del fondo de los artículos */
}