Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 23:07, 7 December 2024 by Isdavid (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
<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;
}