Ir al contenido

Diferencia entre revisiones de «MediaWiki:Common.css»

De Hytale Wiki | Wiki en Español
Página creada con «Los estilos CSS colocados aquí se aplicarán a todas las apariencias: Fondo general oscuro: body { background-color: #0b0f14; color: #e0e6f0; font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif; } Enlaces: a { color: #4fc3f7; } a:visited { color: #81d4fa; } a:hover { color: #b3e5fc; text-decoration: underline; } Cabecera: #mw-header, #mw-site-navigation, #mw-related-navigation { backgrou…»
 
Sin resumen de edición
 
(No se muestran 7 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */
/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */
/* Fondo general oscuro */
/* Fuerza modo oscuro siempre */
body {
html {
     background-color: #0b0f14;
     /* Simula que el usuario eligió night mode */
     color: #e0e6f0;
     color-scheme: dark;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
}
}
 
html.skin-theme-clientpref-night,
/* Enlaces */
html {
a {
     background-color: #0d1117 !important;
    color: #4fc3f7;
     color: #d9d9d9 !important;
}
a:visited {
    color: #81d4fa;
}
a:hover {
    color: #b3e5fc;
    text-decoration: underline;
}
 
/* Cabecera */
#mw-header,
#mw-site-navigation,
#mw-related-navigation {
    background-color: #111823;
    border-color: #1c2432;
}
 
/* Barra superior */
#mw-header {
    border-bottom: 1px solid #1c2432;
}
 
/* Contenido principal */
#content {
    background-color: #111823;
    border: 1px solid #1c2432;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
 
/* Titulos */
h1, h2, h3, h4 {
    color: #ffffff;
    text-shadow: 0 0 4px rgba(0,0,0,0.5);
}
 
/* Sidebar links */
#mw-site-navigation a {
    color: #cfd8dc;
}
#mw-site-navigation a:hover {
    color: #ffffff;
}
 
/* Botones (editar, etc.) */
.mw-ui-button,
.mw-ui-button.mw-ui-progressive {
    background-color: #3fa9f5;
    border-color: #3fa9f5;
    color: #fff;
}
.mw-ui-button:hover,
.mw-ui-button.mw-ui-progressive:hover {
     background-color: #5ec2ff;
     border-color: #5ec2ff;
}
 
/* Tabla infobox básica */
.infobox {
    background-color: #111823;
    border: 1px solid #2e3b4f;
}
.infobox th,
.infobox td {
    border-color: #2e3b4f;
}
}

Revisión actual - 20:36 26 nov 2025

/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */
/* Fuerza modo oscuro siempre */
html {
    /* Simula que el usuario eligió night mode */
    color-scheme: dark;
}
html.skin-theme-clientpref-night,
html {
    background-color: #0d1117 !important;
    color: #d9d9d9 !important;
}