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=Newsreader:wght@400;700&family=Libre+Baskerville:wght@400;700&family=EB+Garamond:wght@400;700&family=Ysabeau+Infant:wght@400;700&family=Crimson+Pro: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">


/* --- Estilo General del Sitio --- */
/* --- Estilo General del Sitio --- */
Line 14: Line 14:
.mw-parser-output {
.mw-parser-output {
   font-family: 'Cardo', serif; /* Fuente principal */
   font-family: 'Cardo', serif; /* Fuente principal */
  color: #ffffff; /* Color blanco */
   font-size: 1rem; /* Tamaño estándar */
   font-size: 1rem; /* Tamaño estándar */
   line-height: 1.35; /* Espaciado cómodo entre líneas */
   line-height: 1.35; /* Espaciado cómodo */
   margin: 0 10%; /* Márgenes laterales para centrar contenido */
   margin: 0 10%; /* Márgenes laterales */
}
}


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


/* --- Encabezados Secundarios --- */
/* --- Encabezados Secundarios (Subheadings) --- */
.mw-parser-output h2 {
.mw-parser-output h2 {
   font-family: 'Garamond', serif;
   font-family: 'EB Garamond', serif; /* Fuente para h2 */
   font-size: 2rem;
   font-size: 2rem;
   font-weight: bold;
   font-weight: bold;
   color: #ffffff;
   color: #ffffff;
   margin-top: 30px;
   margin: 30px 0 10px;
  margin-bottom: 10px;
}
}


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


Line 54: Line 51:
.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: 'Libre Baskerville', serif;
   font-family: 'Cardo', serif;
   font-weight: bold;
   font-weight: bold;
   color: #ffffff;
   color: #ffffff;
   float: left;
   float: left;
   line-height: 1;
   line-height: 1;
   margin-right: 10px;
   margin: 5px 10px 0 0;
  margin-top: 5px;
}
}


/* --- Hipervínculos en Artículos --- */
/* --- Hipervínculos en Artículos --- */
.mw-parser-output a {
.mw-parser-output a {
   text-decoration: none; /* Sin subrayado por defecto */
   text-decoration: none;
   color: #ffffff; /* Blanco como el texto normal */
   color: #ffffff; /* Blanco como el texto normal */
  position: relative;
   border-bottom: 2px solid rgba(255, 255, 0, 0.8); /* Subrayado amarillo */
   border-bottom: 4px solid rgba(255, 255, 0, 0.8); /* Subrayado amarillo sutil */
   transition: all 0.3s ease-in-out; /* Transición suave */
  padding-bottom: 2px; /* Ajusta la proximidad del subrayado */
   transition: all 0.3s ease-in-out; /* Transición suave para el cambio */
}
}


.mw-parser-output a:hover {
.mw-parser-output a:hover {
   color: #18181e; /* El texto se vuelve negro al pasar el mouse */
   color: #18181e; /* El texto se vuelve negro al pasar el mouse */
}
   background-color: yellow; /* Fondo amarillo en hover */
 
.mw-parser-output a::after {
  content: ''; /* Sin contenido por defecto */
  position: absolute;
  width: 0; /* Inicialmente no se ve */
  height: 100%; /* Cubre toda la altura del texto */
   background: yellow; /* Subrayado amarillo */
  bottom: 0;
  left: 0;
  z-index: -1; /* Lo coloca detrás del texto */
  transition: width 0.4s ease-in-out; /* Transición para el efecto */
}
 
.mw-parser-output a:hover::after {
  width: 100%; /* Al pasar el mouse, se extiende el subrayado */
}
}


Line 120: Line 99:
/* --- Descripciones de Imágenes --- */
/* --- Descripciones de Imágenes --- */
.mw-parser-output .thumbcaption {
.mw-parser-output .thumbcaption {
   font-family: 'Ysabeau Infant', serif;
   font-family: 'Cardo', serif;
   font-size: 0.875rem;
   font-size: 0.875rem;
   color: #ffffff;
   color: #ffffff;
Line 129: Line 108:
/* --- Referencias y Notas --- */
/* --- Referencias y Notas --- */
.mw-parser-output sup {
.mw-parser-output sup {
   font-family: 'Crimson Pro', serif;
   font-family: 'Crimson Pro', serif; /* Fuente para referencias */
   font-size: 0.75rem;
   font-size: 0.75rem;
   color: #ffcc00;
   color: #ffcc00;
Line 140: Line 119:


/* --- Estilo para las Citas --- */
/* --- Estilo para las Citas --- */
.mw-parser-output cite {
.mw-parser-output blockquote {
   font-family: 'Crimson Pro', serif; /* Fuente para citas */
   font-family: 'Crimson Pro', serif; /* Fuente para citas */
   font-size: 0.9rem; /* Tamaño pequeño */
   font-size: 1rem;
   color: #ffffff; /* Color blanco */
   color: #ffffff;
   background-color: #333333; /* Fondo ligeramente gris para destacarse */
   background-color: #333333; /* Fondo gris oscuro */
   padding: 0 5px; /* Espaciado dentro de las citas */
   padding: 10px 15px; /* Espaciado interno */
   border-radius: 3px; /* Bordes redondeados */
   border-left: 5px solid #ffcc00; /* Línea decorativa a la izquierda */
   font-style: italic; /* Cursiva para las citas */
  margin: 20px 0;
   font-style: italic;
}
}

Revision as of 01:40, 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">

/* --- Estilo General del Sitio --- */
body {
  font-family: 'Cardo', serif; /* Fuente para el texto principal */
  background-color: #18181e; /* Fondo oscuro */
  color: #ffffff; /* Texto blanco */
  line-height: 1.35; /* Espaciado cómodo */
  margin: 0;
  padding: 0;
}

/* --- Contenido Principal --- */
.mw-parser-output {
  font-family: 'Cardo', serif; /* Fuente principal */
  font-size: 1rem; /* Tamaño estándar */
  line-height: 1.35; /* Espaciado cómodo */
  margin: 0 10%; /* Márgenes laterales */
}

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

/* --- Encabezados Secundarios (Subheadings) --- */
.mw-parser-output h2 {
  font-family: 'EB Garamond', serif; /* Fuente para h2 */
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin: 30px 0 10px;
}

.mw-parser-output h3 {
  font-family: 'EB Garamond', serif; /* Fuente para h3 */
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  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;
  font-weight: bold;
  color: #ffffff;
  float: left;
  line-height: 1;
  margin: 5px 10px 0 0;
}

/* --- Hipervínculos en Artículos --- */
.mw-parser-output a {
  text-decoration: none;
  color: #ffffff; /* Blanco como el texto normal */
  border-bottom: 2px solid rgba(255, 255, 0, 0.8); /* Subrayado amarillo */
  transition: all 0.3s ease-in-out; /* Transición suave */
}

.mw-parser-output a:hover {
  color: #18181e; /* El texto se vuelve negro al pasar el mouse */
  background-color: yellow; /* Fondo amarillo en hover */
}

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

.mw-parser-output li {
  line-height: 1.8;
}

/* --- Tablas --- */
.mw-parser-output table {
  border-collapse: collapse;
  width: 100%;
  color: #ffffff;
  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: #ffffff;
  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: #ffcc00;
}

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

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