メニューを切り替える
Toggle preferences menu
個人設定を切り替える
ログインしていません
編集を行うと、IPアドレスが公開されます。

モジュール:Navbar/styles.css

提供: MONACA Wiki
/* {{sandbox other|| {{pp-template}} }} */
.Navbar {
	display: inline;
	font-size: 75%;		/* 英語版では88% */
	font-weight: normal;
}

.Navbar-collapse {
	float: left;
	text-align: left;
}

.Navbar-boxtext {
	word-spacing: 0;
}

.Navbar ul {
	display: inline-block;
	white-space: nowrap;
	line-height: inherit;
}

.Navbar-brackets::before {
	margin-right: -0.125em;
	content: '[ ';
}

.Navbar-brackets::after {
	margin-left: -0.125em;
	content: ' ]';
}

.Navbar li {
	word-spacing: -0.125em;
}

.Navbar a > span,
.Navbar a > abbr {
	text-decoration: inherit;
}

.Navbar-mini abbr {
	font-variant: small-caps;
	border-bottom: none;
	text-decoration: none;
	cursor: inherit;
}

.Navbar-ct-full {
	font-size: 110%;		/* 英語版では114% */
	margin: 0 7em;
}

.Navbar-ct-mini {
	font-size: 110%;		/* 英語版では114% */
	margin: 0 4em;
}

/* not the usual @media screen, we simply remove Navbar in @media print */
html.skin-theme-clientpref-night .Navbar li a abbr {
	color: var(--color-base) !important;
}

@media (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .Navbar li a abbr {
		color: var(--color-base) !important;
	}
}

@media print {
	.Navbar {
		display: none !important;
	}
}

/* 以下は英語版では除去済みだが、日本語版ではまだ残しておく */
/* Navbar styling when nested in infobox and Navbox
Should consider having a separate TemplateStyles for those specific places
using an infobox/Navbox and a Navbar, or possibly override from using template */
.infobox .Navbar {
	font-size: 80%;		/* 英語版では100% */
}

.Navbox .Navbar {
	display: block;
	font-size: 80%;		/* 英語版では100% */
}

.Navbox-title .Navbar {
	/* @noflip */
	float: left;
	/* @noflip */
	text-align: left;
	/* @noflip */
	margin-right: 0.5em;
}
/* {{sandbox other|| [[Category:テンプレートスタイル]] }} */