MediaWiki:Common.css: Difference between revisions

From Epic Path
Jump to navigation Jump to search
No edit summary
No edit summary
Line 89: Line 89:
     width: 49%;
     width: 49%;
}
}
@media only screen and (max-width: 767px) {
@media only screen and (max-width: 768px) {
     /* Decouple the columns on narrow screens */
     /* Decouple the columns on narrow screens */
     .page-2column-left,
     .page-2column-left,
Line 107: Line 107:
     width: 49%;
     width: 49%;
}
}
@media only screen and (max-width: 1023px) {
@media only screen and (max-width: 768px) {
     /* Decouple the columns on narrow screens */
     /* Decouple the columns on narrow screens */
     .section-2column-left,
     .section-2column-left,

Revision as of 14:39, 28 April 2016

/* CSS placed here will be applied to all skins */

/* removes header on main page */
body.page-Epic_Path.action-view h1.firstHeading, body.page-Epic_Path.action-submit h1.firstHeading { display: none; }

/* removes bottom border of h2 on main page */
body.page-Epic_Path.action-view h2, body.page-Epic_Path.action-submit h2 { color: #584500; font-size: 1.5em; padding: 2px; padding-top: 30px; border-bottom-style: none; clear: both;}

/* removes redirected from main page message from main page */
.page-Epic_Path #contentSub { display: none }

h1 {
    color: #584500;
    font-size: 2em;
    padding: 2px;
}

h2 {
    color: #584500;
    font-size: 1.5em;
    padding: 2px;
    padding-top: 30px;
    border-bottom-style: solid;
    border-bottom-color: Black;
}

h3 {
    color: #584500;
    font-size: 1.25em;
    padding: 2px;
    padding-top: 30px;
}


h4 {
    color: #584500;
    padding: 2px;
    padding-top: 30px;
}

h5 {
    color: #584500;
    padding: 2px;
    padding-top: 30px;
}


/* Main content panel */
#content {
     background-color: #F2ECCE; 
}

/* Top of screen */
#mw-head-base {
     background-color: #FFFBE6; 
}

/* Logo Space */
#p-logo {
     background-color: #FFFBE6; 
}

/* Sidebar */
#mw-panel {
     background-color: #FFFBE6; 
}

/* Bottom of screen */
#footer {
     background-color: #FFFBE6; 
}

/* Categories pane */
#catlinks {
     background-color: #FFFBE6; 
}
/* Everywhere else */
body { 
     background-color: #FFFBE6; 
}

/* Mobile-Friendly Two Column Display (Full Page)*/
.page-2column-left {
    float: left;
    width: 50%;
}
.page-2column-right {
    float: right;
    width: 49%;
}
@media only screen and (max-width: 768px) {
    /* Decouple the columns on narrow screens */
    .page-2column-left,
    .page-2column-right {
        float: inherit;
        width: inherit;
    }
}

/* Mobile-Friendly Two Column Display (Section Lists)*/
.section-2column-left {
    float: left;
    width: 50%;
}
.section-2column-right {
    float: right;
    width: 49%;
}
@media only screen and (max-width: 768px) {
    /* Decouple the columns on narrow screens */
    .section-2column-left,
    .section-2column-right {
        float: inherit;
        width: inherit;
    }
}


/* Mobile-Friendly Three Column Display */
.portal-3column-left {
    float: left;
    width: 33%;
}
.portal-3column-middle {
    float: center;
    width: 33%;
}
.portal-3column-right {
    float: right;
    width: 33%;
}
@media only screen and (max-width: 768px) {
    /* Decouple the columns on narrow screens */
    .portal-3column-left,
    .portal-3column-middle,
    .portal-3column-right {
        float: inherit;
        width: inherit;
    }
}