Advertisement
Technobliterator

SassMeister - input.scss

Nov 30th, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 76.10 KB | None | 0 0
  1. // ----
  2. // Sass (v3.4.14)
  3. // Compass (v1.0.3)
  4. // ----
  5.  
  6. /* ######################################################################## */
  7. /* ### CSS placed here will be applied to all skins on the entire site. ### */
  8. /* ### Compiled via SCSS.                                              ### */
  9. /* ### See also: [[MediaWiki:Monobook.css]] & [[MediaWiki:Wikia.css]]   ### */
  10. /* ######################################################################## */
  11.  
  12. // Don't really need this. //
  13. @mixin navbox($url) {
  14.    background-image: url(#{"//vignette2.wikia.nocookie.net/finalfantasy/images/"}#{$url}), linear-gradient(to right, #FFFFFF 100px, rgba(255, 255, 255, 0) 300px);
  15.    background-repeat: no-repeat;
  16. }
  17.  
  18. .portable-infobox {
  19.    // defaults for all PIs //
  20.    .pi-background {
  21.        background-color: #F2F2F2;
  22.    }
  23.  
  24.    .pi-secondary-background {
  25.        // The "A" header //
  26.  
  27.    }
  28.  
  29.    .pi-secondary-font {
  30.        // The text for "A" and "B" headers //
  31.        a:link {}
  32.    }
  33.  
  34.    .pi-header {}
  35.  
  36.    .pi-item {
  37.        &.pi-title {
  38.            font-weight: 900;
  39.            margin-bottom: 0;
  40.            padding-bottom: 0;
  41.            text-align: center;
  42.        }
  43.  
  44.        &.pi-data {
  45.            .pi-data-label {
  46.                // The "B" header //
  47.          
  48.            }
  49.  
  50.            .pi-data-value {
  51.                margin: 0 auto;
  52.            }
  53.        }
  54.  
  55.        &.pi-image {}
  56.  
  57.        &.pi-group {
  58.            .pi-horizontal-group {
  59.                .pi-header {}
  60.  
  61.                &-item.pi-data-label {}
  62.  
  63.                &-item.pi-data-value {}
  64.            }
  65.  
  66.            .pi-header {}
  67.        }
  68.    }
  69.  
  70.    .pi-font {
  71.        a:link {}
  72.    }
  73.  
  74.    .pi-item-spacing {}
  75.  
  76.    .pi-border-color {}
  77. }
  78.  
  79. .infobox .portable-infobox {
  80.    margin: 0;
  81. }
  82.  
  83. @mixin portable($theme, $a-bg, $a-text, $b-bg, $b-text, $b-link) {
  84.    // changes per theme
  85.    .portable-infobox.pi-theme-#{$theme} {
  86.        .pi-background {}
  87.  
  88.        .pi-secondary-background {
  89.            // The "A" header //
  90.            background-color: $a-bg;
  91.            color: $a-text;
  92.        }
  93.  
  94.        .pi-secondary-font {
  95.            // The text for "A" and "B" headers //
  96.            a:link {}
  97.        }
  98.  
  99.        .pi-header {}
  100.  
  101.        .pi-item {
  102.            &.pi-title {}
  103.  
  104.            &.pi-data {
  105.                .pi-data-label {
  106.                    // The "B" header //
  107.                    background-color: $b-bg;
  108.                    color: $b-text;
  109.  
  110.                    a:link {
  111.                        color: $b-link;
  112.                    }
  113.                }
  114.  
  115.                .pi-data-value {}
  116.            }
  117.  
  118.            &.pi-image {}
  119.  
  120.            &.pi-group {
  121.                .pi-horizontal-group {
  122.                    .pi-header {}
  123.  
  124.                    &-item.pi-data-label {}
  125.  
  126.                    &-item.pi-data-value {}
  127.                }
  128.  
  129.                .pi-header {}
  130.            }
  131.        }
  132.  
  133.        .pi-font {
  134.            a:link {}
  135.        }
  136.  
  137.        .pi-item-spacing {}
  138.  
  139.        .pi-border-color {}
  140.    }
  141. }
  142.  
  143. @mixin game($game, $a-bg, $a-text, $b-bg, $b-text, $url) {
  144.    $b-link: $b-text !default;
  145.  
  146.    .#{$game}a, .#{$game}.a, .#{$game} .a, .portable-infobox.pi-theme-#{$game} .pi-secondary-background {
  147.        background-color: $a-bg;
  148.        color: $a-text;
  149.    }
  150.  
  151.    .#{$game}b, .#{$game}.b, .#{$game} .b, .portable-infobox.pi-theme-#{$game} .pi-item.pi-data .pi-data-label {
  152.        background-color: $b-bg;
  153.        color: $b-text;
  154.    }
  155.  
  156.    @if $url != null {
  157.        ##{$game}-nav .navbox .maintitle {
  158.            background-image: url(#{"//vignette2.wikia.nocookie.net/finalfantasy/images/"}#{$url}), linear-gradient(to right, #FFFFFF 100px, rgba(255, 255, 255, 0) 300px);
  159.            background-repeat: no-repeat;
  160.        }
  161.    }
  162.  
  163.    //  @include portable($game,$a-bg,$a-text,$b-bg,$b-text,$b-link);
  164. }
  165.  
  166. /* Fonts */
  167. @font-face {
  168.    font-family: "Ferrum";
  169.    src: url("http://images.wikia.com/finalfantasy/images/f/f0/Ferrum.eot");
  170. }
  171.  
  172. @font-face {
  173.    font-family: "Ferrum";
  174.    src: url("http://images.wikia.com/finalfantasy/images/a/a8/Ferrum.ttf");
  175. }
  176.  
  177. @font-face {
  178.    font-family: "Ferrum Condensed";
  179.    src: url("http://images.wikia.com/finalfantasy/images/8/8d/Ferrum-condensed.eot");
  180. }
  181.  
  182. @font-face {
  183.    font-family: "Ferrum Condensed";
  184.    src: url("http://images.wikia.com/finalfantasy/images/8/86/Ferrum-condensed.ttf");
  185. }
  186.  
  187. /* Text color */
  188. body, .darktext {
  189.    color: #000000;
  190. }
  191.  
  192. .lighttext {
  193.    color: #CCCCCC;
  194. }
  195.  
  196. abbr {
  197.    background: none;
  198.    border-bottom: 1px dotted black;
  199.    cursor: help;
  200. }
  201.  
  202. /* OL, UL, LI */
  203. .WikiaArticle {
  204.    li {
  205.        line-height: 22px;
  206.        margin: 3px 0;
  207.    }
  208.  
  209.    ol {
  210.        list-style: outside none decimal;
  211.    }
  212.  
  213.    ul {
  214.        list-style: outside none square;
  215.    }
  216.  
  217.    ul, ol {
  218.        margin: 0.4em 0 0.5em 2.5em;
  219.    }
  220. }
  221.  
  222. ol.ol-container {
  223.    margin-left: 0;
  224.  
  225.    li {
  226.        margin-left: 2.5em;
  227.    }
  228. }
  229.  
  230. .page-listings ul {
  231.    list-style: outside none none;
  232.    margin: 0;
  233. }
  234.  
  235. /* link handling */
  236. .SL, .lightlinks, .forcelightlinks[class][class], .lighttext {
  237.    a:link {
  238.        color: #B0E0E6;
  239.    }
  240.  
  241.    a:visited {
  242.        color: #D8BFD8;
  243.    }
  244.  
  245.    a.new:link {
  246.        color: #FFAAAA;
  247.    }
  248.  
  249.    a.new:visited {
  250.        color: #DDAAAA;
  251.    }
  252.  
  253.    a.new:hover {
  254.        color: #FFAAAA;
  255.    }
  256. }
  257.  
  258. .NL, .darklinks, .forcedarklinks[class][class], .darktext, .forumheader, .proto-gallery .b {
  259.    a:link {
  260.        color: #002BB8;
  261.    }
  262.  
  263.    a:visited {
  264.        color: #5A3696;
  265.    }
  266.  
  267.    a.new:link {
  268.        color: #CC2200;
  269.    }
  270.  
  271.    a.new:visited {
  272.        color: #A5585A;
  273.    }
  274. }
  275.  
  276. #mw-content-text {
  277.    font-size: 14px;
  278. }
  279.  
  280. .mw-body-content p {
  281.    margin-bottom: 30px;
  282. }
  283.  
  284. div#content {
  285.    line-height: 22px;
  286. }
  287.  
  288. .WikiaMainContent {
  289.    a:visited {
  290.        color: #5A3696;
  291.    }
  292.  
  293.    a.new:visited {
  294.        color: #A5585A;
  295.    }
  296.  
  297.    a.external, a.external:visited {
  298.        color: #3366BB;
  299.    }
  300. }
  301.  
  302. /*J*/
  303. .jTemplate {
  304.    font-weight: normal;
  305.    font-style: normal;
  306.  
  307.    .romaji {
  308.        font-style: italic;
  309.    }
  310.  
  311.    .lit:before {
  312.        content: "“";
  313.    }
  314.  
  315.    .lit:after {
  316.        content: "”";
  317.    }
  318.  
  319.    .help {
  320.        font-size: 9px;
  321.        font-weight: bold;
  322.        line-height: 0;
  323.        vertical-align: super;
  324.    }
  325. }
  326.  
  327. /*prk*/
  328. .PRK {
  329.    font-style: italic;
  330.  
  331.    .stressed {
  332.        font-variant: small-caps;
  333.        font-weight: bold;
  334.    }
  335. }
  336.  
  337. /*checkmark*/
  338. %checks {
  339.    background-position: center center;
  340.    background-repeat: no-repeat;
  341.    display: inline-block;
  342.    height: 17px;
  343.    vertical-align: middle;
  344.    width: 15px;
  345. }
  346.  
  347. .checkmark {
  348.    @extend %checks;
  349.  
  350.    background-image: url("//vignette2.wikia.nocookie.net/finalfantasy/images/6/69/Yes_check.png/revision/latest/scale-to-width-down/15?format=png");
  351. }
  352.  
  353. .xmark {
  354.    @extend %checks;
  355.  
  356.    background-image: url("//vignette2.wikia.nocookie.net/finalfantasy/images/6/60/X_mark.png/revision/latest/scale-to-width-down/15?format=png");
  357. }
  358.  
  359. /*Thumb display*/
  360. .WikiaArticle .thumbinner, figure.thumbinner, div.thumbinner {
  361.    background-color: transparent;
  362.    background-image: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(222, 222, 222, 0.5) 100%);
  363.    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(222, 222, 222, 0.5) 100%);
  364.    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(222, 222, 222, 0.5)));
  365.    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(222, 222, 222, 0.5) 100%);
  366.    background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(222, 222, 222, 0.5) 100%);
  367.    border: 1px solid #D9D9D9;
  368.    overflow: hidden;
  369.    padding: 3px;
  370.    text-align: center;
  371. }
  372.  
  373. .thumb.thumbinner.autowidth {
  374.    display: inline-block;
  375. }
  376.  
  377. /*gallery text*/
  378. .proto-gallery .b {
  379.    color: black;
  380. }
  381.  
  382. /*Highlight selected reference*/
  383. .WikiaArticle .references > li:target, #bodyContent .references > li:target {
  384.    background-color: #D8E3F5;
  385. }
  386.  
  387. /* Reflist font size */
  388. .references-small {
  389.    font-size: 90%;
  390. }
  391.  
  392. /* Mark redirects in Special:Allpages and Special:Watchlist */
  393. .allpagesredirect {
  394.    font-style: italic;
  395. }
  396.  
  397. .watchlistredir {
  398.    font-style: italic;
  399. }
  400.  
  401. /* ################################################## */
  402. /* ### FORUMS                                     ### */
  403. /* ################################################## */
  404.  
  405. /* remove talk link from forum namespace (monobooks/newskins/quartzskins/monaco) -Splarka */
  406. body.ns-110 #ca-talk, body.ns-110 #this_talk, body.ns-110 #page_tabs li + li {
  407.    display: none;
  408. }
  409.  
  410. /* Recent changes byte indicators + other pos/neg things */
  411. .mw-plusminus {
  412.    &-pos {
  413.        color: #006500;
  414.    }
  415.  
  416.    &-neg {
  417.        color: #8B0000;
  418.    }
  419. }
  420.  
  421. .pos {
  422.    @extend .mw-plusminus-pos;
  423. }
  424.  
  425. .neg {
  426.    @extend .mw-plusminus-neg;
  427. }
  428.  
  429. /* Obscure VE links */
  430. .page-Special_RecentChanges a[title][title*="VisualEditor"] {
  431.    color: black;
  432. }
  433.  
  434. /* Fixes sidebar oddity -- prevent sidebar elements from becoming unclickable on short pages */
  435. footer.row {
  436.    clear: both;
  437. }
  438.  
  439. /* Forum formatting -Algorithm & -Splaka */
  440. .forum {
  441.    &header {
  442.        background-color: #f9f9f9;
  443.        border: 1px solid #aaa;
  444.        color: black;
  445.        margin-top: 1em;
  446.        padding: 12px;
  447.    }
  448.  
  449.    &list {
  450.        td.forum_edited a {
  451.            color: inherit;
  452.            text-decoration: none;
  453.        }
  454.  
  455.        td.forum_title a {
  456.            padding-left: 20px;
  457.        }
  458.  
  459.        td.forum_title a.forum_new {
  460.            font-weight: bold;
  461.            padding-left: 20px;
  462.        }
  463.  
  464.        td.forum_title a.forum_new:visited {
  465.            background: none;
  466.            font-weight: normal;
  467.            padding-left: 20px;
  468.        }
  469.  
  470.        th.forum_title {
  471.            padding-left: 20px;
  472.        }
  473.    }
  474. }
  475.  
  476. /* Clan Primer */
  477. .ongoing {
  478.    color: #008000;
  479. }
  480.  
  481. .stalled {
  482.    color: #FD0;
  483. }
  484.  
  485. .resolved {
  486.    color: #A13;
  487. }
  488.  
  489. /* ################################################## */
  490. /* ### GENERAL TABLES                             ### */
  491. /* ################################################## */
  492. /* Custom Gallery (Template:Gallery) */
  493. table.gallery {
  494.    margin: 2px auto 2px auto;
  495.    padding: 2px;
  496.  
  497.    tr {
  498.        vertical-align: top;
  499.    }
  500.  
  501.    td {
  502.        vertical-align: top;
  503.        border: none;
  504.        margin: 2px;
  505.    }
  506. }
  507.  
  508. div.gallerybox {
  509.    margin: 2px;
  510.    width: 150px;
  511.    border: none;
  512.  
  513.    div.thumb {
  514.        text-align: center;
  515.        margin: 2px;
  516.    }
  517. }
  518.  
  519. div.gallerytext {
  520.    font-size: smaller;
  521.    text-align: center;
  522.    padding: 2px 4px;
  523.    background-color: inherit;
  524.    border: none;
  525. }
  526.  
  527. /* Standard Navigationsleisten, aka box hiding thingy from .de.  Documentation at [[Wikipedia:NavFrame]]. */
  528. %boxhiding {
  529.    margin: 0px;
  530.    padding: 4px;
  531.    border: 1px solid #aaa;
  532.    text-align: center;
  533.    border-collapse: collapse;
  534.    font-size: 95%;
  535. }
  536.  
  537. div.Box {
  538.    &merge {
  539.        @extend %boxhiding;
  540.  
  541.        margin: 0px;
  542.        padding: 4px;
  543.        border: 1px solid #aaa;
  544.        text-align: center;
  545.        border-collapse: collapse;
  546.        font-size: 95%;
  547.  
  548.        div.NavFrame {
  549.            border-style: none;
  550.            border-style: hidden;
  551.        }
  552.    }
  553. }
  554.  
  555. div.Nav {
  556.    &Frame {
  557.        @extend %boxhiding;
  558.  
  559.        & + & {
  560.            border-top-style: none;
  561.            border-top-style: hidden;
  562.        }
  563.  
  564.        div.NavHead {
  565.            height: 1.6em;
  566.            font-weight: bold;
  567.            background-color: #ccccff;
  568.            position: relative;
  569.        }
  570.  
  571.        p {
  572.            font-size: 100%;
  573.        }
  574.  
  575.        div.NavContent {
  576.            font-size: 100%;
  577.  
  578.            p {
  579.                font-size: 100%;
  580.            }
  581.        }
  582.    }
  583.  
  584.    &Pic {
  585.        background-color: #fff;
  586.        margin: 0px;
  587.        padding: 2px;
  588.        float: left;
  589.    }
  590.  
  591.    &End {
  592.        margin: 0px;
  593.        padding: 0px;
  594.        line-height: 1px;
  595.        clear: both;
  596.    }
  597. }
  598.  
  599. a.NavToggle {
  600.    position: absolute;
  601.    top: 0px;
  602.    right: 3px;
  603.    font-weight: normal;
  604.    font-size: smaller;
  605. }
  606.  
  607. /* Allow limiting of which header levels are shown in a TOC; <div class="toclimit-3">, for
  608.   instance, will limit to showing ==headings== and ===headings=== but no further (as long as
  609.   there are no =headings= on the page, which there shouldn't be according to the MoS). */
  610. %nodisplay {
  611.     display: none;
  612. }
  613.  
  614. @for $i from 2 through 7 {
  615.     .toclimit-#{$i} .toclevel-#{$i} {
  616.         @extend %nodisplay;
  617.     }
  618. }
  619.  
  620. /* Per page stuff (example) */
  621. body.page-User_Diablocon div#diablocon_card {
  622.     background: #000000 url("http://card.mygamercard.net/lastgame/diablocon.png") 0 0 no-repeat;
  623. }
  624.  
  625. .noLinkColors a, #bodyContent .noLinkColors a.external, #bodyContent .noLinkColors a.extiw, .nolinkcolor a, #bodyContent .nolinkcolor a.external, #bodyContent .nolinkcolor a.extiw {
  626.     color: inherit;
  627. }
  628.  
  629. /* ################################################## */
  630. /* ### TABBERS                                    ### */
  631. /* ################################################## */
  632. /*Copied from http://www.barelyfitz.com/projects/tabber/example.css used under mit license
  633. see http://www.barelyfitz.com/projects/tabber/
  634. */
  635. /* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
  636.  
  637. /*--------------------------------------------------
  638.   REQUIRED to hide the non-active tab content.
  639.   But do not hide them in the print stylesheet!
  640.   --------------------------------------------------*/
  641. .tabberlive .tabbertabhide {
  642.     display: none;
  643. }
  644.  
  645. /*--------------------------------------------------
  646.   .tabber = before the tabber interface is set up
  647.   .tabberlive = after the tabber interface is set up
  648.   --------------------------------------------------*/
  649. .tabber {}
  650.  
  651. .tabberlive {
  652.     margin-top: 1em;
  653. }
  654.  
  655. /*--------------------------------------------------
  656.   ul.tabbernav = the tab navigation list
  657.   li.tabberactive = the active tab
  658.   --------------------------------------------------*/
  659. ul.tabbernav {
  660.     margin: 0;
  661.     padding: 3px 0;
  662.     border-bottom: 1px solid #AAA;
  663.     font: bold 12px Verdana, sans-serif;
  664.  
  665.     li {
  666.         list-style: none;
  667.         margin: 0;
  668.         display: inline-block;
  669.  
  670.         a {
  671.             padding: 3px 0.5em;
  672.             margin-left: 3px;
  673.             border: 1px solid #ccc;
  674.             border-bottom: none;
  675.             background: #f2f7ff;
  676.             text-decoration: none;
  677.  
  678.             &:link {
  679.                 color: #448;
  680.             }
  681.  
  682.             &:visited {
  683.                 color: #667;
  684.             }
  685.  
  686.             &:hover {
  687.                 color: #000;
  688.                 background: #fff9f2;
  689.                 border-color: #CCC;
  690.             }
  691.         }
  692.  
  693.         &.tabberactive a {
  694.             background-color: #fff;
  695.             border-bottom: 1px solid #fff;
  696.  
  697.             &:hover {
  698.                 color: #000;
  699.                 background: white;
  700.                 border-bottom: 1px solid white;
  701.             }
  702.         }
  703.     }
  704. }
  705.  
  706. /*--------------------------------------------------
  707.   .tabbertab = the tab content
  708.   Add style only after the tabber interface is set up (.tabberlive)
  709.   --------------------------------------------------*/
  710. .tabberlive .tabbertab {
  711.     padding: 5px;
  712.     border: 1px solid #AAA;
  713.     border-top: 0;
  714.  
  715.     /* If you don't want the tab size changing whenever a tab is changed
  716.        you can set a fixed height */
  717.     /* height:200px; */
  718.     /* If you set a fix height set overflow to auto and you will get a
  719.        scrollbar when necessary */
  720.     /* overflow:auto; */
  721.     h2, h3 {
  722.         /* If desired, hide the heading since a heading is provided by the tab */
  723.         display: none;
  724.     }
  725. }
  726.  
  727. /* Example of using an ID to set different styles for the tabs on the page */
  728. .tabberlive#tab1 {}
  729.  
  730. .tabberlive#tab2 {}
  731.  
  732. .tabberlive#tab2 .tabbertab {
  733.     height: 200px;
  734.     overflow: auto;
  735. }
  736.  
  737. .picture-attribution, p.attribution {
  738.     display: none !important;
  739. }
  740.  
  741. figure.article-thumb {
  742.     background-color: rgba(0, 0, 0, 0);
  743.     background-image: -moz-linear-gradient(center top, rgba(255, 255, 255, 0) 0%, rgba(222, 222, 222, 0.5) 100%);
  744.     border: 1px solid #D9D9D9;
  745.     overflow: hidden;
  746.     padding: 3px 4px;
  747.     text-align: center;
  748.     margin: 0 0 15px;
  749.  
  750.     &.tleft {
  751.         clear: left;
  752.         float: left;
  753.         margin-right: 20px;
  754.     }
  755.  
  756.     &.tright {
  757.         clear: right;
  758.         float: right;
  759.         margin-left: 20px;
  760.     }
  761.  
  762.     figcaption p.caption {
  763.         color: black !important;
  764.         font-size: 14px;
  765.         line-height: 18px;
  766.         padding: 4px 1px 0;
  767.         text-align: left;
  768.         margin: 0 !important;
  769.     }
  770. }
  771.  
  772. .WikiaArticle .article-thumb .details {
  773.     margin-top: 4px;
  774.     visibility: visible;
  775. }
  776.  
  777. .WikiaArticle figure.article-thumb a:first-of-type {
  778.     display: inline;
  779. }
  780.  
  781. .article-thumb .thumbimage {
  782.     border: none;
  783. }
  784.  
  785. /* ################################################## */
  786. /* ### ENEMY PAGE OUTPUTS                         ### */
  787. /* ################################################## */
  788.  
  789. /* VIII enemy pages */
  790. .rareitem ul.tabbernav {
  791.     font-size: 7.25pt !important;
  792.     padding: 0 !important;
  793. }
  794.  
  795. #enemyStatOutputVIII {
  796.     div.tabbertab {
  797.         padding: 0;
  798.         border: none;
  799.     }
  800.  
  801.     ul.tabbernav {
  802.         border-bottom: none;
  803.         padding-bottom: 0;
  804.     }
  805.  
  806.     ul.tabbernav > li {
  807.         font-family: sans-serif;
  808.         font-size: 9px;
  809.         font-weight: normal;
  810.     }
  811. }
  812.  
  813. #enemyStatsVIII, .enemy-table {
  814.     width: 415px;
  815. }
  816.  
  817. #enemyStatsVIII table {
  818.     width: 100%;
  819. }
  820.  
  821. /*Scrolling table header CSS*/
  822. table.scrolling {
  823.     & > thead > tr:hover {
  824.         opacity: 0.4;
  825.  
  826.         & > th {
  827.             border-color: rgba(255, 255, 255, 0.4);
  828.             opacity: 0.2;
  829.         }
  830.  
  831.         & > th:hover {
  832.             opacity: 1;
  833.         }
  834.     }
  835. }
  836.  
  837. %bordercollapse {
  838.     /*Unifies the table borders and implements a universal look*/
  839.     border-collapse: collapse;
  840. }
  841.  
  842. %border1 {
  843.     border: 2px outset #999999;
  844. }
  845.  
  846. %border0 {
  847.     padding: 0;
  848.     border: 0;
  849. }
  850.  
  851. table.table {
  852.     @extend %bordercollapse;
  853.  
  854.     & > {
  855.         thead, tbody, tfoot {
  856.             & > {
  857.                 tr > td, tr > th {
  858.                     @extend %border1;
  859.                 }
  860.             }
  861.         }
  862.     }
  863.  
  864.     tr.no-table {
  865.         & > {
  866.             td, th {
  867.                 @extend %border0;
  868.             }
  869.         }
  870.     }
  871.  
  872.     td.no-table, th.no-table {
  873.         @extend %border0;
  874.     }
  875.  
  876.     ul, ol {
  877.         margin: 0 0 0 1.5em;
  878.     }
  879. }
  880.  
  881. table.innerborder {
  882.     @extend %bordercollapse;
  883. }
  884.  
  885. tr.table {
  886.     & > {
  887.         td.no-table, th.no-table {
  888.             @extend %border0;
  889.         }
  890.     }
  891. }
  892.  
  893. table.innerborder > tbody > tr {
  894.     & > td, & > th {
  895.         border: 1px solid black;
  896.     }
  897.  
  898.     &:first-child {
  899.         & > td, & > th {
  900.             border-top: none;
  901.         }
  902.     }
  903.  
  904.     &:last-child {
  905.         & > td, & > th {
  906.             border-bottom: none;
  907.         }
  908.     }
  909.  
  910.     & > td:first-child, & > th:first-child {
  911.         border-left: none;
  912.     }
  913.  
  914.     & > td:last-child, & > th:last-child {
  915.         border-right: none;
  916.     }
  917. }
  918.  
  919. /*Handle table and div widths*/
  920. .full-width {
  921.     width: 100%;
  922.     min-width: 660px;
  923.     max-width: 990px;
  924. }
  925.  
  926. .half-width {
  927.     width: 50%;
  928.     min-width: 330px;
  929.     max-width: 445px;
  930. }
  931.  
  932. /*.full-width, .half-width{display:block}*/
  933. %floatleft {
  934.     float: left;
  935. }
  936.  
  937. %margincall1 {
  938.     margin: 0 2px;
  939. }
  940.  
  941. %margincall-l {
  942.     margin-left: 0;
  943. }
  944.  
  945. %margincall-r {
  946.     margin-right: 0;
  947. }
  948.  
  949. %margincall-p {
  950.     margin-right: 0.6em;
  951. }
  952.  
  953. div.col2 > div {
  954.     @extend %floatleft;
  955.  
  956.     table {
  957.         @extend %margincall1;
  958.     }
  959.  
  960.     &:first-child table {
  961.         @extend %margincall-l;
  962.     }
  963.  
  964.     &:last-child table {
  965.         @extend %margincall-r;
  966.     }
  967.  
  968.     p {
  969.         @extend %margincall-p;
  970.     }
  971.  
  972.     width: 50%;
  973.     min-width: 250px;
  974. }
  975.  
  976. div.col3 > div {
  977.     @extend %floatleft;
  978.  
  979.     table {
  980.         @extend %margincall1;
  981.     }
  982.  
  983.     &:first-child table {
  984.         @extend %margincall-l;
  985.     }
  986.  
  987.     &:last-child table {
  988.         @extend %margincall-r;
  989.     }
  990.  
  991.     p {
  992.         @extend %margincall-p;
  993.     }
  994.  
  995.     width: 33%;
  996.     min-width: 200px;
  997. }
  998.  
  999. div.col4 > div {
  1000.     @extend %floatleft;
  1001.  
  1002.     table {
  1003.         @extend %margincall1;
  1004.     }
  1005.  
  1006.     &:first-child table {
  1007.         @extend %margincall-l;
  1008.     }
  1009.  
  1010.     &:last-child table {
  1011.         @extend %margincall-r;
  1012.     }
  1013.  
  1014.     p {
  1015.         @extend %margincall-p;
  1016.     }
  1017.  
  1018.     width: 25%;
  1019.     min-width: 150px;
  1020. }
  1021.  
  1022. div.col5 > div {
  1023.     @extend %floatleft;
  1024.  
  1025.     table {
  1026.         @extend %margincall1;
  1027.     }
  1028.  
  1029.     &:first-child table {
  1030.         @extend %margincall-l;
  1031.     }
  1032.  
  1033.     &:last-child table {
  1034.         @extend %margincall-r;
  1035.     }
  1036.  
  1037.     p {
  1038.         @extend %margincall-p;
  1039.     }
  1040.  
  1041.     width: 20%;
  1042.     min-width: 125px;
  1043. }
  1044.  
  1045. div.col6 > div {
  1046.     @extend %floatleft;
  1047.  
  1048.     table {
  1049.         @extend %margincall1;
  1050.     }
  1051.  
  1052.     &:first-child table {
  1053.         @extend %margincall-l;
  1054.     }
  1055.  
  1056.     &:last-child table {
  1057.         @extend %margincall-r;
  1058.     }
  1059.  
  1060.     p {
  1061.         @extend %margincall-p;
  1062.     }
  1063.  
  1064.     width: 17%;
  1065.     min-width: 100px;
  1066. }
  1067.  
  1068. div.col7 > div {
  1069.     @extend %floatleft;
  1070.  
  1071.     table {
  1072.         @extend %margincall1;
  1073.     }
  1074.  
  1075.     &:first-child table {
  1076.         @extend %margincall-l;
  1077.     }
  1078.  
  1079.     &:last-child table {
  1080.         @extend %margincall-r;
  1081.     }
  1082.  
  1083.     p {
  1084.         @extend %margincall-p;
  1085.     }
  1086.  
  1087.     width: 13%;
  1088.     min-width: 90px;
  1089. }
  1090.  
  1091. div.col8 > div {
  1092.     @extend %floatleft;
  1093.  
  1094.     table {
  1095.         @extend %margincall1;
  1096.     }
  1097.  
  1098.     &:first-child table {
  1099.         @extend %margincall-l;
  1100.     }
  1101.  
  1102.     &:last-child table {
  1103.         @extend %margincall-r;
  1104.     }
  1105.  
  1106.     p {
  1107.         @extend %margincall-p;
  1108.     }
  1109.  
  1110.     width: 12.5%;
  1111.     min-width: 80px;
  1112. }
  1113.  
  1114. div.col9 > div {
  1115.     @extend %floatleft;
  1116.  
  1117.     table {
  1118.         @extend %margincall1;
  1119.     }
  1120.  
  1121.     &:first-child table {
  1122.         @extend %margincall-l;
  1123.     }
  1124.  
  1125.     &:last-child table {
  1126.         @extend %margincall-r;
  1127.     }
  1128.  
  1129.     p {
  1130.         @extend %margincall-p;
  1131.     }
  1132.  
  1133.     width: 11%;
  1134.     min-width: 70px;
  1135. }
  1136.  
  1137. div.col10 > div {
  1138.     @extend %floatleft;
  1139.  
  1140.     width: 10%;
  1141.     min-width: 60px;
  1142.  
  1143.     table {
  1144.         @extend %margincall1;
  1145.     }
  1146.  
  1147.     &:first-child table {
  1148.         @extend %margincall-l;
  1149.     }
  1150.  
  1151.     &:last-child table {
  1152.         @extend %margincall-r;
  1153.     }
  1154.  
  1155.     p {
  1156.         @extend %margincall-p;
  1157.     }
  1158. }
  1159.  
  1160. #bodyContent pre, #WikiaArticle pre {
  1161.     overflow-x: auto;
  1162. }
  1163.  
  1164. /* Prevents italics in <code> tag  */
  1165. code {
  1166.     font-style: normal;
  1167. }
  1168.  
  1169. /* defaulting code and adding code class for simul */
  1170. code, .code {
  1171.     background-color: transparent;
  1172.     font-family: monospace;
  1173.  
  1174.     strong.selflink {
  1175.         font-weight: normal;
  1176.     }
  1177. }
  1178.  
  1179. /*AI formatting*/
  1180. pre.ai {
  1181.     background: transparent;
  1182.     border: none;
  1183.     white-space: pre-wrap;
  1184. }
  1185.  
  1186. div.ai span.ability {
  1187.     color: red;
  1188. }
  1189.  
  1190. .ai p {
  1191.     padding-left: 20px;
  1192.     margin: 2px 0 !important;
  1193.     text-indent: -20px;
  1194. }
  1195.  
  1196. /* ################################################## */
  1197. /* ### GESHI                                      ### */
  1198. /* ################################################## */
  1199. .mw-geshi {
  1200.     overflow: auto;
  1201.     white-space: pre;
  1202.  
  1203.     div, pre {
  1204.         overflow-x: visible;
  1205.         white-space: inherit;
  1206.     }
  1207.  
  1208.     &.block {
  1209.         border-color: #CCCCCC;
  1210.         border-style: dashed none;
  1211.         border-width: 1px;
  1212.         margin-left: 2em;
  1213.         padding: 5px 0;
  1214.     }
  1215.  
  1216.     &.inline {
  1217.         display: inline;
  1218.  
  1219.         div, pre {
  1220.             display: inline;
  1221.         }
  1222.  
  1223.         pre.de1, pre.de2 {
  1224.             vertical-align: baseline !important;
  1225.         }
  1226.     }
  1227. }
  1228.  
  1229. .word-wrap pre, pre.word-wrap {
  1230.     white-space: pre-wrap;
  1231.     word-wrap: break-word;
  1232. }
  1233.  
  1234. /*Formatting wanted category color*/
  1235. a.newcategory {
  1236.     color: #CC2200;
  1237. }
  1238.  
  1239. /*Formatting RC*/
  1240. .rcoptions {
  1241.     border-radius: 10px;
  1242. }
  1243.  
  1244. %rcsprites {
  1245.     background-image: url("http://images.wikia.com/finalfantasy/images/d/d2/RCSprites.png");
  1246.     background-position: 0 0;
  1247.     background-repeat: no-repeat;
  1248.     display: inline-block;
  1249.     height: 12px;
  1250.     line-height: 12px;
  1251.     vertical-align: middle;
  1252.     width: 12px;
  1253.  
  1254.     img {
  1255.         opacity: 0;
  1256.     }
  1257. }
  1258.  
  1259. .mw-rc-openarrow a {
  1260.     @extend %rcsprites;
  1261.  
  1262.     background-position: 0 -12px;
  1263. }
  1264.  
  1265. .mw-rc-closearrow a {
  1266.     @extend %rcsprites;
  1267.  
  1268.     background-position: 0 0px;
  1269. }
  1270.  
  1271. /*Formatting ext links*/
  1272. /*reset monobook*/
  1273. #bodyContent a.external, #bodyContent a.external[href^="gopher://"] {
  1274.     background: none;
  1275.     padding-right: 0;
  1276. }
  1277.  
  1278. /*set universal standard*/
  1279. a.external:after, a[href^="gopher://"]:after {
  1280.     background-image: url("http://slot1.images.wikia.nocookie.net/__cb1429610386/common/skins/shared/images/sprite.png");
  1281.     background-position: -1198px 0;
  1282.     background-repeat: no-repeat;
  1283.     content: "";
  1284.     display: inline-block;
  1285.     height: 16px;
  1286.     margin-left: 3px;
  1287.     vertical-align: text-top;
  1288.     width: 10px;
  1289. }
  1290.  
  1291. /* ################################################## */
  1292. /* ### KHWIKI                                     ### */
  1293. /* ################################################## */
  1294. /*KHwiki*/
  1295. .khwiki a.external:after, a[href~="://www.khwiki.net"]:after {
  1296.     background-image: url("http://www.khwiki.net/favicon.ico");
  1297.     background-position: 0 0;
  1298.     margin-left: 1px;
  1299.     vertical-align: middle;
  1300.     width: 16px;
  1301. }
  1302.  
  1303. .plainlinks a.external:after {
  1304.     content: none;
  1305. }
  1306.  
  1307. /*Hide shared help for our own help pages*/
  1308. .sharedHelp:nth-child(n+2) {
  1309.     display: none;
  1310. }
  1311.  
  1312. /*Formatting "boards"*/
  1313. table.board {
  1314.     border: 1px solid black;
  1315.     text-align: center;
  1316.     vertical-align: middle;
  1317.  
  1318.     td, th {
  1319.         padding: 0px;
  1320.     }
  1321.  
  1322.     td {
  1323.         background: #DDDDDD;
  1324.     }
  1325.  
  1326.     tr:first-child th:first-child {
  1327.         background: transparent;
  1328.     }
  1329. }
  1330.  
  1331. /*Formatting license boards*/
  1332. .licenseboard {
  1333.     .augment {
  1334.         @extend %licenseboard;
  1335.  
  1336.         background-color: #666600;
  1337.     }
  1338.  
  1339.     .quickening {
  1340.         @extend %licenseboard;
  1341.  
  1342.         background-color: #FF9933;
  1343.     }
  1344.  
  1345.     .summon {
  1346.         @extend %licenseboard;
  1347.  
  1348.         background-color: #00FFFF;
  1349.     }
  1350.  
  1351.     .accessory {
  1352.         @extend %licenseboard;
  1353.  
  1354.         background-color: #CC3333;
  1355.     }
  1356.  
  1357.     .armor {
  1358.         @extend %licenseboard;
  1359.  
  1360.         background-color: #33CC33;
  1361.     }
  1362.  
  1363.     .weapon1 {
  1364.         @extend %licenseboard;
  1365.  
  1366.         background-color: #6666CC;
  1367.     }
  1368.  
  1369.     .weapon2 {
  1370.         @extend %licenseboard;
  1371.  
  1372.         background-color: #993399;
  1373.     }
  1374.  
  1375.     .weapon3 {
  1376.         @extend %licenseboard;
  1377.  
  1378.         background-color: #6600CC;
  1379.     }
  1380.  
  1381.     .technick {
  1382.         @extend %licenseboard;
  1383.  
  1384.         background-color: #CC9900;
  1385.     }
  1386.  
  1387.     .gambit {
  1388.         @extend %licenseboard;
  1389.  
  1390.         background-color: #CCCC00;
  1391.     }
  1392.  
  1393.     .magick {
  1394.         @extend %licenseboard;
  1395.  
  1396.         background-color: #CC99CC;
  1397.     }
  1398.  
  1399.     .command {
  1400.         @extend %licenseboard;
  1401.  
  1402.         background-color: #333333;
  1403.     }
  1404. }
  1405.  
  1406. %licenseboard {
  1407.     background-image: linear-gradient(350deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  1408.     border: 1px outset #999999;
  1409. }
  1410.  
  1411. /*Formatting for navigations*/
  1412. table.nav {
  1413.     border: 1px solid silver;
  1414.     border-bottom: none;
  1415.     text-align: center;
  1416.     clear: both;
  1417.     font-size: 11px;
  1418.     font-family: verdana, sans-serif;
  1419.     width: 100%;
  1420.  
  1421.     &:last-of-type {
  1422.         border-bottom: 1px solid silver;
  1423.     }
  1424.  
  1425.     & + & {
  1426.         border-top: none;
  1427.         margin-top: -3px;
  1428.     }
  1429.  
  1430.     :first-child tr:first-child {
  1431.         font-size: 13.5px;
  1432.         font-family: tahoma, sans-serif;
  1433.     }
  1434. }
  1435.  
  1436. .showhide {
  1437.     font-size: 0.9em;
  1438.     font-style: normal;
  1439.     font-weight: normal;
  1440.     text-align: right;
  1441.     width: 6em;
  1442. }
  1443.  
  1444. /*Formatting for stub templates*/
  1445. .stub-template {
  1446.     font-style: italic;
  1447. }
  1448.  
  1449. /*Removes links to unused user groups on [[Special:Statistics]]*/
  1450. table.wikitable.mw-statistics-table .statistics-group-zero {
  1451.     display: none;
  1452. }
  1453.  
  1454. /*Hide "subpages" content from non-subpages*/
  1455. body.page-Choco_Mog article header h2, body.page-Choco_Mog .subpages,
  1456. body.page-Marcus_Eiko_Stat_Bug article header h2, body.page-Marcus_Eiko_Stat_Bug .subpages,
  1457. body.page-Real_Emotion_1000_no_Kotoba article header h2, body.page-Real_Emotion_1000_no_Kotoba .subpages,
  1458. body.page-Final_Fantasy_X_X-2_HD_Remaster article header h2, body.page-Final_Fantasy_X_X-2_HD_Remaster .subpages {
  1459.     display: none;
  1460. }
  1461.  
  1462. /* ################################################## */
  1463. /* ### BOXES                                      ### */
  1464. /* ################################################## */
  1465. /*News box*/
  1466. ul.newsbox {
  1467.     :nth-child(n+7), ul.newsbox h2:nth-child(6) {
  1468.         display: none;
  1469.     }
  1470.  
  1471.     h2 {
  1472.         font-size: inherit;
  1473.         border-bottom: none;
  1474.         margin: 3px 0 3px -32px;
  1475.         list-style: none;
  1476.         font-weight: bold;
  1477.     }
  1478. }
  1479.  
  1480. /*Content box*/
  1481. .contentbox {
  1482.     border: 1px solid #AAAAAA;
  1483.     border-radius: 10px;
  1484.     margin: 3px 3px 7px;
  1485.     padding: 5px;
  1486.  
  1487.     .header, &.header {
  1488.         color: black;
  1489.         background: #FBEC5D;
  1490.         border: 1px solid #AAAAAA;
  1491.         border-radius: 7px;
  1492.         font-size: inherit;
  1493.         font-weight: bold;
  1494.         margin: 0;
  1495.         margin-bottom: 4px;
  1496.         padding: 2px 1px;
  1497.         text-align: center;
  1498.         text-decoration: none;
  1499.     }
  1500. }
  1501.  
  1502. /*Archive*/
  1503.  
  1504. .archive {
  1505.     border: 2px dotted #800000;
  1506.     margin: -4px;
  1507.     margin-top: 0;
  1508.     padding: 4px;
  1509.     padding-top: 0;
  1510.     width: 100%;
  1511.  
  1512.     .header, &.header {
  1513.         border-bottom: 2px dotted #800000;
  1514.         color: #800000;
  1515.         font-style: italic;
  1516.         font-weight: bold;
  1517.         margin: 0 -5px;
  1518.         padding-bottom: 0;
  1519.         text-align: center;
  1520.     }
  1521. }
  1522.  
  1523. /*Translations*/
  1524. .translations {
  1525.     text-align: center;
  1526.     font-size: smaller;
  1527. }
  1528.  
  1529. /*Flowchart*/
  1530. .flowchart {
  1531.     a {
  1532.         font-family: sans-serif;
  1533.     }
  1534.  
  1535.     pre {
  1536.         border: none;
  1537.         background: transparent;
  1538.     }
  1539. }
  1540.  
  1541. /*resizing sprites*/
  1542. .sprite-image img {
  1543.     image-rendering: -moz-crisp-edges;
  1544.     image-rendering: -o-crisp-edges;
  1545.     image-rendering: -webkit-optimize-contrast;
  1546.     -ms-interpolation-mode: nearest-neighbor;
  1547. }
  1548.  
  1549. /*collapsible divs*/
  1550. div.collapsible.collapsed > .hideElement {
  1551.     display: none;
  1552. }
  1553.  
  1554. table.collapsible.collapsed[id] > tbody {
  1555.     display: none;
  1556. }
  1557.  
  1558. /* inline spoilers */
  1559. .ilspoiler.nojs {
  1560.     opacity: 0.5;
  1561. }
  1562.  
  1563. .ilspoiler.hidden {
  1564.     background-color: white;
  1565.     border: 1px dashed #999999;
  1566.     color: white;
  1567. }
  1568.  
  1569. /*flip*/
  1570. .horizontal.flip img, .horizontal-flip img {
  1571.     -moz-transform: scaleX(-1);
  1572.     -o-transform: scaleX(-1);
  1573.     -webkit-transform: scaleX(-1);
  1574.     transform: scaleX(-1);
  1575.     filter: FlipH;
  1576.     -ms-filter: "FlipH";
  1577. }
  1578.  
  1579. .vertical.flip img, .vertical-flip img {
  1580.     -moz-transform: scaleY(-1);
  1581.     -o-transform: scaleY(-1);
  1582.     -webkit-transform: scaleY(-1);
  1583.     transform: scaleY(-1);
  1584.     filter: FlipV;
  1585.     -ms-filter: "FlipV";
  1586. }
  1587.  
  1588. /*Image filters*/
  1589. .fade img {
  1590.     opacity: 0.3;
  1591. }
  1592.  
  1593. .grayscale img {
  1594.     filter: grayscale(100%);
  1595.  
  1596.     /*W3C*/
  1597.     -moz-filter: grayscale(100%);
  1598.  
  1599.     /*potentially Firefox*/
  1600.     -ms-filter: grayscale(100%);
  1601.  
  1602.     /*potentially IE*/
  1603.     -o-filter: grayscale(100%);
  1604.  
  1605.     /*potentially Opera*/
  1606.     -webkit-filter: grayscale(100%);
  1607.  
  1608.     /*Chrome, Safari, possibly Opera*/
  1609.     filter: url("data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'><filter%20id='grayscale'><feColorMatrix%20type='matrix'%20values='0.3333%200.3333%200.3333%200%200%200.3333%200.3333%200.3333%200%200%200.3333%200.3333%200.3333%200%200%200%200%200%201%200'/></filter></svg>#grayscale");
  1610.  
  1611.     /*Firefox 3.5+*/
  1612.     filter: gray;
  1613.  
  1614.     /*IE 6+*/
  1615. }
  1616.  
  1617. table.collapsible tr tr {
  1618.     display: table-row !important;
  1619. }
  1620.  
  1621. .FFIX.message {
  1622.     background-image: url("http://i829.photobucket.com/albums/zz212/JBedford128/ffixbg_zps13f1f87e.png");
  1623.     background-repeat: repeat;
  1624.     color: white;
  1625.     text-shadow: 1px 1px black;
  1626.     border-style: solid;
  1627.     border-width: 5px;
  1628.     -moz-border-image: url("http://i829.photobucket.com/albums/zz212/JBedford128/ffixborder_zpsa15d4766.png") 5 repeat;
  1629.     -webkit-border-image: url("http://i829.photobucket.com/albums/zz212/JBedford128/ffixborder_zpsa15d4766.png") 5 repeat;
  1630.     -o-border-image: url("http://i829.photobucket.com/albums/zz212/JBedford128/ffixborder_zpsa15d4766.png") 5 repeat;
  1631.     border-image: url("http://i829.photobucket.com/albums/zz212/JBedford128/ffixborder_zpsa15d4766.png") 5 fill repeat;
  1632.     border-radius: 10px;
  1633.     font-family: 'Verdana', sans-serif;
  1634.     padding: 5px;
  1635. }
  1636.  
  1637. /* quotes */
  1638. .quote, q, blockquote {
  1639.     &:before {
  1640.         content: "“";
  1641.     }
  1642.  
  1643.     &:after {
  1644.         content: "”";
  1645.     }
  1646.  
  1647.     &:before, &:after {
  1648.         font-style: normal;
  1649.     }
  1650. }
  1651.  
  1652. div.quote, blockquote {
  1653.     margin-left: 24px;
  1654. }
  1655.  
  1656. /* */
  1657. table.mw-enhanced-rc, table.mw-enhanced-rc > tbody > tr > td:last-child {
  1658.     width: 100%;
  1659. }
  1660.  
  1661. table.mw-enhanced-rc:hover, table.mw-enhanced-rc > tbody > tr:nth-child(n+2):hover {
  1662.     background: rgba(0, 0, 0, 0.03);
  1663. }
  1664.  
  1665. /*patrol-related*/
  1666. .not-patrolled {
  1667.     background-color: transparent !important;
  1668. }
  1669.  
  1670. /* Side icon styles */
  1671. %dingbat {
  1672.     width: 50px;
  1673.     display: block;
  1674. }
  1675.  
  1676. .page-info-icon {
  1677.     .text-container {
  1678.         display: block;
  1679.         font-family: Ferrum Condensed, serif;
  1680.         text-align: center;
  1681.         text-shadow: 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black, 0 0 2px black;
  1682.         line-height: 0;
  1683.     }
  1684.  
  1685.     span {
  1686.         color: white;
  1687.     }
  1688.  
  1689.     .one-line {
  1690.         font-size: 35px;
  1691.         line-height: 35px;
  1692.         height: 35px;
  1693.         letter-spacing: -5px;
  1694.         width: 50px;
  1695.         margin-left: -4px;
  1696.  
  1697.         @extend %dingbat;
  1698.     }
  1699.  
  1700.     .one-line-small {
  1701.         font-size: 24px;
  1702.         height: 35px;
  1703.         line-height: 35px;
  1704.         letter-spacing: -2px;
  1705.         width: 50px;
  1706.         margin-left: -3px;
  1707.  
  1708.         @extend %dingbat;
  1709.     }
  1710.  
  1711.     .two-line {
  1712.         font-size: 28px;
  1713.         letter-spacing: -3px;
  1714.         height: 25px;
  1715.         line-height: 25px;
  1716.         width: 50px;
  1717.         margin-left: -3px;
  1718.  
  1719.         @extend %dingbat;
  1720.     }
  1721.  
  1722.     .two-line-small {
  1723.         font-size: 16px;
  1724.         letter-spacing: -1px;
  1725.         line-height: 15px;
  1726.         height: 14px;
  1727.         width: 50px;
  1728.         font-family: Ferrum, serif;
  1729.  
  1730.         @extend %dingbat;
  1731.     }
  1732.  
  1733.     &:hover {
  1734.         text-decoration: none;
  1735.     }
  1736. }
  1737.  
  1738. /*shared skin rules*/
  1739. .WikiaArticle .toc, #toc {
  1740.     background-color: transparent;
  1741. }
  1742.  
  1743. .CategorySelect.articlePage, .catlinks {
  1744.     background-image: none;
  1745.     background-color: transparent;
  1746. }
  1747.  
  1748. .WikiaArticle #pagehistory li, #pagehistory li {
  1749.     border-style: none;
  1750. }
  1751.  
  1752. .page-Special_RecentChanges .WikiaArticle fieldset, .page-Special_RecentChanges fieldset, .recentchangesquicklinks {
  1753.     border: 1px solid #002BB8;
  1754. }
  1755.  
  1756. /*proto-gallery*/
  1757. .proto-gallery {
  1758.     .gallerycontainer {
  1759.         background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  1760.         padding: 4px;
  1761.     }
  1762.  
  1763.     .thumbinner {
  1764.         display: inline-block;
  1765.         vertical-align: top;
  1766.         margin-bottom: 4px;
  1767.         margin-right: 4px;
  1768.     }
  1769.  
  1770.     .gimage {
  1771.         width: 150px;
  1772.         height: 150px;
  1773.         line-height: 150px;
  1774.     }
  1775.  
  1776.     .gallery-caption {
  1777.         width: 150px;
  1778.         text-align: left;
  1779.         margin-top: 3px;
  1780.         font-size: 11px;
  1781.     }
  1782.  
  1783.     .sprite.magnify {
  1784.         background-position: -1210px 0;
  1785.         float: right;
  1786.         margin-top: 4px;
  1787.  
  1788.         .icon-link {
  1789.             display: block;
  1790.             height: 18px;
  1791.             width: 17px;
  1792.         }
  1793.     }
  1794. }
  1795.  
  1796. .proto-gallery
  1797. .refpopup {
  1798.     background: linear-gradient(white, #FAFAFA);
  1799.     background-color: white;
  1800.     border: 1px solid #DDDDDD;
  1801.     border-radius: 2px;
  1802.     color: black;
  1803.     font-family: Helvetica, Arial, sans-serif;
  1804.     font-size: 11px;
  1805.     font-style: normal;
  1806.     font-weight: normal;
  1807.     line-height: 150%;
  1808.     padding: 6px 12px;
  1809.     position: absolute;
  1810.     text-align: left;
  1811.     text-decoration: none;
  1812.     z-index: 1;
  1813. }
  1814.  
  1815. /* ################################################## */
  1816. /* ### Talk BUBBLES (Template:Talk)               ### */
  1817. /* ################################################## */
  1818. /*Forces show of readable "pre"s (black text, no stretch)*/
  1819. /*used for talkboxes and on archives*/
  1820. table.talk td.text pre, .archive pre {
  1821.     white-space: pre-wrap;
  1822.     color: black;
  1823. }
  1824.  
  1825. /* Other talk bubble CSS */
  1826. table.talk {
  1827.     margin-left: 64px !important;
  1828.  
  1829.     .text pre {
  1830.         white-space: pre-wrap;
  1831.         color: black;
  1832.     }
  1833.  
  1834.     .filler {
  1835.         width: 6px;
  1836.         height: 6px;
  1837.     }
  1838.  
  1839.     .filler2 {
  1840.         width: 5px;
  1841.         height: 4px;
  1842.     }
  1843.  
  1844.     .corner {
  1845.         font-size: 0px;
  1846.         line-height: 0%;
  1847.         width: 0px;
  1848.     }
  1849.  
  1850.     .padded {
  1851.         padding: 0 4px;
  1852.         margin: 0 -5px;
  1853.     }
  1854. }
  1855.  
  1856. div.image-section {
  1857.     width: 64px;
  1858.     max-width: 69px;
  1859.     float: left;
  1860. }
  1861.  
  1862. /* ################################################## */
  1863. /* ### INFOBOXES                                  ### */
  1864. /* ################################################## */
  1865. /*Formatting for enemy infobox*/
  1866. table.infobox.enemy {
  1867.     background-color: #f2f2f2;
  1868.     border: 1px #AAAAAA solid;
  1869.     border-collapse: collapse;
  1870.     padding: 0;
  1871.     float: right;
  1872.     font-size: 7.25pt;
  1873.     padding: 0;
  1874.     text-align: center;
  1875.     width: 275px;
  1876.  
  1877.     & > * > tr > td, & > * > tr > th {
  1878.         padding: 0;
  1879.     }
  1880.  
  1881.     th.header div {
  1882.         border: 1px solid #000000;
  1883.         font-size: 12pt;
  1884.         margin: 6px 6px 3px;
  1885.     }
  1886.  
  1887.     .tabberlive {
  1888.         margin-top: 0;
  1889.  
  1890.         .tabbertab {
  1891.             border-width: 0;
  1892.             padding: 0;
  1893.         }
  1894.     }
  1895.  
  1896.     table.body {
  1897.         border-collapse: collapse;
  1898.         box-sizing: border-box;
  1899.         padding: 3px;
  1900.         width: 100%;
  1901.  
  1902.         th, td {
  1903.             padding: 0;
  1904.         }
  1905.  
  1906.         th.name {
  1907.             font-size: 13.5pt;
  1908.         }
  1909.  
  1910.         table.stats {
  1911.             font-size: 10pt;
  1912.             text-align: center;
  1913.             width: 100%;
  1914.         }
  1915.  
  1916.         table.info {
  1917.             text-align: left;
  1918.             font-size: 7.25pt;
  1919.             width: 100%;
  1920.  
  1921.             th {
  1922.                 width: 35%;
  1923.             }
  1924.  
  1925.             tr:nth-child(even) td {
  1926.                 background-color: rgba(0, 0, 0, 0.1);
  1927.             }
  1928.         }
  1929.     }
  1930.  
  1931.     table.elements, table.statuses {
  1932.         text-align: center;
  1933.         width: 100%;
  1934.  
  1935.         tr:nth-child(n+2) th {
  1936.             line-height: 12px;
  1937.             padding: 4px 0;
  1938.         }
  1939.  
  1940.         tr:first-child th:first-child {
  1941.             font-size: 10pt;
  1942.         }
  1943.     }
  1944.  
  1945.     .regular {
  1946.         font-size: 10pt;
  1947.     }
  1948.  
  1949.     td.bestiary {
  1950.         div.prev {
  1951.             float: left;
  1952.             width: 30%;
  1953.             text-align: left;
  1954.         }
  1955.  
  1956.         div.this {
  1957.             display: inline;
  1958.             margin: auto;
  1959.             width: 40%;
  1960.             text-align: center;
  1961.             font-weight: bold;
  1962.             font-size: 10pt;
  1963.         }
  1964.  
  1965.         div.next {
  1966.             float: right;
  1967.             width: 30%;
  1968.             text-align: right;
  1969.         }
  1970.     }
  1971. }
  1972.  
  1973. /*Formatting for character infobox*/
  1974. table.infobox.character {
  1975.     background: transparent;
  1976.     border-radius: 7px;
  1977.     float: right;
  1978.     font-size: 90%;
  1979.     padding: 0;
  1980.     width: 300px;
  1981.     border-spacing: 0px;
  1982.  
  1983.     & > * > tr > td, & > * > tr > th {
  1984.         border: 1px outset #999999;
  1985.     }
  1986.  
  1987.     & > * > tr > th {
  1988.         text-align: left;
  1989.     }
  1990.  
  1991.     & > * > tr > th ~ td {
  1992.         width: 190px;
  1993.     }
  1994.  
  1995.     th.name, th.footer {
  1996.         font-size: 13.5px;
  1997.     }
  1998.  
  1999.     th.name, th.footer, td.image {
  2000.         text-align: center;
  2001.     }
  2002.  
  2003.     th.name {
  2004.         border-radius: 7px 7px 0 0;
  2005.     }
  2006.  
  2007.     th.footer {
  2008.         border-radius: 0 0 7px 7px;
  2009.     }
  2010.  
  2011.     td, th {
  2012.         padding-top: 2px;
  2013.         padding-bottom: 2px;
  2014.     }
  2015. }
  2016.  
  2017. table.infobox.release {
  2018.     font-family: verdana;
  2019.     padding: 6px;
  2020.     margin: 0 0 1em 1em;
  2021.     font-size: 10px;
  2022.     border: 1px solid #8888aa;
  2023.     float: right;
  2024.     width: 290px;
  2025.  
  2026.     td {
  2027.         border: 1px black solid;
  2028.     }
  2029.  
  2030.     th {
  2031.         white-space: nowrap;
  2032.  
  2033.         &.name {
  2034.             font-size: 13px;
  2035.         }
  2036.     }
  2037. }
  2038.  
  2039. /* ################################################## */
  2040. /* ### NAVBOX (Template:Navbox)                   ### */
  2041. /* ################################################## */
  2042.  
  2043. .navbox-container {
  2044.     /* Outer table - border */
  2045.     border: 1px solid #aaa;
  2046.     padding: 2px;
  2047.  
  2048.     &.bottom + &.bottom {
  2049.         margin-top: 2px;
  2050.     }
  2051.  
  2052.     &.bottom {
  2053.         /* Outer table - widths, floats */
  2054.         width: 100%;
  2055.         clear: both;
  2056.         margin: 5px auto 0;
  2057.     }
  2058.  
  2059.     &.left {
  2060.         /* Outer table - widths, floats */
  2061.         width: 200px;
  2062.         clear: left;
  2063.         float: left;
  2064.         margin: 0 1.5em 0.5em 0;
  2065.     }
  2066.  
  2067.     &.right {
  2068.         /* Outer table - widths, floats */
  2069.         width: 200px;
  2070.         clear: right;
  2071.         float: right;
  2072.         margin: 0 0 0.5em 1.5em;
  2073.     }
  2074. }
  2075.  
  2076. .navbox {
  2077.     /* Main class (applies to every navbox) */
  2078.     width: 100%;
  2079.     font-size: 85%;
  2080.     line-height: 1.5em;
  2081.  
  2082.     .brick {
  2083.         /* Inner tables */
  2084.         width: 100%;
  2085.         margin: 0;
  2086.     }
  2087.  
  2088.     .contents {
  2089.         /* Inner tables */
  2090.         width: 100%;
  2091.     }
  2092.  
  2093.     &-container, .brickcont, .padding,
  2094.     .space-h, .space-v,
  2095.     .groupcont {
  2096.         /* Cellspacing */
  2097.         background: transparent;
  2098.     }
  2099.  
  2100.     .space-h {
  2101.         width: 2px;
  2102.     }
  2103.  
  2104.     .colcont .navbox .space-h {
  2105.         width: 0%;
  2106.         border-right: 2px solid #fff;
  2107.     }
  2108.  
  2109.     .space-v {
  2110.         height: 2px;
  2111.         font-size: 1pt;
  2112.         line-height: 0em;
  2113.     }
  2114.  
  2115.     .title {
  2116.         border: 1px solid #aaa;
  2117.         font-weight: normal;
  2118.         padding: 2px;
  2119.     }
  2120.  
  2121.     .headertext, .titletext {
  2122.         font-weight: bold;
  2123.         text-align: center;
  2124.         padding-left: 4em;
  2125.         padding-right: 4em;
  2126.     }
  2127.  
  2128.     .maintitle .titletext {
  2129.         font-size: 118%;
  2130.     }
  2131.  
  2132.     .editlink {
  2133.         float: left;
  2134.         width: 4em;
  2135.         text-align: left;
  2136.         margin-right: -100%;
  2137.     }
  2138.  
  2139.     .showhide {
  2140.         margin-left: -100%;
  2141.     }
  2142.  
  2143.     .cell, .colgroup,
  2144.     .navcol, .abovebelow,
  2145.     .group, .navheader,
  2146.     .subgroup {
  2147.         padding: 1px 2px;
  2148.     }
  2149.  
  2150.     .colgroup, .group,
  2151.     .subgroup {
  2152.         font-weight: bold;
  2153.     }
  2154.  
  2155.     .group, .subgroup {
  2156.         width: 15%;
  2157.         text-align: center;
  2158.     }
  2159.  
  2160.     .abovebelow, .group,
  2161.     .navheader {
  2162.         border: 1px solid #aaa;
  2163.         text-align: center;
  2164.     }
  2165.  
  2166.     .colgroup, .subgroup {
  2167.         border: 1px solid #aaa;
  2168.     }
  2169.  
  2170.     .cell, .navcol {
  2171.         background: transparent;
  2172.         border: 1px solid #aaa;
  2173.     }
  2174.  
  2175.     .cell.nogroups, .navcol, .colgroup, .abovebelow {
  2176.         text-align: center;
  2177.     }
  2178.  
  2179.     .cell.withgroups {
  2180.         text-align: left;
  2181.     }
  2182.  
  2183.     .navcol {
  2184.         vertical-align: top;
  2185.     }
  2186.  
  2187.     .formatlist {
  2188.         ul, li {
  2189.             /* Lists in column rows */
  2190.             list-style: none;
  2191.             line-height: 1.5em;
  2192.             margin: 0.6em 0;
  2193.             padding: 0;
  2194.         }
  2195.  
  2196.         li li {
  2197.             font-size: 90%;
  2198.         }
  2199.  
  2200.         li ul {
  2201.             margin-top: -0.1em;
  2202.             margin-bottom: 0.5em;
  2203.  
  2204.             li {
  2205.                 margin: 0em;
  2206.             }
  2207.         }
  2208.     }
  2209.  
  2210.     .nested {
  2211.         /* Nested */
  2212.         font-size: 100%;
  2213.  
  2214.         .navbox .title {
  2215.             border: 1px solid #aaa;
  2216.         }
  2217.     }
  2218.  
  2219.     .titletext .SL span {
  2220.         /*no background on title text (we only want color)*/
  2221.         background-color: transparent;
  2222.     }
  2223. }
  2224.  
  2225. /* Hides navbox in tabview */
  2226. .ui-tabs .navbox-container {
  2227.     display: none;
  2228. }
  2229.  
  2230. /* Printing */
  2231. @media print {
  2232.     .navbox, .navbox-container {
  2233.         display: none;
  2234.     }
  2235. }
  2236.  
  2237. /*experimental navbox magic*/
  2238. .usertester table.collapsible.transition[id] > tbody {
  2239.     display: block;
  2240. }
  2241.  
  2242. /* ################################################## */
  2243. /* ### USERBOX (Template:Userbox)                 ### */
  2244. /* ################################################## */
  2245. .userbox {
  2246.     float: left;
  2247.     margin: 1px;
  2248.     width: 238px;
  2249.  
  2250.     &-image {
  2251.         width: 45px;
  2252.         height: 45px;
  2253.         text-align: center;
  2254.         font-size: 14pt;
  2255.     }
  2256.  
  2257.     &-text {
  2258.         font-size: 8pt;
  2259.         padding: 4pt;
  2260.         line-height: 1.25em;
  2261.     }
  2262. }
  2263.  
  2264. /* ################################################## */
  2265. /* ### TEMPLATE NAVIGATION (Template:Tnav)        ### */
  2266. /* ################################################## */
  2267. .tnav {
  2268.     float: left;
  2269.     font-size: 10px;
  2270.     margin-left: 0;
  2271.     font-family: verdana, sans-serif;
  2272.     white-space: nowrap;
  2273.     word-spacing: -.12em;
  2274.     width: 6em;
  2275.     text-align: left;
  2276. }
  2277.  
  2278. /* ################################################## */
  2279. /* ### MAINTENANCE (Template:Mbox)                ### */
  2280. /* ################################################## */
  2281.  
  2282. /* Design */
  2283. .mbox {
  2284.     border: 4px ridge silver;
  2285.     border-radius: 10px;
  2286.     color: white;
  2287.     margin: auto;
  2288.     width: 80%;
  2289.     background: navy;
  2290.  
  2291.     a:link, a:visited {
  2292.         color: yellow;
  2293.     }
  2294.  
  2295.     .mbox-image {
  2296.         /* Image to the left */
  2297.         margin: auto;
  2298.         padding: 5px;
  2299.         width: 70px;
  2300.     }
  2301.  
  2302.     .mbox-quote {
  2303.         /* Character quote font */
  2304.         font-size: 15px;
  2305.         font-weight: bold;
  2306.     }
  2307.  
  2308.     &.SD {
  2309.         /* Specifically for Template:SD */
  2310.         border: 4px ridge #999999;
  2311.         font-size: 13px;
  2312.         text-align: center;
  2313.         background: black;
  2314.     }
  2315. }
  2316.  
  2317. @media print {
  2318.     .mbox {
  2319.         display: none;
  2320.     }
  2321. }
  2322.  
  2323. /* no mbox when printing */
  2324.  
  2325. /* ################################################## */
  2326. /* ### LICENSING (Template:Lbox)                  ### */
  2327. /* ################################################## */
  2328.  
  2329. /* Design */
  2330. .lbox {
  2331.     background: azure;
  2332.     border: 4px ridge blue;
  2333.     border-radius: 10px;
  2334.     color: black;
  2335.     margin: auto;
  2336.     width: 80%;
  2337.  
  2338.     .lbox-image {
  2339.         /* Image to the left */
  2340.         margin: auto;
  2341.         padding: 5px;
  2342.         width: 80px;
  2343.     }
  2344. }
  2345.  
  2346. /* ################################################## */
  2347. /* ### OTHER                                      ### */
  2348. /* ################################################## */
  2349. /* Official slightly shaded color */
  2350. .shaded {
  2351.     background-color: rgba(0, 0, 0, 0.1);
  2352. }
  2353.  
  2354. /* Hide that a lot of unnecessary requests occur on upload forms */
  2355. #mw-spinner-license + #mw-spinner-license {
  2356.     display: none;
  2357. }
  2358.  
  2359. /* pop-up in-doc window related things */
  2360. .blackout {
  2361.     background: none repeat scroll 0 0 white;
  2362.     height: 100%;
  2363.     left: 0;
  2364.     opacity: 0.8;
  2365.     position: fixed;
  2366.     top: 0;
  2367.     width: 100%;
  2368. }
  2369.  
  2370. .modalWrapper {
  2371.     background: none repeat scroll 0 0 padding-box white;
  2372.     border-color: rgba(255, 255, 255, 0.8);
  2373.     border-style: solid;
  2374.     border-width: 5px;
  2375.     box-shadow: 0 10px 60px 0 #7f7f7f;
  2376.     color: #3a3a3a;
  2377.     position: absolute;
  2378. }
  2379.  
  2380. textarea.user-comment {
  2381.     background-color: #f2f2f2;
  2382.     border: 1px solid #cccccc;
  2383.     border-radius: 4px;
  2384.     color: #3a3a3a;
  2385.     display: block;
  2386.     font-family: inherit;
  2387.     font-size: 12px;
  2388.     line-height: 23px;
  2389.     padding: 5px;
  2390.     width: 252px;
  2391.     height: 27px;
  2392.     line-height: 15px;
  2393.     margin: 5px 0;
  2394.     resize: none;
  2395. }
  2396.  
  2397. /* HTML syntax highlighting */
  2398. .source-html5 {
  2399.     line-height: normal;
  2400.  
  2401.     li, pre {
  2402.         border: 0 none white;
  2403.         line-height: normal;
  2404.     }
  2405. }
  2406.  
  2407. .html5.source-html5 {
  2408.     font-family: monospace;
  2409.  
  2410.     .de1, .de2 {
  2411.         background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  2412.         font: 1em/1.2em monospace;
  2413.         margin: 0;
  2414.         padding: 0;
  2415.         vertical-align: top;
  2416.     }
  2417.  
  2418.     .imp {
  2419.         color: red;
  2420.         font-weight: bold;
  2421.     }
  2422.  
  2423.     li, .li1 {
  2424.         font-weight: normal;
  2425.         vertical-align: top;
  2426.     }
  2427.  
  2428.     .ln {
  2429.         margin: 0;
  2430.         padding: 0 2px;
  2431.         text-align: right;
  2432.         vertical-align: top;
  2433.         width: 1px;
  2434.     }
  2435.  
  2436.     .li2 {
  2437.         font-weight: bold;
  2438.         vertical-align: top;
  2439.     }
  2440.  
  2441.     .kw2 {
  2442.         color: #000000;
  2443.         font-weight: bold;
  2444.     }
  2445.  
  2446.     .kw3 {
  2447.         color: #000066;
  2448.     }
  2449.  
  2450.     .es0 {
  2451.         color: #000099;
  2452.         font-weight: bold;
  2453.     }
  2454.  
  2455.     .br0 {
  2456.         color: #66cc66;
  2457.     }
  2458.  
  2459.     .sy0 {
  2460.         color: #66cc66;
  2461.     }
  2462.  
  2463.     .st0 {
  2464.         color: #ff0000;
  2465.     }
  2466.  
  2467.     .nu0 {
  2468.         color: #cc66cc;
  2469.     }
  2470.  
  2471.     .sc-2 {
  2472.         color: #404040;
  2473.     }
  2474.  
  2475.     .sc-1 {
  2476.         color: #808080;
  2477.         font-style: italic;
  2478.     }
  2479.  
  2480.     .sc0 {
  2481.         color: #00bbdd;
  2482.     }
  2483.  
  2484.     .sc1 {
  2485.         color: #ddbb00;
  2486.     }
  2487.  
  2488.     .sc2 {
  2489.         color: #009900;
  2490.     }
  2491.  
  2492.     .ln-xtra {
  2493.         background-color: #ffc;
  2494.     }
  2495.  
  2496.     span.xtra {
  2497.         display: block;
  2498.     }
  2499. }
  2500.  
  2501. /* CSS SYNTAX styling */
  2502. .source-css {
  2503.     line-height: normal;
  2504.  
  2505.     li, pre {
  2506.         border: 0px none white;
  2507.         line-height: normal;
  2508.     }
  2509. }
  2510.  
  2511. .css.source-css {
  2512.     font-family: monospace,monospace;
  2513.  
  2514.     .de1, .de2 {
  2515.         background: none repeat scroll 0% 0% transparent;
  2516.         font: 1em/1.2em monospace,monospace;
  2517.         margin: 0px;
  2518.         padding: 0px;
  2519.         vertical-align: top;
  2520.     }
  2521.  
  2522.     .imp {
  2523.         font-weight: bold;
  2524.     }
  2525.  
  2526.     li, .li1 {
  2527.         font-weight: normal;
  2528.         vertical-align: top;
  2529.     }
  2530.  
  2531.     .ln {
  2532.         margin: 0px;
  2533.         padding: 0px 2px;
  2534.         text-align: right;
  2535.         vertical-align: top;
  2536.         width: 1px;
  2537.     }
  2538.  
  2539.     .li2 {
  2540.         font-weight: bold;
  2541.         vertical-align: top;
  2542.     }
  2543.  
  2544.     .kw1 {
  2545.         font-weight: bold;
  2546.     }
  2547.  
  2548.     .co2 {
  2549.         font-style: italic;
  2550.     }
  2551.  
  2552.     .coMULTI {
  2553.         font-style: italic;
  2554.     }
  2555.  
  2556.     .es0 {
  2557.         font-weight: bold;
  2558.     }
  2559.  
  2560.     .es2 {
  2561.         font-weight: bold;
  2562.     }
  2563.  
  2564.     span.xtra {
  2565.         display: block;
  2566.     }
  2567.  
  2568.     .ln-xtra, li.ln-xtra, div.ln-xtra {
  2569.         /*?*/
  2570.         background-color: #ffffcc;
  2571.     }
  2572.  
  2573.     /* CSS SYNTAX colors */
  2574.     .imp {
  2575.         color: red;
  2576.     }
  2577.  
  2578.     .kw1 {
  2579.         color: #000000;
  2580.     }
  2581.  
  2582.     .kw2 {
  2583.         color: #993333;
  2584.     }
  2585.  
  2586.     .co1 {
  2587.         color: #A1A100;
  2588.     }
  2589.  
  2590.     .co2 {
  2591.         color: #FF0000;
  2592.     }
  2593.  
  2594.     .coMULTI {
  2595.         color: #808080;
  2596.     }
  2597.  
  2598.     .es0 {
  2599.         color: #000099;
  2600.     }
  2601.  
  2602.     .es2 {
  2603.         color: #000099;
  2604.     }
  2605.  
  2606.     .br0 {
  2607.         color: #00AA00;
  2608.     }
  2609.  
  2610.     .sy0 {
  2611.         color: #00AA00;
  2612.     }
  2613.  
  2614.     .st0 {
  2615.         color: #FF0000;
  2616.     }
  2617.  
  2618.     .nu0 {
  2619.         color: #CC66CC;
  2620.     }
  2621.  
  2622.     .re0 {
  2623.         color: #CC00CC;
  2624.     }
  2625.  
  2626.     .re1 {
  2627.         color: #6666FF;
  2628.     }
  2629.  
  2630.     .re2 {
  2631.         color: #3333FF;
  2632.     }
  2633.  
  2634.     .re3 {
  2635.         color: #993333;
  2636.     }
  2637. }
  2638.  
  2639. /* Wikia Maps */
  2640. .wikia-interactive-map-thumbnail a figcaption div span {
  2641.     display: none;
  2642. }
  2643.  
  2644. /* FFI - Final Fantasy */
  2645. @include game(FFI, #00BFFF, black, #00FFFF, black, "3/33/Navbg1.png");
  2646.  
  2647. /* FFII - Final Fantasy II */
  2648. @include game(FFII, #C773A7, white, #E9CDDC, black, "5/5d/Navbg2.png");
  2649.  
  2650. /* FFIIHnD - Final Fantasy II Hihō no Doragon */
  2651. @include game(FFIIHnD, #A359A4, white, #D35A5F, white, null);
  2652.  
  2653. /* FFIII - Final Fantasy III */
  2654. @include game(FFIII, #68DC78, black, #33CCFF, black, "7/75/Navbg3.png");
  2655.  
  2656. /* FFIV - Final Fantasy IV */
  2657. @include game(FFIVa, #191970, white, #AFB5D7, black, "d/df/Navbg4.png");
  2658.  
  2659. /* IVCCI - Final Fantasy IV -Interlude- */
  2660. @include game(IVCCIa, #483D8B, white, #6495ED, black, "0/0e/Navbg4i.png");
  2661.  
  2662. /* IVTAY - Final Fantasy IV: The After Years */
  2663. .IVTAYa, .IVTAY.a, .IVTAY .a {
  2664.     background-color: #76529C;
  2665.     color: white;
  2666. }
  2667.  
  2668. .IVTAYb, .IVTAY.b, .IVTAY .b {
  2669.     background-color: #95BCE5;
  2670.     color: black;
  2671. }
  2672.  
  2673. #IVTAY-nav .navbox .maintitle {
  2674.     background-image: url("http://img2.wikia.nocookie.net/__cb20140417153140/finalfantasy/images/3/39/Navbg4tay.png"), linear-gradient(to right, #FFFFFF 100px, rgba(255, 255, 255, 0) 300px);
  2675.     background-repeat: no-repeat;
  2676. }
  2677.  
  2678. /* FFV - Final Fantasy V */
  2679. @include game(FFV, #800080, white, #CCCCFF, black, "8/87/Navbg5.png");
  2680.  
  2681. /* LotC - Final Fantasy: Legend of the Crystals */
  2682. @include game(LotC, #B64D51, white, #FDF5E6, black, "6/6d/NavbgLotC.png");
  2683.  
  2684. /* FFVI - Final Fantasy VI */
  2685. @include game(FFVI, #CC0011, white, #8B0000, white, "0/0d/Navbg6.png");
  2686.  
  2687. /* FFVII - Final Fantasy VII */
  2688. @include game(FFVII, #234432, white, #B0C4DE, black, "c/c9/Navbg7.png");
  2689.  
  2690. /* VIIAC - Final Fantasy VII: Advent Children */
  2691. @include game(VIIAC, #236B8E, white, #5C9DAF, black, "a/a0/Navbg7ac.png");
  2692.  
  2693. /* VIIBC - Before Crisis -Final Fantasy VII- */
  2694. @include game(VIIBC, #2F4F4F, white, #C0C0C0, black, "2/2e/Navbg7bc.png");
  2695.  
  2696. /* VIIDoC - Dirge of Cerberus -Final Fantasy VII- */
  2697. @include game(VIIDoC, #E5050D, black, #5E020F, white, "7/73/Navbg7dc.png");
  2698.  
  2699. /* DoCLE - Dirge of Cerberus Lost Episode -Final Fantasy VII- */
  2700. @include game(DoCLE, #E5050D, black, #5E020F, white, "7/73/Navbg7dc.png");
  2701.  
  2702. /* VIICC - Crisis Core -Final Fantasy VII- */
  2703. @include game(VIICC, #256FD8, white, #70EBF0, black, "1/1d/Navbg7cc.png");
  2704.  
  2705. /* VIILO - Last Order -Final Fantasy VII- */
  2706. @include game(VIILO, #2F4F4F, white, #BBCCD0, black, "6/6e/Navbg7lo.png");
  2707.  
  2708. /* OtWtaS - On the Way to a Smile */
  2709. @include game(OtWtaS, #234432, white, #989898, black, null);
  2710.  
  2711. /* VIILBT - Final Fantasy VII Lateral Biography Turks -The Kids Are Alright- */
  2712. @include game(VIILBT, #544C6A, white, #C4BA8B, black, null);
  2713.  
  2714. /* HwMO - Hoshi wo Meguru Otome */
  2715. @include game(HwMO, #234432, white, #577A7C, white, null);
  2716.  
  2717. /* VIISB - Final Fantasy VII: Snowboarding */
  2718. @include game(VIISB, #234432, white, #577A7C, white, "2/26/Navbg7snow.png");
  2719.  
  2720. /* VIIGB - Final Fantasy VII G-Bike */
  2721. @include game(VIIGB, #887777, white, #EE5566, white, "c/ca/NavboxbgVIIGB.png");
  2722.  
  2723. /* FFVIII - Final Fantasy VIII */
  2724. @include game(FFVIII, #800000, white, #FFA500, black, "c/ce/Navbg8.png");
  2725.  
  2726. /* FFIX - Final Fantasy IX */
  2727. @include game(FFIX, #FFD700, black, #EEE8AA, black, "6/60/Navbg9.png");
  2728.  
  2729. /* FFX - Final Fantasy X */
  2730. @include game(FFX, #00BFFF, black, #FFD700, black, "5/50/Navbg10.png");
  2731.  
  2732. /* FFXEC - Final Fantasy X: Eternal Calm */
  2733. @include game(FFXEC, #3C8C83, white, #CFECFE, black, null);
  2734.  
  2735. /* X2 - Final Fantasy X-2 */
  2736. @include game(X2, #EE82EE, black, #1E90FF, white, "d/d2/Navbg10-2.png");
  2737.  
  2738. /* X2LM - Final Fantasy X-2: Last Mission */
  2739. @include game(X2LM, #D372EA, black, #FCEF61, black, "d/d2/Navbg10-2.png");
  2740.  
  2741. /* X2p5 - Final Fantasy X-2.5 ~Eien no Daishou~ */
  2742. @include game(X2p5, #0178BC, white, #8F8F7F, white, null);
  2743.  
  2744. /* FFXWill - Final Fantasy X -Will- */
  2745. @include game(FFXWill, #5F897D, white, #C7A490, white, null);
  2746.  
  2747. /* FFXI - Final Fantasy XI */
  2748. @include game(FFXI, #4169E1, white, #87CEFA, black, "3/37/Navbg11.png");
  2749.  
  2750. /* FFGrand - Final Fantasy Grandmasters */
  2751. @include game(FFGrand, #1AAACC, black, #660A2A, white, null);
  2752.  
  2753. /* FFXII - Final Fantasy XII */
  2754. @include game(FFXII, #3300CC, white, #FFCC99, black, "0/08/Navbg12.png");
  2755.  
  2756. /* XIIRW - Final Fantasy XII: Revenant Wings */
  2757. @include game(XIIRW, #00008B, white, #33CCFF, black, "8/8f/Navbg12rw.png");
  2758.  
  2759. /* D2H - Dive II Hunt: The Adventures of Sorbet */
  2760. @include game(D2H, #373536, white, #BBD4B7, black, null);
  2761.  
  2762. /* FFXIII - Final Fantasy XIII */
  2763. @include game(FFXIII, #00CED1, black, #7FFFD4, black, "5/57/Navbg13.png");
  2764.  
  2765. /* XIII2 - Final Fantasy XIII-2 */
  2766. @include game(XIII2, #5C2F5D, white, #E81E68, white, "4/48/Navbg13-2.png");
  2767.  
  2768. /* LR - Lightning Returns: Final Fantasy XIII */
  2769. @include game(LR, #C0E0EE, black, #666699, white, "f/f1/Navbglr13.png");
  2770.  
  2771. /* XIIIE0 - Final Fantasy XIII Episode Zero -Promise- */
  2772. @include game(XIIIE0, #75B095, white, #F8F9F3, black, null);
  2773.  
  2774. /* XIIIEi - Final Fantasy XIII -Episode i- */
  2775. @include game(XIIIEi, #F9F4F3, black, #F9C4D3, black, null);
  2776.  
  2777. /* XIII2FB - Final Fantasy XIII-2 Fragments Before */
  2778. @include game(XIII2FB, #98648A, white, #A68EA7, white, null);
  2779.  
  2780. /* XIII2FA - Final Fantasy XIII-2 Fragments After */
  2781. @include game(XIII2FA, #908AA0, white, #A68EA7, white, null);
  2782.  
  2783. /* XIIIRem - Final Fantasy XIII: Reminiscence -tracer of memories- */
  2784. @include game(XIIIRem, #BB2B2B, white, #22B2B2, white, null);
  2785.  
  2786. /* XIV1 - Final Fantasy XIV */
  2787. @include game(XIV1, #5C62AC, white, #F3651B, black, null);
  2788.  
  2789. /* FFXIV - Final Fantasy XIV */
  2790. @include game(FFXIV, #16487A, white, #9C2334, white, "9/9e/Navbg14.png");
  2791.  
  2792. /* FFXV - Final Fantasy XV */
  2793. @include game(FFXV, #121122, white, #AABACA, black, "2/2c/Navbg15.png");
  2794.  
  2795. /* FFT - Final Fantasy Tactics */
  2796. @include game(FFT, #F0E68C, black, #A9A9A9, black, "c/cb/NavbgT.png");
  2797.  
  2798. /* FFTA - Final Fantasy Tactics Advance */
  2799. @include game(FFTA, #4682B4, white, #FFAE29, black, "8/8a/NavbgTA.png");
  2800.  
  2801. /* FFTA2 - Final Fantasy Tactics A2: Grimoire of the Rift */
  2802. @include game(FFTA2, #4682B4, white, #F5DEB3, black, "e/e3/NavbgTA2.png");
  2803.  
  2804. /* FFTS - Final Fantasy Tactics S */
  2805. @include game(FFTS, #4682B4, white, #C05040, white, "c/c9/NavbgTS.png");
  2806.  
  2807. /* CrystD - Crystal Defenders */
  2808. @include game(CrystD, #4682B4, white, #FFFACD, black, "5/5e/NavbgCD.png");
  2809.  
  2810. /* CDVS - Crystal Defenders: Vanguard Storm */
  2811. @include game(CDVS, #4682B4, white, #D8D8F2, black, "3/3b/NavbgCDVS.png");
  2812.  
  2813. /* VagrS - Vagrant Story */
  2814. @include game(VagrS, #8E6029, white, #B29F6D, black, "f/fd/NavbgVS.png");
  2815.  
  2816. /* Fortress - Fortress */
  2817. @include game(Fortress, #3300CC, white, #DC3C5C, white, null);
  2818.  
  2819. /* Type0 - Final Fantasy Type-0 */
  2820. @include game(Type0, #8D1016, white, #EFA877, black, "a/a6/Navbgtype0.png");
  2821.  
  2822. /* Agito - Final Fantasy Agito */
  2823. @include game(Agito, #8D1016, white, #F1A7AF, black, "e/e8/Navbgagito.png");
  2824.  
  2825. /* T0HnS - Final Fantasy Type-0: Gaiden Hyōken no Shinigami */
  2826. @include game(T0HnS, #6C5299, white, #A01010, white, null);
  2827.  
  2828. /* FFCC - Final Fantasy Crystal Chronicles */
  2829. @include game(FFCC, #7FFFD4, black, #48D1CC, black, "3/31/NavboxbgFFCC.png");
  2830.  
  2831. /* CCRoF - Final Fantasy Crystal Chronicles: Ring of Fates */
  2832. @include game(CCRoF, #FF6347, black, #FFDAB9, black, "c/cc/NavboxbgCCRoF.png");
  2833.  
  2834. /* CCMLaaK - Final Fantasy Crystal Chronicles: My Life as a King */
  2835. @include game(CCMLaaK, #15317E, white, #4082CC, black, "9/9a/NavboxbgCCMLaaK.png");
  2836.  
  2837. /* CCEoT - Final Fantasy Crystal Chronicles: Echoes of Time */
  2838. @include game(CCEoT, #87CEEB, black, #00CED1, black, "3/37/NavboxbgCCEoT.png");
  2839.  
  2840. /* CCMLaaD - Final Fantasy Crystal Chronicles: My Life as a Darklord */
  2841. @include game(CCMLaaD, #5C1193, white, #DB7093, black, "d/de/NavboxbgCCMLaaD.png");
  2842.  
  2843. /* CCTCB - Final Fantasy Crystal Chronicles: The Crystal Bearers */
  2844. @include game(CCTCB, #1111AB, white, #EEC600, black, "2/23/NavboxbgCCTCB.png");
  2845.  
  2846. /* FFMQ - Final Fantasy Mystic Quest */
  2847. @include game(FFMQ, #658197, white, #D9B16B, black, "7/79/Navbgmq.png");
  2848.  
  2849. /* FFA - Final Fantasy Adventure */
  2850. @include game(FFA, #22C055, white, #FFD700, black, "b/b3/NavboxbgA.png");
  2851.  
  2852. /* FFL - The Final Fantasy Legend */
  2853. @include game(FFL, #A19D00, white, #FFD700, black, "0/0f/Navbgffl.png");
  2854.  
  2855. /* FFL2 - Final Fantasy Legend II */
  2856. @include game(FFL2, #2250C7, white, #FFD700, black, null);
  2857.  
  2858. /* FFL3 - Final Fantasy Legend III */
  2859. @include game(FFL3, #591868, white, #FFD700, black, null);
  2860.  
  2861. /* T4HoL - Final Fantasy: The 4 Heroes of Light */
  2862. @include game(T4HoL, #3EA2D7, black, #CEDE7B, black, "1/1d/Navbgt4hol.png");
  2863.  
  2864. /* BravelyD - Bravely Default */
  2865. @include game(BravelyD, #FFE4B5, black, #E4F0E4, black, "8/80/Navbgbd.png");
  2866.  
  2867. /* BDPB - Bravely Default: Praying Brage */
  2868. @include game(BDPB, #FFE4B5, black, #E4E4F0, black, "4/48/NavbgBDPB.png");
  2869.  
  2870. /* BravelyS - Bravely Second: End Layer */
  2871. @include game(BravelyS, #FFE4B5, black, #FFFFDD, black, null);
  2872.  
  2873. /* BADR - Bravely Archive: D's Report */
  2874. @include game(BADR, #FFE4B5, black, #C0C0FF, black, null);
  2875.  
  2876. /* FFD - Final Fantasy Dimensions */
  2877. @include game(FFD, #E72700, white, #007FC0, white, "c/cd/Navbgdimensions.png");
  2878.  
  2879. /* FFLTNS - Final Fantasy Legends: Toki no Suishō */
  2880. @include game(FFLTNS, #60FFFA, black, #FF90FF, black, "4/4f/NavboxbgFFLSTC.png");
  2881.  
  2882. /* Dissidia - Dissidia Final Fantasy */
  2883. @include game(Dissidia, #4682B4, white, #FA8072, black, "9/92/Navbgdissidia.png");
  2884.  
  2885. /* D012 - Dissidia 012 Final Fantasy */
  2886. @include game(D012, #B0C4DE, black, #C9BE62, black, "8/85/Navbgdissidia012.png");
  2887.  
  2888. /* DFF2015 - Dissidia Final Fantasy 2015 */
  2889. @include game(DFF2015, #6729BC, white, #FF0DA3, white, "e/ea/NavbgDFF2015.png");
  2890.  
  2891. /* TFF - Theatrhythm Final Fantasy */
  2892. @include game(TFF, #756E9D, white, #943E43, white, "3/3d/Navbgtheat.png");
  2893.  
  2894. /* TFFCC - Theatrhythm Final Fantasy Curtain Call */
  2895. @include game(TFFCC, #FFDD00, black, #943E43, white, "6/6e/Navbgtheatcc.png");
  2896.  
  2897. /* PFF - Pictlogica Final Fantasy */
  2898. @include game(PFF, #002050, white, #6080B0, black, "d/da/Navbgpff.png");
  2899.  
  2900. /* FFAB - Final Fantasy Airborne Brigade */
  2901. @include game(FFAB, #5ABCD5, black, #FDEFAE, black, "0/08/NavboxbgFFAB.png");
  2902.  
  2903. /* Artniks - Final Fantasy Artniks */
  2904. @include game(Artniks, #70B0E0, black, #666666, white, "f/f5/NavboxbgArtniks.png");
  2905.  
  2906. /* ArtDive - Final Fantasy Artniks Dive */
  2907. @include game(ArtDive, #002F3A, white, #30B0D0, black, null);
  2908.  
  2909. /* FFATB - Final Fantasy All the Bravest */
  2910. @include game(FFATB, #FF8866, black, #90C0F0, black, "4/49/NavboxbgFFATB.png");
  2911.  
  2912. /* FFRK - Final Fantasy Record Keeper */
  2913. @include game(FFRK, #ABBFA8, black, #BD876F, black, "6/62/Navbgffrk.png");
  2914.  
  2915. /* FFE - Final Fantasy Explorers */
  2916. @include game(FFE, #003366, white, #7798B7, black, "4/46/Navbgexplorers.png");
  2917.  
  2918. /* FFWWW - Final Fantasy World Wide Words */
  2919. @include game(FFWWW, #CD425B, black, #E4697F, black, null);
  2920.  
  2921. /* ChocoR - Chocobo Racing */
  2922. @include game(ChocoR, #FFFF00, black, #F4A460, black, null);
  2923.  
  2924. /* FFBE - Final Fantasy Brave Exvius */
  2925. @include game(FFBE, #1155AA, white, #DD4477, black, "7/78/NavbgFFBE.png");
  2926.  
  2927. /* Mobius - Mobius Final Fantasy */
  2928. @include game(Mobius, #FFE264, black, #CCA264, black, null);
  2929.  
  2930. /* ChocoD - Chocobo no Fushigi na Dungeon */
  2931. @include game(ChocoD, #FFFF00, black, #F4A460, black, null);
  2932.  
  2933. /* ChocoD2 - Chocobo's Dungeon 2 */
  2934. @include game(ChocoD2, #FFFF00, black, #F4A460, black, null);
  2935.  
  2936. /* FablesCT - Final Fantasy Fables: Chocobo Tales */
  2937. @include game(FablesCT, #FFFF00, black, #F4A460, black, null);
  2938.  
  2939. /* ChocoME - Chocobo to Mahou no Ehon: Majo to Shoujo to Go-nin no Yuusha */
  2940. @include game(ChocoME, #FFFF00, black, #F4A460, black, null);
  2941.  
  2942. /* FablesCD - Final Fantasy Fables: Chocobo's Dungeon */
  2943. @include game(FablesCD, #FFFF00, black, #F4A460, black, null);
  2944.  
  2945. /* ChocoS - Chocobo Stallion */
  2946. @include game(ChocoS, #FFFF00, black, #F4A460, black, null);
  2947.  
  2948. /* DdC - Dice de Chocobo */
  2949. @include game(DdC, #FFFF00, black, #F4A460, black, null);
  2950.  
  2951. /* ChocoP - Chocobo Panic */
  2952. @include game(ChocoP, #FFFF00, black, #5BAC4D, white, null);
  2953.  
  2954. /* FFU - Final Fantasy: Unlimited */
  2955. @include game(FFU, #FF4500, white, #FFDAB9, black, "4/46/NavboxbgFFU.png");
  2956.  
  2957. /* FFUA - Final Fantasy: Unlimited After */
  2958. @include game(FFUA, #CC4500, white, #DD9C77, white, null);
  2959.  
  2960. /* FFUA2 - Final Fantasy: Unlimited After 2 */
  2961. @include game(FFUA2, #DD9C77, white, #FCFAF7, black, null);
  2962.  
  2963. /* FFUwU - Final Fantasy: Unlimited with U */
  2964. @include game(FFUwU, #FC6A05, black, #055E88, white, null);
  2965.  
  2966. /* FFUonPC - Final Fantasy: Unlimited on PC Adventure - Labyrinth */
  2967. @include game(FFUonPC, #FF4500, white, #8090D0, white, null);
  2968.  
  2969. /* TSW - Final Fantasy: The Spirits Within */
  2970. @include game(TSW, #708090, white, #A9A9A9, black, "c/ca/NavboxbgTSW.png");
  2971.  
  2972. /* FFTCG - Final Fantasy Trading Card Game */
  2973. @include game(FFTCG, #60BDFF, black, #888888, black, "7/77/NavbgFFTCG.png");
  2974.  
  2975. /* series - Final Fantasy series */
  2976. @include game(series, #000000, white, #FFFFFF, black, "f/fb/Navbgseries.png");
  2977.  
  2978. /* main - Main series */
  2979. @include game(main, #000000, white, #FFFFFF, black, null);
  2980.  
  2981. /* IIseries - Final Fantasy II series */
  2982. @include game(IIseries, #C773A7, white, #E9CDDC, black, null);
  2983.  
  2984. /* IVCC - Final Fantasy IV: The Complete Collection */
  2985. @include game(IVCC, #483D8B, white, #6495ED, black, null);
  2986.  
  2987. /* Vseries - Final Fantasy V series */
  2988. @include game(Vseries, #800080, white, #CCCCFF, black, null);
  2989.  
  2990. /* compVII - Compilation of Final Fantasy VII */
  2991. @include game(compVII, #234432, white, #577A7C, white, "3/39/Navbgcoff7.png");
  2992.  
  2993. /* Spira - Final Fantasy X series */
  2994. @include game(Spira, #10A0FF, black, #EE82EE, black, "2/20/NavbgSpira.png");
  2995.  
  2996. /* Ival - Ivalice series */
  2997. @include game(Ival, #373536, white, #BBD4B7, black, "6/62/Navbgivalice2.png");
  2998.  
  2999. /* XIIser - Final Fantasy XII series */
  3000. @include game(XIIser, #3300CC, white, #FFCC99, black, null);
  3001.  
  3002. /* Vanadiel - Vana'diel series */
  3003. @include game(Vanadiel, #4169E1, white, #87CEFA, black, null);
  3004.  
  3005. /* FNC - Fabula Nova Crystallis */
  3006. @include game(FNC, #EEE8AA, black, #4682B4, white, "1/1e/Navbgfnc.png");
  3007.  
  3008. /* LSaga - Lightning Saga */
  3009. @include game(LSaga, #DF9F96, black, #00CED1, black, "e/e7/NavbgLS.png");
  3010.  
  3011. /* T0series - Final Fantasy Type-0 series */
  3012. @include game(T0series, #8D1016, white, #EFA877, black, null);
  3013.  
  3014. /* Versus - Versus epic */
  3015. @include game(Versus, #121122, white, #AABACA, black, null);
  3016.  
  3017. /* TAseries - Final Fantasy Tactics Advance series */
  3018. @include game(TAseries, #4682B4, white, #FFAE29, black, null);
  3019.  
  3020. /* CDseries - Crystal Defenders series */
  3021. @include game(CDseries, #4682B4, white, #FFFACD, black, null);
  3022.  
  3023. /* CCseries - Final Fantasy Crystal Chronicles series */
  3024. @include game(CCseries, #4CC552, white, #A0CFEC, black, null);
  3025.  
  3026. /* SaGa - SaGa series */
  3027. @include game(SaGa, #CB3E34, white, #FFD700, black, null);
  3028.  
  3029. /* BDseries - Bravely Default series */
  3030. @include game(BDseries, #FFE4B5, black, #E4E4E4, black, null);
  3031.  
  3032. /* DissiSer - Dissidia Final Fantasy series */
  3033. @include game(DissiSer, #4682B4, white, #FA8072, black, null);
  3034.  
  3035. /* TheatSer - Theatrhythm Final Fantasy series */
  3036. @include game(TheatSer, #756E9D, white, #943E43, white, null);
  3037.  
  3038. /* ArtSer - Final Fantasy Artniks series */
  3039. @include game(ArtSer, #002C46, white, #70BABE, black, null);
  3040.  
  3041. /* Choco - Chocobo Series */
  3042. @include game(Choco, #FFFF00, black, #F4A460, black, "7/7f/Navbgchocos.png");
  3043.  
  3044. /* CDungeon - Chocobo's Dungeon series */
  3045. @include game(CDungeon, #FFFF00, black, #F4A460, black, null);
  3046.  
  3047. /* Fables - Final Fantasy Fables series */
  3048. @include game(Fables, #FFFF00, black, #F4A460, black, null);
  3049.  
  3050. /* CCollect - Chocobo Collection */
  3051. @include game(CCollect, #FFFF00, black, #F4A460, black, null);
  3052.  
  3053. /* Unltd - Final Fantasy: Unlimited series */
  3054. @include game(Unltd, #FF4500, white, #FFDAB9, black, null);
  3055.  
  3056. // Trouble
  3057. table.jquery-tablesorter.sortable {
  3058.     &.FFII, &.FFIIHnD, &.FFIV, &.IVCCI, &.IVTAY, &.FFV, &.LotC, &.FFVI, &.FFVII, &.VIIAC, &.VIIBC, &.VIICC, &.VIILO, &.OtWtaS, &.VIILBT, &.HwMO, &.VIISB, &.VIIGB, &.FFVIII, &.FFXEC, &.X2p5, &.FFXWill, &.FFXI, &.FFXII, &.XIIRW, &.D2H, &.XIII2, &.XIIIE0, &.XIII2FB, &.XIII2FA, &.XIIIRem, &.XIV1, &.FFXIV, &.FFXV, &.FFTA, &.FFTA2, &.FFTS, &.CrystD, &.CDVS, &.VagrS, &.Fortress, &.Type0, &.Agito, &.T0HnS, &.CCMLaaK, &.CCMLaaD, &.CCTCB, &.FFMQ, &.FFA, &.FFL, &.FFL2, &.FFL3, &.FFD, &.Dissidia, &.DFF2015, &.TFF, &.PFF, &.ArtDive, &.FFE, &.FFBE, &.FFU, &.FFUA, &.FFUA2, &.FFUonPC, &.TSW, &.series, &.main, &.IIseries, &.IVCC, &.Vseries, &.compVII, &.Ival, &.XIIser, &.Vanadiel, &.T0series, &.Versus, &.TAseries, &.CDseries, &.CCseries, &.SaGa, &.DissiSer, &.TheatSer, &.ArtSer, &.Unltd {
  3059.         .a {
  3060.             th.headerSort .chevron {
  3061.                 border-top-color: #BBBBBB;
  3062.  
  3063.                 &:first-child {
  3064.                     border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #BBBBBB;
  3065.                 }
  3066.             }
  3067.         }
  3068.     }
  3069.  
  3070.     .FFII, .FFIIHnD, .FFIV, .IVCCI, .IVTAY, .FFV, .LotC, .FFVI, .FFVII, .VIIAC, .VIIBC, .VIICC, .VIILO, .OtWtaS, .VIILBT, .HwMO, .VIISB, .VIIGB, .FFVIII, .FFXEC, .X2p5, .FFXWill, .FFXI, .FFXII, .XIIRW, .D2H, .XIII2, .XIIIE0, .XIII2FB, .XIII2FA, .XIIIRem, .XIV1, .FFXIV, .FFXV, .FFTA, .FFTA2, .FFTS, .CrystD, .CDVS, .VagrS, .Fortress, .Type0, .Agito, .T0HnS, .CCMLaaK, .CCMLaaD, .CCTCB, .FFMQ, .FFA, .FFL, .FFL2, .FFL3, .FFD, .Dissidia, .DFF2015, .TFF, .PFF, .ArtDive, .FFE, .FFBE, .FFU, .FFUA, .FFUA2, .FFUonPC, .TSW, .series, .main, .IIseries, .IVCC, .Vseries, .compVII, .Ival, .XIIser, .Vanadiel, .T0series, .Versus, .TAseries, .CDseries, .CCseries, .SaGa, .DissiSer, .TheatSer, .ArtSer, .Unltd {
  3071.         &a, &.a {
  3072.             th.headerSort .chevron {
  3073.                 border-top-color: #BBBBBB;
  3074.  
  3075.                 &:first-child {
  3076.                     border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #BBBBBB;
  3077.                 }
  3078.             }
  3079.         }
  3080.     }
  3081. }
  3082.  
  3083. .FFIIHnD, .FFVI, .VIIDoC, .DoCLE, .HwMO, .VIISB, .VIIGB, .X2, .X2p5, .FFXWill, .FFGrand, .XIII2, .LR, .XIII2FB, .XIII2FA, .XIIIRem, .FFXIV, .FFTS, .Fortress, .T0HnS, .FFD, .DFF2015, .TFF, .TFFCC, .Artniks, .ChocoP, .FFUA, .FFUwU, .FFUonPC, .compVII, .FNC, .TheatSer {
  3084.     .b abbr {
  3085.         border-bottom-color: white;
  3086.     }
  3087. }
  3088.  
  3089. .FFII, .FFIIHnD, .FFIV, .IVCCI, .IVTAY, .FFV, .LotC, .FFVI, .FFVII, .VIIAC, .VIIBC, .VIICC, .VIILO, .OtWtaS, .VIILBT, .HwMO, .VIISB, .VIIGB, .FFVIII, .FFXEC, .X2p5, .FFXWill, .FFXI, .FFXII, .XIIRW, .D2H, .XIII2, .XIIIE0, .XIII2FB, .XIII2FA, .XIIIRem, .XIV1, .FFXIV, .FFXV, .FFTA, .FFTA2, .FFTS, .CrystD, .CDVS, .VagrS, .Fortress, .Type0, .Agito, .T0HnS, .CCMLaaK, .CCMLaaD, .CCTCB, .FFMQ, .FFA, .FFL, .FFL2, .FFL3, .FFD, .Dissidia, .DFF2015, .TFF, .PFF, .ArtDive, .FFE, .FFBE, .FFU, .FFUA, .FFUA2, .FFUonPC, .TSW, .series, .main, .IIseries, .IVCC, .Vseries, .compVII, .Ival, .XIIser, .Vanadiel, .T0series, .Versus, .TAseries, .CDseries, .CCseries, .SaGa, .DissiSer, .TheatSer, .ArtSer, .Unltd {
  3090.     &a, &.a, & .a {
  3091.         a:link {
  3092.             color: #B0E0E6;
  3093.         }
  3094.  
  3095.         a:visited {
  3096.             color: #D8BFD8;
  3097.         }
  3098.  
  3099.         a.new:link {
  3100.             color: #FFAAAA;
  3101.         }
  3102.  
  3103.         a.new:visited {
  3104.             color: #DDAAAA;
  3105.         }
  3106.     }
  3107.  
  3108.     .a abbr {
  3109.         border-bottom-color: white;
  3110.     }
  3111. }
  3112.  
  3113. #FFII, #FFIV, #IVCCI, #IVTAY, #FFV, #LotC, #FFVI, #FFVII, #VIIAC, #VIIBC, #VIICC, #VIILO, #VIISB, #VIIGB, #FFVIII, #FFXI, #FFXII, #XIIRW, #XIII2, #FFXIV, #FFXV, #FFTA, #FFTA2, #FFTS, #CrystD, #CDVS, #VagrS, #Type0, #Agito, #CCMLaaK, #CCMLaaD, #CCTCB, #FFMQ, #FFA, #FFL, #FFD, #Dissidia, #TFF, #PFF, #FFE, #FFBE, #FFU, #TSW, #series, #compVII, #Ival {
  3114.     &-nav .navbox .editlink {
  3115.         a:link {
  3116.             color: #002BB8;
  3117.         }
  3118.  
  3119.         a:visited {
  3120.             color: #5A3696;
  3121.         }
  3122.  
  3123.         a.new:link {
  3124.             color: #CC2200;
  3125.         }
  3126.  
  3127.         a.new:visited {
  3128.             color: #A5585A;
  3129.         }
  3130.     }
  3131. }
  3132.  
  3133. .FFI, .FFIII, .VIIDoC, .DoCLE, .FFIX, .FFX, .X2, .X2LM, .FFGrand, .FFXIII, .LRa, .XIIIEi, .FFT, .FFCC, .CCRoF, .CCEoT, .T4HoL, .BravelyD, .BDPB, .BravelyS, .BADR, .FFLTNS, .D012, .TFFCC, .FFAB, .Artniks, .FFATB, .FFRK, .FFWWW, .ChocoR, .Mobius, .ChocoD, .ChocoD2, .FablesCT, .ChocoME, .FablesCD, .ChocoS, .DdC, .ChocoP, .FFUwU, .FFTCG, .Spira, .FNC, .LSaga, .BDseries, .Choco, .CDungeon, .Fables, .CCollect {
  3134.     &a, &.a, & .a {
  3135.         a:link {
  3136.             color: #002BB8;
  3137.         }
  3138.  
  3139.         a:visited {
  3140.             color: #5A3696;
  3141.         }
  3142.  
  3143.         a.new:link {
  3144.             color: #CC2200;
  3145.         }
  3146.  
  3147.         a.new:visited {
  3148.             color: #A5585A;
  3149.         }
  3150.     }
  3151. }
  3152.  
  3153. // End Trouble
  3154. .FFIIHnD, .FFVI, .VIIDoC, .DoCLE, .HwMO, .VIISB, .VIIGB, .X2, .X2p5, .FFXWill, .FFGrand, .XIII2, .LR, .XIII2FB, .XIII2FA, .XIIIRem, .FFXIV, .FFTS, .Fortress, .T0HnS, .FFD, .DFF2015, .TFF, .TFFCC, .Artniks, .ChocoP, .FFUA, .FFUwU, .FFUonPC, .compVII, .FNC, .TheatSer {
  3155.     &b, &.b, & .b {
  3156.         a:link {
  3157.             color: #B0E0E6;
  3158.         }
  3159.  
  3160.         a:visited {
  3161.             color: #D8BFD8;
  3162.         }
  3163.  
  3164.         a.new:link {
  3165.             color: #FFAAAA;
  3166.         }
  3167.  
  3168.         a.new:visited {
  3169.             color: #DDAAAA;
  3170.         }
  3171.     }
  3172. }
  3173.  
  3174. .FFI, .FFII, .FFIII, .FFIV, .IVCCI, .IVTAY, .FFV, .LotC, .FFVII, .VIIAC, .VIIBC, .VIICC, .VIILO, .OtWtaS, .VIILBT, .FFVIII, .FFIX, .FFX, .FFXEC, .X2LM, .FFXI, .FFXII, .XIIRW, .D2H, .FFXIII, .XIIIE0, .XIIIEi, .XIV1, .FFXV, .FFT, .FFTA, .FFTA2, .CrystD, .CDVS, .VagrS, .Type0, .Agito, .FFCC, .CCRoF, .CCMLaaK, .CCEoT, .CCMLaaD, .CCTCB, .FFMQ, .FFA, .FFL, .FFL2, .FFL3, .T4HoL, .BravelyD, .BDPB, .BravelyS, .BADR, .FFLTNS, .Dissidia, .D012, .PFF, .FFAB, .ArtDive, .FFATB, .FFRK, .FFE, .FFWWW, .ChocoR, .FFBE, .Mobius, .ChocoD, .ChocoD2, .FablesCT, .ChocoME, .FablesCD, .ChocoS, .DdC, .FFU, .FFUA2, .TSW, .FFTCG, .series, .main, .IIseries, .IVCC, .Vseries, .Spira, .Ival, .XIIser, .Vanadiel, .LSaga, .T0series, .Versus, .TAseries, .CDseries, .CCseries, .SaGa, .BDseries, .DissiSer, .ArtSer, .Choco, .CDungeon, .Fables, .CCollect, .Unltd {
  3175.     &b, &.b, & .b {
  3176.         a:link {
  3177.             color: #002BB8;
  3178.         }
  3179.  
  3180.         a:visited {
  3181.             color: #5A3696;
  3182.         }
  3183.  
  3184.         a.new:link {
  3185.             color: #CC2200;
  3186.         }
  3187.  
  3188.         a.new:visited {
  3189.             color: #A5585A;
  3190.         }
  3191.     }
  3192. }
  3193.  
  3194. .navbox {
  3195.     .seriesb, .mainb {
  3196.         border: 1px solid black;
  3197.     }
  3198. }
  3199.  
  3200. #FFI, #FFII, #FFIIHnD, #FFIII, #FFIV, #IVCCI, #IVTAY, #FFV, #LotC, #FFVI, #FFVII, #VIIAC, #VIIBC, #VIIDoC, #DoCLE, #VIICC, #VIILO, #OtWtaS, #VIILBT, #HwMO, #VIISB, #VIIGB, #FFVIII, #FFIX, #FFX, #FFXEC, #X2, #X2LM, #X2p5, #FFXWill, #FFXI, #FFGrand, #FFXII, #XIIRW, #D2H, #FFXIII, #XIII2, #LR, #XIIIE0, #XIIIEi, #XIII2FB, #XIII2FA, #XIIIRem, #XIV1, #FFXIV, #FFXV, #FFT, #FFTA, #FFTA2, #FFTS, #CrystD, #CDVS, #VagrS, #Fortress, #Type0, #Agito, #T0HnS, #FFCC, #CCRoF, #CCMLaaK, #CCEoT, #CCMLaaD, #CCTCB, #FFMQ, #FFA, #FFL, #FFL2, #FFL3, #T4HoL, #BravelyD, #BDPB, #BravelyS, #BADR, #FFD, #FFLTNS, #Dissidia, #D012, #DFF2015, #TFF, #TFFCC, #PFF, #FFAB, #Artniks, #ArtDive, #FFATB, #FFRK, #FFE, #FFWWW, #ChocoR, #FFBE, #Mobius, #ChocoD, #ChocoD2, #FablesCT, #ChocoME, #FablesCD, #ChocoS, #DdC, #ChocoP, #FFU, #FFUA, #FFUA2, #FFUwU, #FFUonPC, #TSW, #FFTCG, #series, #main, #IIseries, #IVCC, #Vseries, #compVII, #Spira, #Ival, #XIIser, #Vanadiel, #FNC, #LSaga, #T0series, #Versus, #TAseries, #CDseries, #CCseries, #SaGa, #BDseries, #DissiSer, #TheatSer, #ArtSer, #Choco, #CDungeon, #Fables, #CCollect, #Unltd {
  3201.     &-nav .navbox .maintitle {
  3202.         line-height: 26px;
  3203.     }
  3204.  
  3205.     &-nav .navbox .editlink + .titletext {
  3206.         font-family: Ferrum;
  3207.         font-size: 24px;
  3208.         font-weight: normal;
  3209.         text-transform: uppercase;
  3210.     }
  3211.  
  3212.     &-nav .navbox .editlink + .titletext {
  3213.         i {
  3214.             font-style: normal;
  3215.         }
  3216.  
  3217.         .selflink {
  3218.             font-weight: normal;
  3219.         }
  3220.     }
  3221. }
  3222.  
  3223. #DoCLE, #VIILBT, #XIIIRem, #CCMLaaK, #CCMLaaD, #CCTCB, #ChocoME, #FFUonPC {
  3224.     &-nav .navbox .editlink + .titletext {
  3225.         font-family: Ferrum Condensed;
  3226.     }
  3227. }
  3228.  
  3229. #FFII, #FFIIHnD, #FFIV, #IVCCI, #IVTAY, #FFV, #LotC, #FFVI, #FFVII, #VIIAC, #VIIBC, #VIICC, #VIILO, #OtWtaS, #VIILBT, #HwMO, #VIISB, #VIIGB, #FFVIII, #FFXEC, #X2p5, #FFXWill, #FFXI, #FFXII, #XIIRW, #D2H, #XIII2, #XIIIE0, #XIII2FB, #XIII2FA, #XIIIRem, #XIV1, #FFXIV, #FFXV, #FFTA, #FFTA2, #FFTS, #CrystD, #CDVS, #VagrS, #Fortress, #Type0, #Agito, #T0HnS, #CCMLaaK, #CCMLaaD, #CCTCB, #FFMQ, #FFA, #FFL, #FFL2, #FFL3, #FFD, #Dissidia, #DFF2015, #TFF, #PFF, #ArtDive, #FFE, #FFBE, #FFU, #FFUA, #FFUA2, #FFUonPC, #TSW, #series, #main, #IIseries, #IVCC, #Vseries, #compVII, #Ival, #XIIser, #Vanadiel, #T0series, #Versus, #TAseries, #CDseries, #CCseries, #SaGa, #DissiSer, #TheatSer, #ArtSer, #Unltd {
  3230.     &-nav .navbox .editlink + .titletext {
  3231.         text-shadow: 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000;
  3232.     }
  3233. }
  3234.  
  3235. #FFII, #FFIV, #IVCCI, #IVTAY, #FFV, #LotC, #FFVI, #FFVII, #VIIAC, #VIIBC, #VIICC, #VIILO, #VIISB, #VIIGB, #FFVIII, #FFXI, #FFXII, #XIIRW, #XIII2, #FFXIV, #FFXV, #FFTA, #FFTA2, #FFTS, #CrystD, #CDVS, #VagrS, #Type0, #Agito, #CCMLaaK, #CCMLaaD, #CCTCB, #FFMQ, #FFA, #FFL, #FFD, #Dissidia, #TFF, #PFF, #FFE, #FFBE, #FFU, #TSW, #series, #compVII, #Ival {
  3236.     &-nav .navbox .editlink {
  3237.         color: black;
  3238.     }
  3239. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement