by xenopeek on Sat Nov 19, 2011 1:52 pm
Assuming you are using the Firefox browser. There are various add-ons to Firefox that let you customize the style of a website, for example making the code block have white on black text. I don't have any experience with those however, so somebody else will have to chirp in on that. But you can also do this easily by creating a file of user content. To start, open a terminal and run the following commands (I'm not using the code block so you can read it better):
cd ~/.mozilla/firefox/*.default
mkdir chrome
cd chrome
gedit userContent.css
After you have run these four commands, you should have gedit text editor open. Copy the following six lines into it
@-moz-document domain(linuxmint.com) {
code {
background-color: black !important;
color: white !important;
}
}
Save and close the file. Restart Firefox, and any CODE blocks on the linuxmint.com website are now white text on a black background. You can change that to other colors as desired, and you can add other CSS markup, for example to change the font-size or the font-weight.

Linux Mint 14 Nadia / 64-bit / Cinnamon