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:Citizen.css»

Página de la interfaz de MediaWiki
Página creada con «Todo CSS colocado en esta página será cargado para los usuarios que usen la apariencia "Citizen": body::before { content: ''; background: url("https://uploads.fjdwiki.top/es/9/93/BG_FJD.png"); background-size: cover; background-repeat: no-repeat; background-position: center; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; } .citizen-body { background: var(--color-surface-1); padding: 2em; border-radius: 12px; } .mw-lo…»
 
Sin resumen de edición
Línea 14: Línea 14:
}
}


.citizen-body {
.citizen-body,
background: var(--color-surface-1);
.citizen-menu,
.citizen-toc {
background: var(--color-surface-0);
padding: 2em;
padding: 2em;
border-radius: 12px;
border-radius: 12px;
Línea 22: Línea 24:
.mw-logo-wordmark {
.mw-logo-wordmark {
display: none;
display: none;
}
.citizen-drawer__header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
html.skin-theme-clientpref-night .citizen-header .cdx-button,
html.skin-theme-clientpref-night .citizen-main-menu .mw-list-item > a:hover .citizen-ui-icon,
html.skin-theme-clientpref-night .citizen-main-menu .mw-list-item > a:focus .citizen-ui-icon {
color: #fff !important;
}
html.skin-theme-clientpref-night .citizen-header .mw-logo .mw-ui-icon-home {
opacity: 0;
}
html.skin-theme-clientpref-night .citizen-header .mw-logo:hover .mw-ui-icon-home {
opacity: 1;
}
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .citizen-header .cdx-button,
html.skin-theme-clientpref-os .citizen-main-menu .mw-list-item > a:hover .citizen-ui-icon,
html.skin-theme-clientpref-os .citizen-main-menu .mw-list-item > a:focus .citizen-ui-icon {
color: #fff !important;
}
html.skin-theme-clientpref-os .citizen-header .mw-logo .mw-ui-icon-home {
opacity: 0;
}
html.skin-theme-clientpref-os .citizen-header .mw-logo:hover .mw-ui-icon-home {
opacity: 1;
}
}
}

Revisión del 03:26 31 jul 2026

/* Todo CSS colocado en esta página será cargado para los usuarios que usen la apariencia "Citizen" */
body::before {
	content: '';
	background: url("https://uploads.fjdwiki.top/es/9/93/BG_FJD.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -2;
}

.citizen-body,
.citizen-menu,
.citizen-toc {
	background: var(--color-surface-0);
	padding: 2em;
	border-radius: 12px;
}

.mw-logo-wordmark {
	display: none;
}

.citizen-drawer__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

html.skin-theme-clientpref-night .citizen-header .cdx-button,
html.skin-theme-clientpref-night .citizen-main-menu .mw-list-item > a:hover .citizen-ui-icon,
html.skin-theme-clientpref-night .citizen-main-menu .mw-list-item > a:focus .citizen-ui-icon {
	color: #fff !important;
}

html.skin-theme-clientpref-night .citizen-header .mw-logo .mw-ui-icon-home {
	opacity: 0;
}

html.skin-theme-clientpref-night .citizen-header .mw-logo:hover .mw-ui-icon-home {
	opacity: 1;
}

@media (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .citizen-header .cdx-button,
	html.skin-theme-clientpref-os .citizen-main-menu .mw-list-item > a:hover .citizen-ui-icon,
	html.skin-theme-clientpref-os .citizen-main-menu .mw-list-item > a:focus .citizen-ui-icon {
		color: #fff !important;
	}

	html.skin-theme-clientpref-os .citizen-header .mw-logo .mw-ui-icon-home {
		opacity: 0;
	}

	html.skin-theme-clientpref-os .citizen-header .mw-logo:hover .mw-ui-icon-home {
		opacity: 1;
	}
}