MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
JoshuaJSlone (talk | contribs) (Trying to figure out how to affect the header section by peeking into Vector files...) |
JoshuaJSlone (talk | contribs) (That did part of the trick...) |
||
Line 24: | Line 24: | ||
#mw-head-base { | #mw-head-base { | ||
background-color: red; | background-color: red; | ||
} | |||
#mw-head { | |||
background-color: green; | |||
} | |||
#mw-panel { | |||
background-color: blue; | |||
} | } |
Revision as of 16:13, 9 March 2014
/* CSS placed here will be applied to all skins */
h1 {
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
h2 {
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
h3 {
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
body {
background-color: #E7F0ED;
}
#mw-head-base {
background-color: red;
}
#mw-head {
background-color: green;
}
#mw-panel {
background-color: blue;
}