Template:Blank space/styles.css

From Uncyclopedia, the content-free encyclopedia
Jump to navigation Jump to search
/* Removes all UI elements from skin, leaving only a blank space for one's
   artsy fartsy nonsense, will try to support the skins people actually
   use: Vector-2010, Vector-2022, MonoBook, Timeless and Minerva. 
   
   Since you cannot use template parameters on CSS stylesheets directly, this
   stylesheet is more for calling directly using the CSS extension if you do
   not want to use the template itself. {{#CSS:...}} only! TemplateStyles
   will NOT WORK!
   */
   
/* Vector-2010 */
body.skin-vector > *:not(#content) {
    display: none;
}
.skin-vector #content > *:not(#bodyContent) {
    display: none;
}
.skin-vector #bodyContent > *:not(#mw-content-text) {
    display: none;
}

body.skin-vector {
    background: #fff;
}
body.skin-vector #content {
    margin: 0;
    border: 0;
    background: #fff;
}

/* Vector-2022 */
body.skin-vector-2022 .mw-page-container-inner > *:not(.mw-content-container) {
    display: none;
}
body.skin-vector-2022 .mw-content-container > *:not(.mw-body) {
    display: none;
}
body.skin-vector-2022 .mw-body > *:not(.vector-body) {
    display: none;
}
body.skin-vector-2022 .vector-body > *:not(.mw-body-content) {
    display: none;
}

body.skin-vector-2022 .mw-page-container {
    margin: 0;
    padding: 1em;
    max-width: none;
    min-width: none;
    background: #fff;
}
body.skin-vector-2022 .mw-page-container-inner {
    display: block;
}
body.skin-vector-2022 .mw-content-container {
    max-width: none;
}

/* Monobook */
body.skin-monobook #globalWrapper > *:not(#column-content) {
    display: none;
}
body.skin-monobook #column-content > *:not(#content) {
    display: none;
}
body.skin-monobook #content > *:not(#bodyContent) {
    display: none;
}
body.skin-monobook #bodyContent > *:not(#mw-content-text) {
    display: none;
}

body.skin-monobook {
    background: #fff;
}
body.skin-monobook #content {
    background: #fff;
    margin: 0;
    border: 0;
}

/* Minerva (mobile) */
body.skin-minerva #mw-mf-page-center > *:not(#content) {
    display: none;
}
body.skin-minerva #content > *:not(#bodyContent) {
    display: none;
}

body.skin-minerva #mw-mf-page-center,
body.skin-minerva #content {
    background: #fff;
}
body.skin-minerva #bodyContent {
    max-width: none;
    margin: 0;
    padding: 1em;
    width: auto;
    background: #fff;
}

/* Timeless */
body.skin-timeless #mw-wrapper > *:not(#mw-content-container) {
    display: none;
}
body.skin-timeless #mw-content-block > *:not(#mw-content-wrapper) {
    display: none;
}
body.skin-timeless #content > *:not(#bodyContentOuter) {
    display: none;
}
body.skin-timeless #bodyContentOuter > *:not(#bodyContent) {
    display: none;
}

body.skin-timeless #mw-content-container {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
body.skin-timeless #mw-content-block {
    max-width: none;
    padding: 0;
}
body.skin-timeless #mw-content {
    border: 0;
    padding: 1em;
    background: #fff;
    
}