Template:Infobox small/styles.css

From OpenStreetMap Wiki
Jump to navigation Jump to search
.ib-small {
	background: #dfd;
	border: 1px solid #aaa;
}

.ib-small-header {
	border-bottom: 1px solid #aaa;
}

.ib-small-titleInfo {
	color: #aaa;
}

/* Colours for dark mode GUI */
@media screen {
    html.skin-theme-clientpref-night .ib-small {
	    background: #575;
	}
	html.skin-theme-clientpref-night a {
		color: #98b3f8;
	}
	html.skin-theme-clientpref-night a:visited {
		color: #b7a9dd;
	}
}

@media screen and ( prefers-color-scheme: dark ) {
    html.skin-theme-clientpref-os .ib-small {
        background: #575;
    }
	html.skin-theme-clientpref-os a {
		color: #98b3f8;
	}
	html.skin-theme-clientpref-os a:visited {
		color: #b7a9dd;
	}
}