/* Time-stamp: "2007-02-10 19:13:04 AKST" -*-coding: latin-1;-*-             m */
// ==UserScript==
// @name          SomethingAwfulBlackener
// @description   makes Something Awful pages blacker and with simpler design
// @include       http://*.somethingawful.com/*
// @version       0.0.3
// @namespace     http://interglacial.com/~sburke/pub/
// ==/UserScript==
/*  -~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
    !!
    !! This is a Greasemonkey user script.
    !! See http://greasemonkey.mozdev.org/ for info on using such things.
    !!
    -~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
*/


if (
 document.documentElement.tagName == "HTML"
 && document.contentType == "text/html"
 && document.body    // Basic sanity
) {

GM_addStyle( [

  '#sidebar, #site_directory, #nav_network, #footer, #contact, #logo, #topnav {',
  '  display: none !important; float: none !important; ',
  '}',

  'body { width: 60%; margin-left: 18%; }', 


  "* {",
  '  font-size: inherit !important;      ',
  '  background-color: black !important; ',
  '  color:            white !important; ',
  '  background-image:  none !important; ',
  '}',
  "div.content_area { width: auto !important; }",
  "#comfortable_outer_jacket { width: auto !important; padding: 0 !important;}",
  

  'a { color: white; }',
  'a:link, .linkish { color: #8080ff !important; text-decoration: underline; }',
  'a:visited { color: #e8a0ff !important; text-decoration: underline !important;}',
  'a:active  { color: #ffa0a0 !important; }',
  

''].join("\n") ); }

//~~~ More fun at http://interglacial.com/hoj/ for you JavaScript goons! ~~~
//End
