MediaWiki:Common.css: Difference between revisions

From ALEC Exposed
Jump to navigation Jump to search
css for red hyperlinks
css for red hyperlinks
Line 19: Line 19:
}
}


.red a, .red:hover, .red:link, .red:active, .red:visited {
.red a:link { color: #CC0000; } /* normal unvisited links */
  color:#FF0000;
.red a:link:visited { color: #CC0000; } /* visited links */
}
.red a:link:active { color: #CC0000; } /* active links */
.red a:link.new { color: #CC0000; } /* new links */
.red a:link.interwiki { color: #CC0000; } /* interwiki links */
.red a:link.external { color: #CC0000; } /* external links */
.red a:link.stub { color: #CC0000; } /* hovered links */
.red a:link {color: #CC0000;}
.red a:visited {color: #CC0000;}
.red a:hover {color: #CC0000;}
.red a:active {color: #CC0000;}

Revision as of 20:58, 24 June 2011

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

.red-check ul {
  list-style-image: url(http://www.alecexposed.org/w/images/e/ec/Red-check.png);
}

.more-hot-bills {
  background-image: url(http://www.alecexposed.org/w/images/0/0c/Big-red-check-trans.png);
  background-repeat: no-repeat;
  background-position: center;
}

.twtr-widget {
  text-align: center;
}
.twtr-doc {
  text-align: left;
  margin: auto;
}

.red a:link { color: #CC0000; } /* normal unvisited links */
.red a:link:visited { color: #CC0000; } /* visited links */
.red a:link:active { color: #CC0000; } /* active links */
.red a:link.new { color: #CC0000; } /* new links */
.red a:link.interwiki { color: #CC0000; } /* interwiki links */
.red a:link.external { color: #CC0000; } /* external links */
.red a:link.stub { color: #CC0000; } /* hovered links */
 
.red a:link {color: #CC0000;}
.red a:visited {color: #CC0000;}
.red a:hover {color: #CC0000;}
.red a:active {color: #CC0000;}