MediaWiki:Common.css: Difference between revisions

From JJSWiki
Jump to navigation Jump to search
(That did part of the trick...)
(Focus on the one I want, try gradient...)
Line 20: Line 20:
body {
body {
     background-color: #E7F0ED;
     background-color: #E7F0ED;
}
#mw-head-base {
background-color: red;
}
}


#mw-head {
#mw-head {
background-color: green;
background-color: linear-gradient(red, blue);
}
 
#mw-panel {
background-color: blue;
}
}

Revision as of 17:16, 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 {
	background-color: linear-gradient(red, blue);
}