MediaWiki:Common.css: Difference between revisions

From SEHK Wiki
Created page with "CSS placed here will be applied to all skins: h1 { color: red; }"
 
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
h1 {
 
  color: red;
#mw-content-container {
  background-image: none;
  background-color: #f2fffd;
}
 
.color-left { background: #14866d }
.color-middle { background: #14866d }
.color-right { background: #14866d }
 
.mw-body h3 {
  color: black;
  font-size: 1.5em;
}
 
body {
  font-size: 1em;
}
}

Latest revision as of 03:55, 9 October 2020

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

#mw-content-container { 
   background-image: none; 
   background-color: #f2fffd;
}

.color-left { background: #14866d }
.color-middle { background: #14866d }
.color-right { background: #14866d }

.mw-body h3 {
   color: black;
   font-size: 1.5em;
}

body {
   font-size: 1em;
}