MediaWiki:Gadget-NavboxStyle.css: Difference between revisions
From SmashWiki, the Super Smash Bros. wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* Navbox | /* Navbox template CSS */ | ||
/* | /* Show/hide button */ | ||
.navbox .mw-collapsible-toggle { | .navbox .mw-collapsible-toggle { | ||
text-align: right; | text-align: right; | ||
Line 112: | Line 59: | ||
} | } | ||
/* Special move | /* Special move boxes */ | ||
.mobile .sm-single { | .mobile .sm-single { | ||
font-size: 85% !important; | font-size: 85% !important; | ||
Line 121: | Line 68: | ||
} | } | ||
/* Moveset | /* Moveset boxes */ | ||
.mobile .moveset-nav { | .mobile .moveset-nav { | ||
margin-top: 7.5px !important; | margin-top: 7.5px !important; | ||
margin-bottom: 0 !important; | margin-bottom: 0 !important; | ||
} | } |
Revision as of 16:04, April 16, 2021
/* Navbox template CSS */
/* Show/hide button */
.navbox .mw-collapsible-toggle {
text-align: right;
min-width: 3.729em;
}
/* Site styles */
table.navbox { /* navbox container style */
border: 1px solid #aaa;
width: 100%;
margin: auto;
clear: both;
font-size: 88%;
text-align: center;
padding: 1px;
}
table.navbox + table.navbox {
margin-top: -1px; /* single pixel border between adjacent navboxes (doesn't work for IE6, but that's okay) */
}
.navbox-title, .navbox-abovebelow, table.navbox th {
text-align: center; /* title and above/below styles */
padding-left: 1em;
padding-right: 1em;
}
.navbox-group { /* group style */
white-space: nowrap;
text-align: right;
font-weight: bold;
padding-left: 1em;
padding-right: 1em;
}
.navbox, .navbox-subgroup {
background: #fdfdfd; /* Background color */
}
.navbox-list {
border-left: 2px solid #fdfdfd; /* Must match background color */
}
.navbox-title, table.navbox th {
background: #ccccff; /* Level 1 color */
}
.navbox-abovebelow, .navbox-group, .navbox-subgroup .navbox-title {
background: #ddddff; /* Level 2 color */
}
.navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
background: #e6e6ff; /* Level 3 color */
}
.navbox-even {
background: #f7f7f7; /* Even row striping */
}
.navbox-odd {
background: transparent; /* Odd row striping */
}
@media print {
.navbox {
display: none;
}
}
/* Special move boxes */
.mobile .sm-single {
font-size: 85% !important;
margin: 15px 0 0 !important;
}
.mobile .sm-single + .sm-single {
margin-top: 5px !important;
}
/* Moveset boxes */
.mobile .moveset-nav {
margin-top: 7.5px !important;
margin-bottom: 0 !important;
}