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
Tag: Manual revert
No edit summary
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');
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Newsreader:wght@400;700&display=swap" rel="stylesheet">


/* General */
/* Estilo general del artículo */
body {
body {
    background-color: #18181e; /* Fondo oscuro */
  font-family: 'Newsreader', serif;
    font-family: "Newsreader", serif; /* Fuente principal para el cuerpo */
  background-color: #18181e;
    font-size: 1.1em;
  color: #ffffff;
    color: #ffffff;
  line-height: 1.8;
    line-height: 1.7; /* Mejor legibilidad */
  margin: 0;
  padding: 0;
}
}


/* Letra capital al inicio del artículo */
/* Tipografía del primer encabezado de los artículos */
.mw-body-content p:first-of-type::first-letter {
h1.firstHeading {
    font-size: 3em; /* Tamaño mayor */
  font-family: 'Libre Baskerville', serif;
    font-family: "Newsreader", serif; /* Fuente elegante */
  font-size: 2.5rem;
    font-weight: 700; /* Negrita */
  font-weight: bold;
    float: left; /* Flota la letra a la izquierda */
  margin-bottom: 20px;
    line-height: 1; /* Ajuste para alineación */
  color: #ffffff;
    margin-right: 10px; /* Espaciado con el texto */
    color: inherit; /* Mantiene el color blanco */
}
}


/* Títulos */
/* Estilo de la letra capital al inicio del artículo */
#firstHeading {
.mw-parser-output > p:first-of-type::first-letter {
    font-family: "Libre Baskerville", serif;
  font-size: 4rem;
    font-size: 2.5em;
  font-family: 'Libre Baskerville', serif;
    text-decoration: none;
  font-weight: bold;
    text-align: center; /* Centra el título principal */
  color: #ffffff;
    margin-bottom: 20px; /* Espaciado inferior */
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 5px;
}
}


h2 {
/* Estilo de los hipervínculos */
    font-family: "EB Garamond", serif;
a {
    font-size: 1.8em;
  text-decoration: none;
    font-weight: 700;
  border-bottom: 4px solid yellow; /* Subrayado grueso */
    margin-bottom: 10px;
  color: inherit; /* Igual al color del texto */
    padding-bottom: 5px;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    border-bottom: 2px solid #f5ed56; /* Línea amarilla */
}
}


h3, h4, h5 {
/* Efecto hover en los hipervínculos */
    font-family: "EB Garamond", serif;
a:hover {
    font-weight: 700;
  color: #18181e; /* Color del texto al pasar el mouse (mismo color del fondo) */
  background-color: yellow; /* Fondo amarillo visible al pasar el mouse */
  border-bottom: 4px solid transparent; /* Oculta la raya al activar el efecto hover */
}
}


h6 {
/* Ajustes adicionales para otros encabezados */
    font-family: "Ysabeau Infant", sans-serif;
h2, h3, h4, h5, h6 {
    font-size: 1.2em;
  font-family: 'Newsreader', serif;
    font-weight: 700;
  font-weight: bold;
    margin-top: 15px;
  color: #ffffff;
  margin-top: 20px;
}
}


/* Enlaces en el cuerpo del artículo */
/* Ajustes generales para listas */
.mw-body-content a {
ul, ol {
    color: inherit; /* Mantiene el color del texto normal */
  margin-left: 20px;
    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 {
li {
    text-decoration-color: #707070; /* Subrayado gris claro en enlaces visitados */
  margin-bottom: 10px;
  color: #ffffff;
}
}


.mw-body-content a:active {
/* Ajustes para tablas dentro del contenido */
    color: #707070; /* Gris claro al hacer clic */
table {
    text-decoration-color: #707070;
  border-collapse: collapse;
  width: 100%;
  color: #ffffff;
}
}


.mw-body-content a:hover {
th, td {
    color: #ffffff; /* Mantiene el color blanco al pasar el cursor */
  border: 1px solid #ffffff;
    text-decoration-color: #f5ed56; /* Subrayado amarillo */
  padding: 10px;
}
  text-align: left;
 
.mw-body-content a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f5ed56;
    z-index: -1;
    transition: width 0.4s ease;
}
 
.mw-body-content a:hover::before {
    width: 100%; /* Fondo amarillo dinámico */
}
 
/* Quitar subrayados en enlaces dentro de títulos */
#firstHeading a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    text-decoration: none;
}
 
/* Texto seleccionado */
::selection {
    background-color: #f5ed56; /* Fondo amarillo */
    color: #18181e; /* Texto oscuro */
}
 
/* 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;
}
}

Revision as of 22:52, 7 December 2024

<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Newsreader:wght@400;700&display=swap" rel="stylesheet">

/* Estilo general del artículo */
body {
  font-family: 'Newsreader', serif;
  background-color: #18181e;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/* Tipografía del primer encabezado de los artículos */
h1.firstHeading {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Estilo de la letra capital al inicio del artículo */
.mw-parser-output > p:first-of-type::first-letter {
  font-size: 4rem;
  font-family: 'Libre Baskerville', serif;
  font-weight: bold;
  color: #ffffff;
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 5px;
}

/* Estilo de los hipervínculos */
a {
  text-decoration: none;
  border-bottom: 4px solid yellow; /* Subrayado grueso */
  color: inherit; /* Igual al color del texto */
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* Efecto hover en los hipervínculos */
a:hover {
  color: #18181e; /* Color del texto al pasar el mouse (mismo color del fondo) */
  background-color: yellow; /* Fondo amarillo visible al pasar el mouse */
  border-bottom: 4px solid transparent; /* Oculta la raya al activar el efecto hover */
}

/* Ajustes adicionales para otros encabezados */
h2, h3, h4, h5, h6 {
  font-family: 'Newsreader', serif;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
}

/* Ajustes generales para listas */
ul, ol {
  margin-left: 20px;
}

li {
  margin-bottom: 10px;
  color: #ffffff;
}

/* Ajustes para tablas dentro del contenido */
table {
  border-collapse: collapse;
  width: 100%;
  color: #ffffff;
}

th, td {
  border: 1px solid #ffffff;
  padding: 10px;
  text-align: left;
}