Jump to content

MediaWiki:Common.css: Difference between revisions

m
no edit summary
mNo edit summary
mNo edit summary
Line 2: Line 2:




/* Apply to the whole page wrapper */
/* Apply background to the whole page wrapper */
#mw-wrapper {
#mw-wrapper {
    background-color: #ffffff; /* base white */
    background-image: linear-gradient(90deg, #f5f5f5 1px, transparent 1px),
                      linear-gradient(#f5f5f5 1px, transparent 1px);
    background-size: 20px 20px; /* grid size */
}
/* Keep the content readable with a solid background */
#content {
     background-color: #ffffff;
     background-color: #ffffff;
     background-image: linear-gradient(90deg, #e0e0e0 1px, transparent 1px),
     border: 2px solid #007acc; /* accent border */
                      linear-gradient(#e0e0e0 1px, transparent 1px);
     padding: 20px;
     background-size: 20px 20px;
}
}