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
 
(68 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=Crimson+Text:wght@400&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');


/* Estilo para el título principal de los artículos */
/* --- Configuración General --- */
#firstHeading {
    font-family: "Garamond", serif;
    font-size: 2.5em; /* Tamaño grande para destacar */
    text-decoration: none !important; /* Sin subrayado */
}
 
/* Primer nivel de subtítulos (h2) en EB Garamond */
h2 {
    font-family: "EB Garamond", serif;
    font-size: 1.8em; /* Tamaño destacado */
    font-weight: 700; /* Negrita para énfasis */
    margin-bottom: 10px; /* Espaciado adicional */
    border-bottom: 2px solid #f5ed56; /* Línea amarilla para separación */
    padding-bottom: 5px; /* Espaciado interno */
    text-decoration: none !important; /* Sin subrayado */
}
 
/* Subtítulos (h3-h5) en Abhaya Libre */
h3, h4, h5 {
    font-family: "Abhaya Libre", serif;
    font-weight: 700; /* Negrita para énfasis */
    text-decoration: none !important; /* Sin subrayado */
}
 
/* Nivel más pequeño (h6) con tamaño ajustado */
h6 {
    font-family: "Commissioner", sans-serif;
    font-weight: 700; /* Negrita para destacar */
    font-size: 1.2em; /* Ligeramente mayor que el texto normal */
    margin-top: 15px; /* Espaciado superior */
    text-decoration: none !important; /* Sin subrayado */
}
 
/* Texto normal de los artículos */
.mw-body-content {
    font-family: "Crimson Text", serif; /* Fuente elegante y profesional */
    font-size: 1.1em; /* Tamaño ligeramente mayor */
    color: #ffffff; /* Blanco para contraste limpio */
    line-height: 1.7; /* Altura de línea para buena legibilidad */
}
 
/* Estilo para enlaces */
a, a:link, a:visited {
    color: inherit; /* Conserva el color del texto normal */
    text-decoration: underline; /* Subrayado visible */
    text-decoration-thickness: 2px; /* Subrayado grueso */
    text-decoration-color: #f5ed56; /* Subrayado amarillo */
    position: relative; /* Necesario para efectos */
    overflow: hidden; /* Previene desbordamientos */
    transition: color 0.3s ease, text-decoration-color 0.3s ease; /* Transiciones suaves */
}
 
/* Efecto dinámico en enlaces al pasar el cursor */
a:hover {
    color: #090a0a !important; /* Negro profundo */
}
 
/* Fondo amarillo animado */
a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f5ed56; /* Amarillo marcador */
    z-index: -1;
    transition: width 0.4s ease;
}
 
a:hover::before {
    width: 100%; /* Expande el fondo */
}
 
/* Quitar subrayados de enlaces dentro de títulos */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none !important;
}
 
/* Texto seleccionado */
::selection {
    background-color: #f5ed56; /* Fondo amarillo */
    color: #18181e; /* Texto oscuro */
}
 
/* Fondo general */
body {
body {
    background-color: #18181e;
  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;
}
}


/* Bloques de cita */
/* --- Títulos del Artículo (no modificables) --- */
blockquote {
.firstHeading {
    font-family: "EB Garamond", serif; /* Fuente profesional */
  font-family: 'Garamond', serif; /* Fuente Garamond */
    font-size: 0.95em; /* Ligeramente más pequeño que el texto normal */
  font-size: 2.3rem; /* Tamaño ligeramente más pequeño */
    color: #dcdcdc; /* Gris claro para buen contraste */
  font-weight: normal; /* Sin negrita */
    border-left: 3px solid #f5ed56; /* Línea amarilla estrecha */
  color: #ffffff; /* Color blanco */
    padding-left: 20px; /* Espaciado entre la línea y el texto */
  text-align: center;
    margin: 20px 0 20px 25px; /* Desplaza ligeramente hacia la derecha */
  margin: 20px 0;
    line-height: 1.8; /* Altura de línea para mejor legibilidad */
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
    background: none; /* Fondo transparente */
  padding-bottom: 10px;
    box-shadow: none; /* Sin sombra */
    border-radius: 0; /* Sin bordes redondeados */
}
}


/* Estilo para el texto del bloque de cita */
/* --- Texto Normal de los Artículos --- */
blockquote p {
.mw-parser-output {
    margin: 0; /* Sin márgenes adicionales */
  font-family: 'Cardo', serif; /* Fuente principal del contenido */
    font-style: normal; /* Sin cursiva */
  font-size: 1.1rem; /* Tamaño ligeramente más grande */
  color: #e4ddcf;
  line-height: 1.8; /* Espaciado cómodo */
  margin: 0 10%;
}
}


/* Botón flotante de "Volver al inicio" */
/* --- Subrayado Exclusivo de los Enlaces en el Texto de Artículos --- */
#backToTop {
.mw-parser-output a {
    position: fixed;
  text-decoration: none; /* Sin subrayado predeterminado */
    bottom: 20px;
  color: #ffffff; /* Color del texto */
    right: 20px;
  border-bottom: 3.5px solid #f1c45e; /* Subrayado siempre visible */
    width: 50px;
  position: relative;
    height: 50px;
  transition: color 0.3s ease-in-out; /* Transición para el cambio de color */
    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;
}
}


/* Mostrar el botón al hacer scroll */
/* --- Efecto de Marcado en Enlaces (Deslizar de izquierda a derecha) --- */
#backToTop.show {
.mw-parser-output a::after {
    opacity: 1;
  content: ''; /* Sin contenido visible */
    visibility: 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 al pasar el cursor */
/* --- Efecto de Cambio de Color del Texto al Pasar el Mouse --- */
#backToTop:hover {
.mw-parser-output a:hover {
    background-color: #e0e0e0;
  color: #1a1a1f; /* El texto se pone del mismo color que el fondo */
    color: #18181e;
}
}


/* Estilo de la barra de lectura */
/* --- Efecto de Expansión del Marcado (de izquierda a derecha) al Pasar el Mouse --- */
.reading-progress-bar-container {
.mw-parser-output a:hover::after {
    position: fixed;
  width: 100%; /* El efecto de marcado se extiende */
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    z-index: 1000;
}
}


.reading-progress-bar {
/* --- Subheadings de Primer Nivel (Heading 2) --- */
    height: 100%;
.mw-parser-output h2 {
    width: 0%;
  font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
    background-color: #0078d7; /* Cambia este color según el diseño del tema */
  font-size: 1.8rem; /* Tamaño reducido */
    transition: width 0.2s ease-out;
  font-weight: bold;
  color: #ffffff;
  margin: 30px 0 10px;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
}
}


/* Eliminar la línea de enlaces en subtítulos de nivel h2 */
/* --- Subheadings Secundarios (Heading 3 a 5) --- */
h2 a, h2 a:link, h2 a:visited {
.mw-parser-output h3 {
    text-decoration: none; /* Sin subrayado en enlaces de h2 */
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
  font-size: 1.5rem; /* Tamaño reducido */
  font-weight: bold;
  color: #ffffff;
  margin: 20px 0 10px;
}
}


/* Imagen de fondo detrás del título principal y con difuminado */
.mw-parser-output h4,
body.skin-citizen {
.mw-parser-output h5 {
    position: relative; /* Asegura que todos los elementos se posicionen correctamente */
  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;
}
}


body.skin-citizen::before {
/* --- Heading 6 en Reddit Sans --- */
    content: ""; /* Inserta la imagen de fondo */
.mw-parser-output h6 {
    position: absolute; /* Posición absoluta para colocar detrás del contenido */
  font-family: 'Reddit Sans', sans-serif; /* Fuente Reddit Sans */
    top: 0; /* Desde la parte superior */
  font-size: 1.1rem; /* Tamaño reducido */
    left: 0; /* Alineado al lado izquierdo */
  font-weight: normal;
    width: 100%; /* Cubre todo el ancho de la pantalla */
  color: #ffffff;
    height: 300px; /* Ajusta la altura del bloque de imagen */
  margin: 10px 0 5px;
    background-image: url('https://www.neoclassicism.us/images/Cole_Thomas_The_Consummation_The_Course_of_the_Empire_1836.jpg'); /* Cambia por la URL de tu imagen */
    background-size: cover; /* Ajusta la imagen al ancho del contenedor */
    background-position: center; /* Centra la imagen */
    z-index: -1; /* Envía la imagen al fondo */
    pointer-events: none; /* Evita que interfiera con el contenido */
}
}


/* Gradiente para difuminado */
/* --- Bloques de Cita Simplificados --- */
body.skin-citizen::after {
.mw-parser-output blockquote {
    content: ""; /* Inserta el gradiente */
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
    position: absolute; /* Coloca el gradiente sobre la imagen */
  font-size: 0.95rem; /* Tamaño más pequeño que el texto normal */
    top: 0; /* Desde la parte superior */
  font-weight: normal;
    left: 0; /* Alineado a la izquierda */
  color: #e4ddcf; /* Igual al texto principal */
    width: 100%; /* Cubre todo el ancho */
  margin-left: 20px; /* Sangría para bloques de cita */
    height: 300px; /* Coincide con la altura de la imagen */
  margin-right: 20px;
    background: linear-gradient(to bottom, rgba(24, 24, 30, 0.8) 50%, rgba(24, 24, 30, 1) 100%);
  border: none; /* Sin bordes ni estilos especiales */
    z-index: -1; /* Mantiene el gradiente detrás del contenido */
  padding: 0; /* Sin relleno adicional */
    pointer-events: none; /* No interfiere con el contenido */
}
}


/* Título principal encima de la imagen */
::selection {
#firstHeading {
  background-color: #f1c45e; /* Color del fondo de la selección de texto */
    position: relative; /* Asegura que el título se renderice por encima de la imagen */
  color: #1a1a1f; /* Color del texto seleccionado */
    z-index: 1; /* Lo coloca en la capa superior */
    margin-top: 0; /* Elimina márgenes innecesarios */
    padding-top: 20px; /* Ajusta el espacio para que no quede pegado al borde */
}
}


/* Contenido principal por encima */
/* --- Estilo para la selección de texto --- */
.mw-body-content {
::selection {
    position: relative; /* Mantiene el texto principal por encima */
  background-color: #f1c45e; /* Color amarillo para el fondo de la selección */
    z-index: 1; /* Asegura que el contenido esté en la capa superior */
  color: #1a1a1f; /* El texto seleccionado tendrá el color del fondo de los artículos */
}
}

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 */
}