User:Dme/monobook.css: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 8: Line 8:
/* var normal color dk gray is #555; brown is #7A4707; dk red is #601010  */
/* var normal color dk gray is #555; brown is #7A4707; dk red is #601010  */
   
   
/* link-within-var weight is non-bold */
/* link-within-var  */
   
   
var a:link {
var a:link {
     color: #6666FF;
     color: #5353EF;
}
}
   
   
var a:visited {
var a:visited {
     color: #6666FF;
     color: #5353EF;
}
}
   
   
Line 37: Line 37:
var.camel {
var.camel {
     text-transform: none;
     text-transform: none;
}
h3 {
  font-size: 125%;  /* Otherwise h3 lines are too tall */
}
}

Revision as of 21:17, 9 April 2012

var {
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    color: #555;
}
 
/* var normal color dk gray is #555; brown is #7A4707; dk red is #601010  */
 
/* link-within-var  */
 
var a:link {
    color: #5353EF;
}
 
var a:visited {
    color: #5353EF;
}
 
var.term {
    text-transform: none;
    font-style: italic;
    font-weight: normal;
    color: black;
}
 
var.product {
    color: black;
    font-style: italic;
    font-weight: normal;
}
 
var.product a {
    color: #002bb8;   /* Otherwise product links are very faint */
}
 
var.camel {
    text-transform: none;
}