The title on this post is somewhat misleading. The default stylings of AnimeIowa‘s forums make my eyes blee, especially after some of the forum members have taken it upon themselves to give their words extra features ugliness. E.g. putting bright, yellow text on top of a dark blue background. Fortunately, I do 99.9999% of my web browsing using Firefox and there exists an extension for Firefox that will override any given site’s default CSS with the CSS you specify. This means people can do things like take the CSS which makes CoffeeBear.net so lovely and with a few tweaks turn this…
Into this…
And all it took was the Stylish extension and this little bit of CSS:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("animeiowa.com") {
html {
color: #0F0F0F !important;
}
body {
color: #0F0F0F !important;
background-color: #FFF !important;
}
a:link {color: #D57100 !important;
text-decoration:none !important;
}
a:visited {color: #459045 !important;
text-decoration:none !important;
border-bottom:none !important;
}
a:hover, a:active {
color:#6F2314 !important;
text-decoration:underline !important;
}
table tr td {
background-color: #F1EFFF !important;
color: #0F0F0F !important;
}
font {
color: #000 !important;
}
font .quote {
background-color: #FEFFBF !important;
}
font .catbg {
background-color: #F1EFFF !important;
}
}
Don’t believe this makes that much difference? Then try it out yourself, your bleeding eyes will thank you.