コンテンツにスキップ

利用者:Fryed-peach/navbox.css

お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。

多くの WindowsLinux のブラウザ

  • Ctrl を押しながら F5 を押す。

Mac における Safari

  • Shift を押しながら、更新ボタン をクリックする。

Mac における ChromeFirefox

  • Cmd Shift を押しながら R を押す。

詳細についてはWikipedia:キャッシュを消すをご覧ください。

/* Default style for navigation boxes */
.mavbox {                     /* mavbox container style */
    border: 1px solid #aaa;
    width: 100%;
    margin: auto;
    clear: both;
    font-size: 88%;
    text-align: center;
    padding: 1px;
}
.mavbox-inner,
.mavbox-subgroup {
    width: 100%;
}
.mavbox-group,
.mavbox-title,
.mavbox-abovebelow {
    padding: 0.25em 1em;      /* Title, group and above/below styles */
    line-height: 1.5em;
    text-align: center;
}
th.mavbox-group {             /* Group style */
    white-space: nowrap;
    /* @noflip */
    text-align: right;
}
.mavbox,
.mavbox-subgroup {
    background: #fdfdfd;      /* Background color */
}
.mavbox-list {
    line-height: 1.8em;
    border-color: #fdfdfd;    /* Must match background color */
}
.mavbox th,
.mavbox-title {
    background: #ccccff;      /* Level 1 color */
}
.mavbox-abovebelow,
th.mavbox-group,
.mavbox-subgroup .mavbox-title {
    background: #ddddff;      /* Level 2 color */
}
.mavbox-subgroup .mavbox-group,
.mavbox-subgroup .mavbox-abovebelow {
    background: #e6e6ff;      /* Level 3 color */
}
.mavbox-even {
    background: #f7f7f7;      /* Even row striping */
}
.mavbox-odd {
    background: transparent;  /* Odd row striping */
}
table.mavbox + table.mavbox {  /* Single pixel border between adjacent mavboxes */
    margin-top: -1px;          /* (doesn't work for IE6, but that's okay)       */
}
.mavbox .hlist td dl,
.mavbox .hlist td ol,
.mavbox .hlist td ul,
.mavbox td.hlist dl,
.mavbox td.hlist ol,
.mavbox td.hlist ul {
    padding: 0.125em 0;       /* Adjust hlist padding in mavboxes */
}
ol + table.mavbox,
ul + table.mavbox {
    margin-top: 0.5em;        /* Prevent lists from clinging to mavboxes */
}
 
/* Default styling for Navbar template */
.navbar {
    display: inline;
    font-size: 88%;
    font-weight: normal;
}
.navbar ul {
    display: inline;
    white-space: nowrap;
}
.navbar li {
    word-spacing: -0.3em;
}
/* 以下 hlist の日本語版拡張への対応 */
.hlist .navbar li:after {
    content: " ·";
    font-weight: bold;
}
.hlist .navbar li:last-child:after {
    content: none;
}
/* For IE8 */
.hlist .navbar li.hlist-last-child:after {
    content: none;
}
/* Navbar styling when nested in mavbox */
.mavbox .navbar {
    display: block;
    font-size: 100%;
}
.mavbox .navbar li {
    font-size: 88%;
}
.mavbox-title .navbar {
    /* @noflip */
    float: left;
    /* @noflip */
    text-align: left;
    /* @noflip */
    margin-right: 0.5em;
    width: 6em;
}
 
/* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
   in [[MediaWiki:Common.js]] are styled here so they can be customised. */
.collapseButton {
    /* @noflip */
    float: right;
    font-weight: normal;
    /* @noflip */
    margin-left: 0.5em;
    /* @noflip */
    text-align: right;
    width: auto;
}
/* In mavboxes, the show/hide button balances the v·d·e links
   from [[Template:Navbar]], so they need to be the same width. */
.mavbox .collapseButton {
    width: 6em;
}
 
/* Styling for JQuery makeCollapsible, matching that of collapseButton */
.mw-collapsible-toggle {
    font-weight: normal;
    /* @noflip */
    text-align: right;
}
.mavbox .mw-collapsible-toggle {
    width: 6em;
}