Kairosoft Wiki
Advertisement

//

/**
 * The is the root LESS file for [[MediaWiki:Common.css]]
 *
 * To update [[MediaWiki:Common.css]] from this file:
 * - For Oasis users: Click the "Update CSS" button at the top of the page
 * - For Monobook users: Click the "Update CSS" link in your toolbox
 *
 * For more information, see <http://dev.wikia.com/wiki/Less>
 * --------------------------------------------------------------------------------------------------------------------
 * LESS standard library: <http://lesscss.org/functions/>
 * Non-standard mixins:   <http://dev.wikia.com/wiki/Less/mixins>
 *
 * Available themedesigner values:
 * - @theme-body    -> body background colour
 * - @theme-buttons -> button colour
 * - @theme-header  -> collapsible footer bar colour
 * - @theme-links   -> link colour
 * - @theme-page    -> article content background
 */

// directory, used in imports
@dir: 'MediaWiki:Custom-handheld.less';

// template styling
@import '@{dir}/navbox.less';
@import 'MediaWiki:Custom-common.less/manualbox.less';
@import 'MediaWiki:Custom-common.less/colorbox.less';

/* ----------------------
       CSS to convert
   ---------------------- */
/**
 * General hide class to be used as necessary
 * Try to use this where possible.
 */
.mobile-hide {
    display: none !important;
}
#gamenav p { margin:0; } /* Paragraph added to allow links to be placed on separate lines in source editor. */
#gamenav {
    width:100%;
    text-align:center;
    margin-bottom:11px;
    background:#F2F2F2;
    color:black;
}
#gamenavtitle { font-size:120%; background:#DDD; }
#gamenavlinks { display:block; background:#E8E8E8; }
#gamenavbottom { display:block; background:#CCC; }
#gamenavsequel .prequel { float:left; }
#gamenavsequel .sequel { float:right; }
 
.messagebox {
    border:1px solid #AAA;
    border-left:10px solid #721410;
    padding:2px 5px;
    display:block;
    margin:3px 0;
}
 
/* "Blank cell" support for mobile */
.wikitable td { overflow: hidden; }
.blankCell {
    cursor:not-allowed;
    background:rgba(150,150,150,0.15);
    text-align:center;
    font-size:65%;
    color:rgba(58, 58, 58, 0.35);
    padding: 100px;
    margin: -100px;
}
//
Advertisement