Difference between revisions of "MediaWiki:Common.css"

From Limestone
Jump to: navigation, search
m (removed navFrame from css)
m (Changed color of visited links to dark blue)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
  
/* content template */
+
/* content template for a box with a max width */
 
div.content1 {
 
div.content1 {
 
     max-width:1000px;
 
     max-width:1000px;
 
     margin-left:0px;
 
     margin-left:0px;
 +
}
 +
 +
/* From wikipedia css */
 +
/* Highlight linked elements (such as clicked references) in blue */
 +
body.action-info :target,
 +
.citation:target {
 +
    background-color: #DEF;  /* Fallback */
 +
    background-color: rgba(0, 127, 255, 0.133);
 
}
 
}

Revision as of 11:35, 3 February 2017

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

/* content template for a box with a max width */
div.content1 {
    max-width:1000px;
    margin-left:0px;
}

/* From wikipedia css */
/* Highlight linked elements (such as clicked references) in blue */
body.action-info :target,
.citation:target {
    background-color: #DEF;  /* Fallback */
    background-color: rgba(0, 127, 255, 0.133);
}