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:
/* <pre><nowiki> */
<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">


/* Tolkien Gateway theme */
<style>
 
/* --- Configuración General del Sitio --- */
/* Import fonts from Google Fonts: EB Garamond, Lora */
body {
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
  font-family: 'Cardo', serif; /* Fuente para el texto normal */
 
  background-color: #1a1a1f; /* Fondo oscuro */
/*
  color: #e4ddcf; /* Color del texto principal */
* Use customized system fonts as fallback for font stack
  line-height: 1.6; /* Espaciado entre líneas para mejor legibilidad */
* Needed to avoid layout shift
  margin: 0;
*/
  padding: 0;
@font-face {
  text-rendering: optimizeLegibility; /* Mejora el renderizado del texto */
font-family: 'EB Garamond-fallback';
size-adjust: 94.29999999999998%;
ascent-override: 101%;
descent-override: 36.40000000000171%;
src: local('Times New Roman');
}
 
@font-face {
font-family: 'Lora-fallback';
size-adjust: 105.20000000000005%;
ascent-override: 92%;
descent-override: 32.60000000000166%;
src: local('Georgia');
}
 
/* CSS variables */
:root {
/* Border */
/* Border color */
--tg-border-color-base: rgba(0, 0, 0, 0.08);
--tg-border-color-subtle: rgba(0, 0, 0, 0.05);
--tg-border-color-interactive: rgba(0, 0, 0, 0.11);
/* Border radius */
--tg-border-radius-sharp: 0;
--tg-border-radius-small: 4px;
--tg-border-radius-medium: 8px;
--tg-border-radius-large: 12px;
--tg-border-radius-pill: 9999px;
--tg-border-radius-circle: 50%;
/* Shorthand */
--tg-border-base: 1px solid var(--tg-border-color-base);
 
/* Color */
/* Text color */
--tg-color-emphasized: #1a1f15;
--tg-color-base: #2a3025;
--tg-color-subtle: #4e5a42;
--tg-color-inverted-progressive: #fff;
--tg-color-link: #36c;
/* Background color */
--tg-color-surface-0: #f9f4ee;
--tg-color-surface-1: #fffbf6;
--tg-color-surface-2: #f6ede0;
--tg-color-surface-3: #f0e3cf;
--tg-color-surface-4: #e6d9c5;
--tg-color-surface-5: #e3d2b8;
/* Progressive color */
--tg-color-progressive: #507b07;
--tg-color-progressive--hover: #588418;
--tg-color-progressive--active: #4a710a;
 
/* Font */
/* Font family */
--tg-font-family-heading: 'EB Garamond', 'EB Garamond-fallback', serif;
--tg-font-family-body: 'Lora', 'Lora-fallback', serif;
/* Font size */
--tg-font-size-x-small: 0.8125rem;
--tg-font-size-small: 0.875rem;
--tg-font-size-medium: 1rem;
--tg-font-size-large: 1.125rem;
--tg-font-size-x-large: 1.25rem;
--tg-font-size-xx-large: 1.5rem;
--tg-font-size-xxx-large: 2rem;
/* Font weight */
--tg-font-weight-regular: 400;
--tg-font-weight-medium: 500;
--tg-font-weight-semibold: 600;
/* Line height */
--tg-line-height-xxx-small: 1.25;
--tg-line-height-xx-small: 1.375;
--tg-line-height: 1.6;
 
/* Opacity */
--tg-opacity-pattern: 0.08;
 
/* Codex token backport */
/* Quiet color */
--background-color-button-quiet--hover: rgba(0, 0, 0, 0.07);
--background-color-button-quiet--active: rgba(0, 0, 0, 0.09);
}
 
html {
/* Force serif fonts to format number on the same line */
font-variant-numeric: lining-nums;
}
 
/* Blockquote */
blockquote {
padding-left: 1rem;
border-left: 2px solid var(--tg-border-color-base);
font-style: italic;
/* Fallback for non-Chromium browsers */
text-wrap: balance;
/* Only works on Chromium browsers */
text-wrap: pretty;
}
}


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


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


blockquote > p:first-child::before {
/* --- Encabezados Secundarios (Heading de Artículos) --- */
content: open-quote;
.mw-parser-output h2 {
  font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff; /* Color blanco */
  margin: 30px 0 10px;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
}
}


/* <cite> is wrapped in the last <p> */
.mw-parser-output h3 {
blockquote:has(cite) > p:nth-last-child(2)::after,
  font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
blockquote:not(:has(cite)) > p:last-child::after {
  font-size: 1.5rem;
content: close-quote;
  font-weight: bold;
  color: #ffffff; /* Color blanco */
  margin: 20px 0 10px;
}
}


/* LINKS */
/* --- Letra Capital al Inicio del Artículo --- */
a {
.mw-parser-output > p:first-of-type::first-letter {
/*color: var(--tg-color-link);*/
  font-size: 3rem;
  font-family: 'Cardo', serif; /* Letra inicial en Cardo */
  font-weight: bold;
  color: #ffffff; /* Blanco */
  float: left;
  line-height: 1;
  margin: 5px 10px 0 0;
}
}


.underlinelink a {
/* --- Hipervínculos --- */
text-decoration: underline !important;
.mw-parser-output a {
}
  text-decoration: none; /* Sin subrayado inicial */
.nounderlinelink a {
  color: #ffffff; /* Blanco */
text-decoration: none !important;
  position: relative;
}
  border-bottom: 4px solid transparent; /* Subrayado inicialmente invisible */
.nounderlinelink a:hover {
  padding-bottom: 2px;
text-decoration: underline !important;
  transition: all 0.3s ease-in-out; /* Transición suave */
}
}


/* SEQUENCE TEMPLATE */
.mw-parser-output a::after {
 
  content: ''; /* Sin contenido adicional */
td.seqwhite a {
  position: absolute;
color: #ffffff !important;
  left: 0;
}
  bottom: 0;
td.seqwhite div span a {
  width: 0; /* Subrayado inicialmente oculto */
color: #ffffff !important;
  height: 4px; /* Altura del subrayado */
}
  background: #f1c45e; /* Color del subrayado */
td.seqcream a {
  transition: width 0.4s ease-in-out; /* Efecto de deslizamiento */
color: #fffdd0 !important;
}
td.seqcream div span a {
color: #fffdd0 !important;
}
td.seqgrey a {
color: #2a2a2a !important;
}
td.seqgrey div span a {
color: #2a2a2a !important;
}
}


/* REFERENCES TEMPLATE */
.mw-parser-output a:hover::after {
ol.references {
  width: 100%; /* Subrayado visible de izquierda a derecha al pasar el mouse */
font-size: var(--tg-font-size-x-small);
margin-top: 0px;
padding-top: 0px;
}
.references-small {
font-size: 0.75rem;
}
ol.references > li:target {
background-color: #ddeeff;
}
sup.reference:target {
background-color: #ddeeff;
}
}


/* Infobox customizations so they scale for desktop and mobile appropriately */
.mw-parser-output a:hover {
@media only screen and (max-width: 600px) {
  color: #1a1a1f; /* Texto del enlace se mezcla con el fondo al pasar el mouse */
.tginfobox {
min-width: 100%;
}
}
}


@media only screen and (min-width: 601px) {
/* --- Listas --- */
.tginfobox {
.mw-parser-output ul,
width: 275px;
.mw-parser-output ol {
}
  margin-left: 20px;
}
}


@media screen and (max-width: 600px) {
.mw-parser-output li {
.spotify,
  line-height: 1.8; /* Espaciado cómodo entre elementos */
.template-month {
float: center;
margin-left: 10px;
}
}
}


.pi-type-film .pi-secondary-background {
/* --- Tablas --- */
background: rgb(238, 249, 238);
.mw-parser-output table {
background: linear-gradient(
  border-collapse: collapse;
90deg,
  width: 100%;
rgba(238, 249, 238, 1) 0%,
  color: #e4ddcf; /* Texto dentro de tablas */
rgba(171, 194, 171, 1) 35%,
  margin: 20px 0;
rgba(114, 139, 114, 1) 100%
);
}
}


.pi-data {
.mw-parser-output th,
display: flex;
.mw-parser-output td {
align-items: center;
  border: 1px solid #ffffff; /* Bordes blancos */
  padding: 10px;
  text-align: left;
}
}


.spotify {
/* --- Descripciones de Imágenes --- */
float: right;
.mw-parser-output .thumbcaption {
width: 300px;
  font-family: 'Cardo', serif; /* Fuente Cardo */
height: 100px;
  font-size: 0.875rem;
  color: #e4ddcf; /* Color del texto */
  text-align: center;
  margin-top: 5px;
}
}


@media screen and (max-width: 850px) {
/* --- Referencias y Notas --- */
#p-logo-text {
.mw-parser-output sup {
/* Tighten the logo a bit more to the left on mobile devices to prevent overlapping */
  font-family: 'Crimson Pro', serif; /* Fuente para referencias */
left: 3em;
  font-size: 0.75rem;
}
  color: #f1c45e; /* Color del texto */
}
}


/* Print styles */
.mw-parser-output sup a {
@media print {
  text-decoration: none;
:root {
  color: #f1c45e; /* Color del enlace */
/* Border */
/* Border color */
--tg-border-color-base: #aaa !important;
--tg-border-color-subtle: #ddd !important;
--tg-border-color-interactive: #000 !important;
/* Color */
/* Text color */
--tg-color-emphasized: #000 !important;
--tg-color-base: #222 !important;
--tg-color-subtle: #444 !important;
/* Background color */
--tg-color-surface-0: #fff !important;
--tg-color-surface-1: #fff !important;
--tg-color-surface-2: #fff !important;
--tg-color-surface-3: #fff !important;
--tg-color-surface-4: #fff !important;
--tg-color-surface-5: #fff !important;
/* Progressive color */
--tg-color-progressive: #000 !important;
}
}
}


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

Revision as of 02:03, 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">

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

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

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

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

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

/* --- Letra Capital al Inicio del Artículo --- */
.mw-parser-output > p:first-of-type::first-letter {
  font-size: 3rem;
  font-family: 'Cardo', serif; /* Letra inicial en Cardo */
  font-weight: bold;
  color: #ffffff; /* Blanco */
  float: left;
  line-height: 1;
  margin: 5px 10px 0 0;
}

/* --- Hipervínculos --- */
.mw-parser-output a {
  text-decoration: none; /* Sin subrayado inicial */
  color: #ffffff; /* Blanco */
  position: relative;
  border-bottom: 4px solid transparent; /* Subrayado inicialmente invisible */
  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 {
  color: #1a1a1f; /* Texto del enlace se mezcla con el fondo al pasar el mouse */
}

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

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

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

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

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

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

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

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