Difference between revisions of "MediaWiki:Common.css"

From Stoic Wiki
Jump to: navigation, search
 
(9 intermediate revisions by the same user not shown)
Line 17: Line 17:
 
}
 
}
  
 +
/* Foreground theme options
 
#page-content > div.row {
 
#page-content > div.row {
  max-width: 870px;
+
max-width: 870px;
 +
padding-bottom: 20px;
 
}
 
}
 +
 +
@media only screen and (min-width: 600px) {
 +
#page-content > div.row {
 +
padding: 20px;
 +
}
 +
}
 +
 +
body { background: #eee !important; }
 +
 +
#page-content > div.row {
 +
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
 +
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
 +
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
 +
background: #fcfcfc;
 +
}
 +
 +
#page-content {
 +
background: #eee;
 +
}
 +
 +
h2, h3, h4, h5, h6 {
 +
margin-top: 1em;
 +
margin-bottom: 0.8em;
 +
}
 +
h2#firstHeading {
 +
font-size: 2em;
 +
margin-top: 20px !important;
 +
}
 +
h2 { font-size: 1.6em; }
 +
*/

Latest revision as of 15:18, 16 October 2017

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

/* Remove [Edit] links next to each section */
.mw-editsection { display: none !important; }

/* Hide Discussion tabs on user pages */
.ns-2 #ca-talk { display: none !important; }

/* Quote template */

.quote-footer {
margin-bottom: 1.5em;
}

.mw-body { 
  max-width: 870px; 
}

/* Foreground theme options
#page-content > div.row {
	max-width: 870px;
	padding-bottom: 20px;
}

@media only screen and (min-width: 600px) {
#page-content > div.row {
	padding: 20px;
}
}

body { background: #eee !important; }

#page-content > div.row {
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	background: #fcfcfc;
}

#page-content {
	background: #eee;
}

h2, h3, h4, h5, h6 {
	margin-top: 1em;
	margin-bottom: 0.8em;
}
h2#firstHeading { 
	font-size: 2em; 
	margin-top: 20px !important;
}
h2 { font-size: 1.6em; }
*/