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: Revertido
Línea 47: Línea 47:




/* -----------------------------
html {
  DARK MODE GLOBAL
     color-scheme: dark !important;
  ----------------------------- */
     background-color: #0a0a0f !important;
 
/* Fondo general */
body, .mw-body {
    background: #0a0a0f !important;
     color: #e0e0e0 !important;
}
 
/* Contenedor principal */
#content, .mw-content-text {
    background: #0f0f18 !important;
    color: #e5e5e5 !important;
}
 
/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0 !important;
}
 
/* Menú de navegación */
#mw-head, .vector-menu-content {
     background: #11131a !important;
    color: #e5e5e5 !important;
}
 
/* Enlaces */
a, a:visited {
    color: #7aaaff !important;
}
a:hover {
    color: #aaccff !important;
}
 
/* Tablas / cajas */
table, .mw-table, .wikitable {
    background: #12131a !important;
    color: #e5e5e5 !important;
}
 
/* Formularios, botones y cajas */
input, textarea, select, button {
    background: #1b1c25 !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
}
 
/* Borde de cajas y secciones */
div, section, .mw-parser-output {
    border-color: #222 !important;
}
 
/* Scrollbars oscuras */
::-webkit-scrollbar {
    background: #0a0a0f !important;
    width: 11px;
}
::-webkit-scrollbar-thumb {
    background: #3a3f55 !important;
    border-radius: 6px;
}
 
/* Footer */
#footer {
    background: #11131a !important;
    color: #ccc !important;
}
}

Revisión del 17:20 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;
}


html {
    color-scheme: dark !important;
    background-color: #0a0a0f !important;
}