Fix SOBS Notices Font Sizing

For some reason, some notices are currently set to "font-size: 200%"

  1. // ==UserScript==
  2. // @name Fix SOBS Notices Font Sizing
  3. // @namespace http://kwiius.com/
  4. // @description For some reason, some notices are currently set to "font-size: 200%"
  5. // @include http*://sobs.co.nz/waz/studentnotices.php?*
  6. // @version 2
  7. // @grant GM_addStyle
  8. // ==/UserScript==
  9.  
  10. GM_addStyle (" body > div#main > div { font-size: 100% !important; }");
  11. GM_addStyle ("div.keeptogether { width: auto !important; max-width: none !important; }");