MediaWiki:Monobook.css: Difference between revisions

From ZaberWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 47: Line 47:
     }
     }
   
   
  /* body is everything except the login bar and tab bar */
  /* body is everything except the login bar and tab bar  
     body {
     body {
     margin: 0;    // margin is space between element border and other elements
     margin: 0;    // margin is space between element border and other elements
     padding: 0 5px 0 5px; // padding is space between element border and element contents (top, right, bottom, left)
     padding: 0 5px 0 5px; // padding is space between element border and element contents (top, right, bottom, left)
    }
*/
    body {
    font: x-small sans-serif;
    background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
    color: black;
    margin: 0;
    padding: 0;
    }
    #globalWrapper {
    font-size: 127%;
    width: 100%;
    margin: 0;
    padding: 5px;
    }
    .visualClear {
    clear: both;
     }
     }

Revision as of 00:59, 2 March 2008

/* CSS placed here will affect users of the Monobook skin, overriding any CSS in main.css */
 
 /* main content window location*/
    #column-content {
        width: 100%;
        float: right;
        margin: 0 0 0.6em 10em;           /* top right bottom left; */
        padding: 0; // 0 0 0.6em;
    }
 
 /* sidebar location */
    #column-one {
    padding-top: 160px;
    }
 
 /*
    #column-one {
    position: absolute;
    top: 0px; left: 0px;
    }
 */
 
 /* sidebar contents */
    #bodyContent .portlet {
    border: none;
    margin: 0 0 .5em;
    padding: 0;
    float: none;
    width: 11.6em;
    overflow: hidden;
    }
 
 /* footer 
    #footer {
    background-color: white;
    border-top: 1px solid #fabd23;
    border-bottom: 1px solid #fabd23;
    margin: .6em 0 1em 0;
    padding: .4em 0 1.2em 0;
    text-align: center;
    font-size: 90%;
    }
 */
 
    #footer {
    display: none;
    }
 
 /* body is everything except the login bar and tab bar 
    body {
    margin: 0;    // margin is space between element border and other elements
    padding: 0 5px 0 5px; // padding is space between element border and element contents (top, right, bottom, left)
    }
*/
    body {
    font: x-small sans-serif;
    background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
    color: black;
    margin: 0;
    padding: 0;
    }
 
    #globalWrapper {
    font-size: 127%;
    width: 100%;
    margin: 0;
    padding: 5px;
    }
    .visualClear {
    clear: both;
    }