Skip to content

Instantly share code, notes, and snippets.

@eric-wood
Created October 22, 2012 16:27
Show Gist options
  • Save eric-wood/3932372 to your computer and use it in GitHub Desktop.
Save eric-wood/3932372 to your computer and use it in GitHub Desktop.
Userstyle for Gradiance (that silly website my compilers class uses for homework)
/*
* Userstyle for Gradiance (www.newgradiance.com)
*
* Goals:
* - use a sans-serif font (the author failed at CSS and screwed up font-family)
* - make the background color easier on the eyes (white and grey vs. blue and other crap)
* - remove annoying blue colors for the sake of consistency
*/
body {
font-family: sans-serif;
}
.marginbackground, .bodybackground, .lightbackgroundwithtinyfont {
background: #EEE;
}
.lightbackgroundwithnormalfont {
background: white;
}
.lightbackgroundwithnormalfont font {
color: black !important;
}
.darkbackgroundwithhugefont, .darkbackgroundwithnormalfont, .normalfont, .bigfont, .lightbackgroundwithtinyfont, .smallfont {
font-family: sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment