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


/* Estilo general del artículo */
/* --- Estilo General del Artículo --- */
body {
body {
   font-family: 'Newsreader', serif;
   font-family: 'Newsreader', serif;
Line 11: Line 11:
}
}


/* Tipografía del primer encabezado de los artículos */
/* --- Título Principal del Artículo --- */
h1.firstHeading {
h1.firstHeading {
   font-family: 'Libre Baskerville', serif;
   font-family: 'Libre Baskerville', serif;
Line 20: Line 20:
}
}


/* Estilo de la letra capital al inicio del artículo */
/* --- Encabezados Secundarios --- */
h2, h3, h4, h5 {
  font-family: 'EB Garamond', serif;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
}
 
h6 {
  font-family: 'Ysabeau Infant', serif;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
}
 
/* --- Letra Capital al Inicio del Artículo --- */
.mw-parser-output > p:first-of-type::first-letter {
.mw-parser-output > p:first-of-type::first-letter {
   font-size: 4rem;
   font-size: 4rem;
Line 32: Line 47:
}
}


/* Estilo de los hipervínculos */
/* --- Estilo de Hipervínculos en Artículos --- */
a {
.mw-parser-output a {
   text-decoration: none;
   text-decoration: none;
   border-bottom: 4px solid yellow; /* Subrayado grueso */
  color: #ffffff; /* Blanco, igual al resto del texto */
   color: inherit; /* Igual al color del texto */
   border-bottom: 6px solid rgba(255, 255, 0, 0.6); /* Raya gruesa y ligeramente transparente */
   transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  position: relative;
  transition: all 0.3s ease-in-out;
}
 
.mw-parser-output a:hover {
   color: #18181e; /* Negro al pasar el mouse */
}
 
.mw-parser-output a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 6px;
  background: yellow;
  bottom: 0;
  left: 0;
   transition: width 0.3s ease-in-out;
  z-index: -1; /* Para que el marcador quede detrás del texto */
}
 
.mw-parser-output a:hover::after {
  width: 100%; /* Subrayado de izquierda a derecha */
}
}


/* Efecto hover en los hipervínculos */
/* --- Estilo para Referencias o Números de Bibliografía --- */
a:hover {
sup {
   color: #18181e; /* Color del texto al pasar el mouse (mismo color del fondo) */
  font-family: 'Crimson Pro', serif;
   background-color: yellow; /* Fondo amarillo visible al pasar el mouse */
   font-size: 0.8rem; /* Tamaño pequeño pero legible */
   border-bottom: 4px solid transparent; /* Oculta la raya al activar el efecto hover */
   color: #ffffff; /* Blanco */
   font-weight: normal;
}
}


/* Ajustes adicionales para otros encabezados */
sup a {
h2, h3, h4, h5, h6 {
   text-decoration: none;
   font-family: 'Newsreader', serif;
  font-weight: bold;
   color: #ffffff;
   color: #ffffff;
   margin-top: 20px;
   border: none; /* Sin subrayado ni efectos en enlaces de referencias */
}
}


/* Ajustes generales para listas */
/* --- Ajustes Generales para Listas --- */
ul, ol {
ul, ol {
   margin-left: 20px;
   margin-left: 20px;
  color: #ffffff;
}
}


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


/* Ajustes para tablas dentro del contenido */
/* --- Estilo para Tablas --- */
table {
table {
   border-collapse: collapse;
   border-collapse: collapse;

Revision as of 23:07, 7 December 2024

<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=EB+Garamond:wght@400;700&family=Libre+Baskerville:wght@400;700&family=Newsreader:wght@400;700&family=Ysabeau+Infant: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;
}

/* --- Título Principal del Artículo --- */
h1.firstHeading {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

/* --- Encabezados Secundarios --- */
h2, h3, h4, h5 {
  font-family: 'EB Garamond', serif;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
}

h6 {
  font-family: 'Ysabeau Infant', serif;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
}

/* --- 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 Hipervínculos en Artículos --- */
.mw-parser-output a {
  text-decoration: none;
  color: #ffffff; /* Blanco, igual al resto del texto */
  border-bottom: 6px solid rgba(255, 255, 0, 0.6); /* Raya gruesa y ligeramente transparente */
  position: relative;
  transition: all 0.3s ease-in-out;
}

.mw-parser-output a:hover {
  color: #18181e; /* Negro al pasar el mouse */
}

.mw-parser-output a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 6px;
  background: yellow;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
  z-index: -1; /* Para que el marcador quede detrás del texto */
}

.mw-parser-output a:hover::after {
  width: 100%; /* Subrayado de izquierda a derecha */
}

/* --- Estilo para Referencias o Números de Bibliografía --- */
sup {
  font-family: 'Crimson Pro', serif;
  font-size: 0.8rem; /* Tamaño pequeño pero legible */
  color: #ffffff; /* Blanco */
  font-weight: normal;
}

sup a {
  text-decoration: none;
  color: #ffffff;
  border: none; /* Sin subrayado ni efectos en enlaces de referencias */
}

/* --- Ajustes Generales para Listas --- */
ul, ol {
  margin-left: 20px;
  color: #ffffff;
}

li {
  margin-bottom: 10px;
}

/* --- Estilo para Tablas --- */
table {
  border-collapse: collapse;
  width: 100%;
  color: #ffffff;
}

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