User:Dme/monobook.css: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 5: Line 5:
     color: #555;
     color: #555;
}
}
 
/* color dk gray is #555; brown is #7A4707  */
/* var normal color dk gray is #555; brown is #7A4707  */
 
 
/* link-within-var weight is non-bold  */
var a:link {
    font-weight: 400;
}
var a:visited {
    font-weight: 400;
}
var a:hover {
    font-weight: 400;
}
var a:active {
    font-weight: 400;
}
var.term {
var.term {
     text-transform: none;
     text-transform: none;
Line 15: Line 32:
     color: black;
     color: black;
}
}
 
var.product {
var.product {
     color: black;
     color: black;
Line 21: Line 38:
     font-weight: normal;
     font-weight: normal;
}
}
 
var.camel {
var.camel {
     text-transform: none;
     text-transform: none;
}
h3 {
  font-size: 125%;
}
}

Revision as of 21:00, 4 April 2012

var {
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    color: #555;
}
 
/* var normal color dk gray is #555; brown is #7A4707  */
 
/* link-within-var weight is non-bold  */
 
var a:link {
    font-weight: 400;
}
 
var a:visited {
    font-weight: 400;
}
 
var a:hover {
    font-weight: 400;
}
 
var a:active {
    font-weight: 400;
}
 
var.term {
    text-transform: none;
    font-style: italic;
    font-weight: normal;
    color: black;
}
 
var.product {
    color: black;
    font-style: italic;
    font-weight: normal;
}
 
var.camel {
    text-transform: none;
}
 
h3 {
   font-size: 125%;
}