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 11 ediciones intermedias del mismo usuario)
Línea 46: Línea 46:
}
}


/* Elimina completamente el selector automático */
html.skin-theme-clientpref-os,
html.skin-theme-clientpref-night,
html.skin-theme-clientpref-day {
    color-scheme: dark !important;
}
html.skin-theme-clientpref-os {
    --color-surface-0: #181818 !important;
}


/* Fuerza OSCURO sin importar preferencias del SO */
/* Forzar esquinas cuadradas en todas las wikitables */
@media (prefers-color-scheme: light) {
table.wikitable {
     :root {
     border-radius: 0 !important;
        --color-surface-0: #181818 !important;
    overflow: visible !important;
        --color-page-background: #121212 !important;
    }
}
}


/* Oculta botón toggle */
/* Por si el radius está en caption o primeras celdas */
#vector-night-mode-toggle {
table.wikitable > caption,
     display: none !important;
table.wikitable > * > tr:first-child > th:first-child,
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;
}