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:
<link href="https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&display=swap" rel="stylesheet">


<style>
/* --- Configuración General --- */
/* --- Configuración General del Sitio --- */
body {
body {
   font-family: 'Cardo', serif; /* Fuente para el texto normal */
   font-family: 'Cardo', serif; /* Fuente principal */
   background-color: #1a1a1f; /* Fondo oscuro */
   background-color: #1a1a1f; /* Fondo oscuro */
   color: #e4ddcf; /* Color del texto principal */
   color: #e4ddcf; /* Texto claro */
   line-height: 1.6; /* Espaciado entre líneas para mejor legibilidad */
   line-height: 1.6; /* Espaciado entre líneas */
   margin: 0;
   margin: 0;
   padding: 0;
   padding: 0;
   text-rendering: optimizeLegibility; /* Mejora el renderizado del texto */
   text-rendering: optimizeLegibility; /* Renderizado mejorado */
}
}


/* --- Contenido Principal --- */
/* --- Contenido del Artículo --- */
.mw-parser-output {
.mw-parser-output {
   font-family: 'Cardo', serif; /* Asegura que el texto use Cardo */
   font-family: 'Cardo', serif; /* Fuente del texto principal */
   font-size: 1rem; /* Tamaño estándar */
   font-size: 1rem;
   color: #e4ddcf; /* Color del texto normal */
   color: #e4ddcf;
   line-height: 1.6; /* Espaciado cómodo entre líneas */
   line-height: 1.6;
   margin: 0 10%; /* Márgenes laterales */
   margin: 0 10%; /* Márgenes laterales */
}
}


/* --- Título Principal del Artículo (Heading 1) --- */
/* --- Título Principal (Heading 1) --- */
#content h1.firstHeading {
#content h1.firstHeading {
   font-family: 'Garamond', serif; /* Fuente Garamond para el título principal */
   font-family: 'Garamond', serif; /* Fuente Garamond */
   font-size: 2.5rem; /* Tamaño destacado */
   font-size: 2.5rem;
   font-weight: normal; /* Sin negrita */
   font-weight: normal; /* Sin negrita */
   color: #ffffff; /* Color blanco */
   color: #ffffff;
   text-align: center; /* Centrar el título */
   text-align: center;
   margin: 20px 0;
   margin: 20px 0;
   border-bottom: 2px solid #ffffff; /* Línea decorativa */
   border-bottom: 2px solid #f1c45e; /* Línea decorativa */
   padding-bottom: 10px;
   padding-bottom: 10px;
}
}


/* --- Encabezados Secundarios (Heading de Artículos) --- */
/* --- Subtítulos (Heading 2 y 3) --- */
.mw-parser-output h2 {
.mw-parser-output h2 {
   font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
   font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
   font-size: 2rem;
   font-size: 2rem;
   font-weight: bold;
   font-weight: bold;
   color: #ffffff; /* Color blanco */
   color: #ffffff;
   margin: 30px 0 10px;
   margin: 30px 0 10px;
   border-bottom: 2px solid #f1c45e; /* Línea decorativa */
   border-bottom: 2px solid #f1c45e;
}
}


.mw-parser-output h3 {
.mw-parser-output h3 {
   font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
   font-family: 'EB Garamond', serif;
   font-size: 1.5rem;
   font-size: 1.5rem;
   font-weight: bold;
   font-weight: bold;
   color: #ffffff; /* Color blanco */
   color: #ffffff;
   margin: 20px 0 10px;
   margin: 20px 0 10px;
}
}


/* --- Letra Capital al Inicio del Artículo --- */
/* --- Primera Letra del Primer Párrafo --- */
.mw-parser-output > p:first-of-type::first-letter {
.mw-parser-output > p:first-of-type::first-letter {
   font-size: 3rem;
   font-size: 3rem;
   font-family: 'Cardo', serif; /* Letra inicial en Cardo */
   font-family: 'Cardo', serif;
   font-weight: bold;
   font-weight: bold;
   color: #ffffff; /* Blanco */
   color: #ffffff;
   float: left;
   float: left;
   line-height: 1;
   line-height: 1;
Line 63: Line 62:
}
}


/* --- Hipervínculos --- */
/* --- Enlaces (Estilo y Transiciones) --- */
.mw-parser-output a {
.mw-parser-output a {
   text-decoration: none; /* Sin subrayado inicial */
   text-decoration: none;
   color: #ffffff; /* Blanco */
   color: #ffffff;
  position: relative;
   border-bottom: 2px solid #f1c45e;
   border-bottom: 4px solid transparent; /* Subrayado inicialmente invisible */
   transition: all 0.3s ease-in-out;
  padding-bottom: 2px;
   transition: all 0.3s ease-in-out; /* Transición suave */
}
 
.mw-parser-output a::after {
  content: ''; /* Sin contenido adicional */
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0; /* Subrayado inicialmente oculto */
  height: 4px; /* Altura del subrayado */
  background: #f1c45e; /* Color del subrayado */
  transition: width 0.4s ease-in-out; /* Efecto de deslizamiento */
}
 
.mw-parser-output a:hover::after {
  width: 100%; /* Subrayado visible de izquierda a derecha al pasar el mouse */
}
}


.mw-parser-output a:hover {
.mw-parser-output a:hover {
   color: #1a1a1f; /* Texto del enlace se mezcla con el fondo al pasar el mouse */
  background-color: #f1c45e;
   color: #1a1a1f;
}
}


Line 99: Line 82:


.mw-parser-output li {
.mw-parser-output li {
   line-height: 1.8; /* Espaciado cómodo entre elementos */
   line-height: 1.8; /* Espaciado cómodo */
}
}


Line 106: Line 89:
   border-collapse: collapse;
   border-collapse: collapse;
   width: 100%;
   width: 100%;
   color: #e4ddcf; /* Texto dentro de tablas */
   color: #e4ddcf;
   margin: 20px 0;
   margin: 20px 0;
}
}
Line 112: Line 95:
.mw-parser-output th,
.mw-parser-output th,
.mw-parser-output td {
.mw-parser-output td {
   border: 1px solid #ffffff; /* Bordes blancos */
   border: 1px solid #ffffff;
   padding: 10px;
   padding: 10px;
   text-align: left;
   text-align: left;
Line 119: Line 102:
/* --- Descripciones de Imágenes --- */
/* --- Descripciones de Imágenes --- */
.mw-parser-output .thumbcaption {
.mw-parser-output .thumbcaption {
   font-family: 'Cardo', serif; /* Fuente Cardo */
   font-family: 'Cardo', serif;
   font-size: 0.875rem;
   font-size: 0.875rem;
   color: #e4ddcf; /* Color del texto */
   color: #e4ddcf;
   text-align: center;
   text-align: center;
   margin-top: 5px;
   margin-top: 5px;
Line 128: Line 111:
/* --- Referencias y Notas --- */
/* --- Referencias y Notas --- */
.mw-parser-output sup {
.mw-parser-output sup {
   font-family: 'Crimson Pro', serif; /* Fuente para referencias */
   font-family: 'Crimson Pro', serif; /* Fuente para superíndices */
   font-size: 0.75rem;
   font-size: 0.75rem;
   color: #f1c45e; /* Color del texto */
   color: #f1c45e;
}
}


.mw-parser-output sup a {
.mw-parser-output sup a {
   text-decoration: none;
   text-decoration: none;
   color: #f1c45e; /* Color del enlace */
   color: #f1c45e;
}
}


/* --- Estilo para las Citas --- */
/* --- Estilo de Citas --- */
.mw-parser-output blockquote {
.mw-parser-output blockquote {
   font-family: 'Crimson Pro', serif; /* Fuente para citas */
   font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
   font-size: 1rem;
   font-size: 1rem;
   color: #e4ddcf; /* Texto de las citas */
   color: #e4ddcf;
   background-color: #333333; /* Fondo gris oscuro */
   background-color: #333333; /* Fondo oscuro */
   padding: 10px 15px; /* Espaciado interno */
   padding: 10px 15px;
   border-left: 5px solid #f1c45e; /* Línea decorativa */
   border-left: 5px solid #f1c45e;
   margin: 20px 0;
   margin: 20px 0;
   font-style: italic;
   font-style: italic;
}
}
</style>

Revision as of 02:28, 9 December 2024

<link href="https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&display=swap" rel="stylesheet">

/* --- Configuración General --- */
body {
  font-family: 'Cardo', serif; /* Fuente principal */
  background-color: #1a1a1f; /* Fondo oscuro */
  color: #e4ddcf; /* Texto claro */
  line-height: 1.6; /* Espaciado entre líneas */
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility; /* Renderizado mejorado */
}

/* --- Contenido del Artículo --- */
.mw-parser-output {
  font-family: 'Cardo', serif; /* Fuente del texto principal */
  font-size: 1rem;
  color: #e4ddcf;
  line-height: 1.6;
  margin: 0 10%; /* Márgenes laterales */
}

/* --- Título Principal (Heading 1) --- */
#content h1.firstHeading {
  font-family: 'Garamond', serif; /* Fuente Garamond */
  font-size: 2.5rem;
  font-weight: normal; /* Sin negrita */
  color: #ffffff;
  text-align: center;
  margin: 20px 0;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
  padding-bottom: 10px;
}

/* --- Subtítulos (Heading 2 y 3) --- */
.mw-parser-output h2 {
  font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 30px 0 10px;
  border-bottom: 2px solid #f1c45e;
}

.mw-parser-output h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin: 20px 0 10px;
}

/* --- Primera Letra del Primer Párrafo --- */
.mw-parser-output > p:first-of-type::first-letter {
  font-size: 3rem;
  font-family: 'Cardo', serif;
  font-weight: bold;
  color: #ffffff;
  float: left;
  line-height: 1;
  margin: 5px 10px 0 0;
}

/* --- Enlaces (Estilo y Transiciones) --- */
.mw-parser-output a {
  text-decoration: none;
  color: #ffffff;
  border-bottom: 2px solid #f1c45e;
  transition: all 0.3s ease-in-out;
}

.mw-parser-output a:hover {
  background-color: #f1c45e;
  color: #1a1a1f;
}

/* --- Listas --- */
.mw-parser-output ul,
.mw-parser-output ol {
  margin-left: 20px;
}

.mw-parser-output li {
  line-height: 1.8; /* Espaciado cómodo */
}

/* --- Tablas --- */
.mw-parser-output table {
  border-collapse: collapse;
  width: 100%;
  color: #e4ddcf;
  margin: 20px 0;
}

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

/* --- Descripciones de Imágenes --- */
.mw-parser-output .thumbcaption {
  font-family: 'Cardo', serif;
  font-size: 0.875rem;
  color: #e4ddcf;
  text-align: center;
  margin-top: 5px;
}

/* --- Referencias y Notas --- */
.mw-parser-output sup {
  font-family: 'Crimson Pro', serif; /* Fuente para superíndices */
  font-size: 0.75rem;
  color: #f1c45e;
}

.mw-parser-output sup a {
  text-decoration: none;
  color: #f1c45e;
}

/* --- Estilo de Citas --- */
.mw-parser-output blockquote {
  font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
  font-size: 1rem;
  color: #e4ddcf;
  background-color: #333333; /* Fondo oscuro */
  padding: 10px 15px;
  border-left: 5px solid #f1c45e;
  margin: 20px 0;
  font-style: italic;
}