MediaWiki:Common.css: Difference between revisions

From ALEC Exposed
Jump to navigation Jump to search
tweaking css
testing css for pre tag
Line 19: Line 19:
}
}


.red a:link { color: #CC0000; } /* normal unvisited links */
#
.red a:link:visited { color: #CC0000; } /* visited links */
pre {
.red a:link:active { color: #CC0000; } /* active links */
#
.red a:link.new { color: #CC0000; } /* new links */
white-space: pre-wrap;       /* css-3 */
.red a:link.interwiki { color: #CC0000; } /* interwiki links */
#
.red a:link.external { color: #CC0000; } /* external links */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
.red a:link.stub { color: #CC0000; } /* hovered links */
#
white-space: -pre-wrap;     /* Opera 4-6 */
.red a:link {color: #CC0000;}
#
.red a:visited {color: #CC0000;}
white-space: -o-pre-wrap;   /* Opera 7 */
.red a:hover {color: #CC0000;}
#
.red a:active {color: #CC0000;}
word-wrap: break-word;       /* Internet Explorer 5.5+ */
#
}

Revision as of 21:30, 4 July 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)!important;
}

.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;
}

#
pre {
#
 white-space: pre-wrap;       /* css-3 */
#
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
#
 white-space: -pre-wrap;      /* Opera 4-6 */
#
 white-space: -o-pre-wrap;    /* Opera 7 */
#
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
#
}