Menú alternativo
Alternar el menú de preferencias
Menú alternativo personal
No has accedido
Tu dirección IP será visible si haces alguna edición

Diferencia entre revisiones de «MediaWiki:Common.css»

Página de la interfaz de MediaWiki
Sin resumen de edición
Etiqueta: Revertido
Sin resumen de edición
Etiqueta: Reversión manual
 
(No se muestran 14 ediciones intermedias del mismo usuario)
Línea 47: Línea 47:




/*------------------------------------------------------------------------
/* Forzar esquinas cuadradas en todas las wikitables */
  Forzar modo oscuro para todos
table.wikitable {
------------------------------------------------------------------------*/
     border-radius: 0 !important;
 
     overflow: visible !important;
html, body {
     color-scheme: dark !important;
    background-color: #0a0a0f !important;
}
 
body, #mw-content-text, #content {
    background-color: #0a0a0f !important;
    color: #e5e5e5 !important;
}
 
/* Colores de enlaces */
a, a:visited {
    color: #7aaaff !important;
}
a:hover {
    color: #aaccff !important;
}
 
/* Cajas y secciones */
div, section, .mw-body-content {
    background: #11131a !important;
     color: #e5e5e5 !important;
}
}


/* Menú lateral */
/* Por si el radius está en caption o primeras celdas */
#mw-panel, .vector-body, .mw-body {
table.wikitable > caption,
     background: #11131a !important;
table.wikitable > * > tr:first-child > th:first-child,
    color: #e5e5e5 !important;
table.wikitable > * > tr:first-child > th:last-child {
     border-radius: 0 !important;
}
}

Revisión actual - 18:51 19 feb 2026

/* TITULO PRINCIPAL */
.home-index-title {
  background: #dfe6ea;
  color: #111;
  text-align: center;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  margin: 24px 0 16px;
  letter-spacing: 1px;
}

/* GRID PRINCIPAL */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* COLUMNA */
.home-column {
  background: var(--color-surface-2);
  padding: 16px;
  border-radius: 14px;
}

/* ICONOS */
.home-column img {
  display: block;
  margin: 14px auto 6px;
}

/* LISTAS */
.home-column ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.home-column li {
  margin: 4px 0;
}


#ca-viewsource1 {
  display: none !important;
}


/* Forzar esquinas cuadradas en todas las wikitables */
table.wikitable {
    border-radius: 0 !important;
    overflow: visible !important;
}

/* Por si el radius está en caption o primeras celdas */
table.wikitable > caption,
table.wikitable > * > tr:first-child > th:first-child,
table.wikitable > * > tr:first-child > th:last-child {
    border-radius: 0 !important;
}