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
 
(45 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* --- Estilo General del Sitio --- */
/* --- 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 {
body {
   font-family: 'Newsreader', serif; /* Fuente para el texto principal */
   font-family: 'Cardo', serif; /* Fuente principal para el texto normal */
   background-color: #18181e; /* Fondo oscuro */
   background-color: #07070a; /* Fondo general del sitio */
   color: #ffffff; /* Texto blanco */
   color: #e4ddcf; /* Color del texto principal */
   line-height: 1.8; /* Espaciado cómodo */
   line-height: 1.5; /* Espaciado cómodo */
   margin: 0;
   margin: 0;
   padding: 0;
   padding: 0;
}
}


/* --- Contenido Principal --- */
/* --- Títulos del Artículo (no modificables) --- */
.mw-parser-output {
.firstHeading {
   font-family: 'Newsreader', serif; /* Fuente principal */
   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 */
   color: #ffffff; /* Color blanco */
  font-size: 1rem; /* Tamaño estándar */
   text-align: center;
  line-height: 1.8; /* Espaciado cómodo entre líneas */
   margin: 20px 0;
  margin: 0 10%; /* Márgenes laterales para centrar contenido */
   border-bottom: 2px solid #f1c45e; /* Línea decorativa */
}
 
/* --- Título Principal del Artículo --- */
#content h1.firstHeading {
  font-family: 'Libre Baskerville', serif; /* Fuente elegante */
  font-size: 2.5rem; /* Tamaño destacado */
  font-weight: normal; /* Sin negrita */
  color: #ffffff;
   text-align: center; /* Centrar el título */
   margin-top: 20px;
  margin-bottom: 20px;
   border-bottom: 2px solid #ffffff; /* Línea decorativa */
   padding-bottom: 10px;
   padding-bottom: 10px;
}
}


/* --- Encabezados Secundarios --- */
/* --- Texto Normal de los Artículos --- */
.mw-parser-output h2 {
.mw-parser-output {
   font-family: 'EB Garamond', serif;
   font-family: 'Cardo', serif; /* Fuente principal del contenido */
   font-size: 2rem;
   font-size: 1.1rem; /* Tamaño ligeramente más grande */
  font-weight: bold;
   color: #e4ddcf;
   color: #ffffff;
   line-height: 1.8; /* Espaciado cómodo */
  margin-top: 30px;
   margin: 0 10%;
  margin-bottom: 10px;
}
 
.mw-parser-output h3 {
  font-family: 'Ysabeau Infant', serif;
   font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
   margin-top: 20px;
}
}


/* --- Letra Capital al Inicio del Artículo --- */
/* --- Subrayado Exclusivo de los Enlaces en el Texto de Artículos --- */
.mw-parser-output > p:first-of-type::first-letter {
  font-size: 3rem;
  font-family: 'Libre Baskerville', serif;
  font-weight: bold;
  color: #ffffff;
  float: left;
  line-height: 1;
  margin-right: 10px;
  margin-top: 5px;
}
 
/* --- Hipervínculos en Artículos --- */
.mw-parser-output a {
.mw-parser-output a {
   text-decoration: none; /* Sin subrayado por defecto */
   text-decoration: none; /* Sin subrayado predeterminado */
   color: #ffffff; /* Blanco como el texto normal */
   color: #ffffff; /* Color del texto */
  border-bottom: 3.5px solid #f1c45e; /* Subrayado siempre visible */
   position: relative;
   position: relative;
  border-bottom: 4px solid rgba(255, 255, 0, 0.8); /* Subrayado amarillo sutil */
   transition: color 0.3s ease-in-out; /* Transición para el cambio de color */
  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 {
  color: #18181e; /* El texto se vuelve negro al pasar el mouse */
}
}


/* --- Efecto de Marcado en Enlaces (Deslizar de izquierda a derecha) --- */
.mw-parser-output a::after {
.mw-parser-output a::after {
   content: ''; /* Sin contenido por defecto */
   content: ''; /* Sin contenido visible */
   position: absolute;
   position: absolute;
   width: 0; /* Inicialmente no se ve */
   width: 0; /* Inicialmente no se ve */
   height: 100%; /* Cubre toda la altura del texto */
   height: 100%; /* Cubre toda la altura del texto */
   background: yellow; /* Subrayado a
   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 */
}


/* --- Listas --- */
/* --- Efecto de Cambio de Color del Texto al Pasar el Mouse --- */
.mw-parser-output ul,
.mw-parser-output a:hover {
.mw-parser-output ol {
   color: #1a1a1f; /* El texto se pone del mismo color que el fondo */
   margin-left: 20px;
}
}


.mw-parser-output li {
/* --- Efecto de Expansión del Marcado (de izquierda a derecha) al Pasar el Mouse --- */
   line-height: 1.8;
.mw-parser-output a:hover::after {
   width: 100%; /* El efecto de marcado se extiende */
}
}


/* --- Tablas --- */
/* --- Subheadings de Primer Nivel (Heading 2) --- */
.mw-parser-output table {
.mw-parser-output h2 {
   border-collapse: collapse;
   font-family: 'EB Garamond', serif; /* Fuente EB Garamond */
   width: 100%;
   font-size: 1.8rem; /* Tamaño reducido */
  font-weight: bold;
   color: #ffffff;
   color: #ffffff;
   margin: 20px 0;
   margin: 30px 0 10px;
  border-bottom: 2px solid #f1c45e; /* Línea decorativa */
}
}


.mw-parser-output th,
/* --- Subheadings Secundarios (Heading 3 a 5) --- */
.mw-parser-output td {
.mw-parser-output h3 {
   border: 1px solid #ffffff;
   font-family: 'Crimson Pro', serif; /* Fuente Crimson Pro */
   padding: 10px;
   font-size: 1.5rem; /* Tamaño reducido */
   text-align: left;
   font-weight: bold;
  color: #ffffff;
  margin: 20px 0 10px;
}
}


/* --- Descripciones de Imágenes --- */
.mw-parser-output h4,
.mw-parser-output .thumbcaption {
.mw-parser-output h5 {
   font-family: 'Ysabeau Infant', serif;
   font-family: 'Crimson Pro', serif;
   font-size: 0.875rem;
   font-size: 1.3rem; /* Tamaño ligeramente más pequeño */
  font-weight: bold;
   color: #ffffff;
   color: #ffffff;
  text-align: center;
   margin: 15px 0 8px;
   margin-top: 5px;
}
}


/* --- Referencias y Notas --- */
/* --- Heading 6 en Reddit Sans --- */
.mw-parser-output sup {
.mw-parser-output h6 {
   font-family: 'Crimson Pro', serif;
   font-family: 'Reddit Sans', sans-serif; /* Fuente Reddit Sans */
   font-size: 0.75rem;
   font-size: 1.1rem; /* Tamaño reducido */
   color: #ffcc00;
  font-weight: normal;
   color: #ffffff;
  margin: 10px 0 5px;
}
}


.mw-parser-output sup a {
/* --- Bloques de Cita Simplificados --- */
   text-decoration: none;
.mw-parser-output blockquote {
   color: #ffcc00;
   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 */
}
}


/* --- Botones (si aplica) --- */
::selection {
button, input[type="button"] {
   background-color: #f1c45e; /* Color del fondo de la selección de texto */
  font-family: 'Newsreader', serif;
   color: #1a1a1f; /* Color del texto seleccionado */
   background-color: #ffcc00;
   color: #18181e;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
}


button:hover, input[type="button"]:hover {
/* --- Estilo para la selección de texto --- */
   background-color: #ffffff;
::selection {
   color: #18181e;
   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 */
}
}

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