TINYpulse transparent

Makes the TINYpulse cheer box transparent

  1. // ==UserScript==
  2. // @name TINYpulse transparent
  3. // @namespace http://userscripts.org/users/20715
  4. // @description Makes the TINYpulse cheer box transparent
  5. // @include https://www.tinypulse.com/api/cheers*
  6. // @version 1.0
  7. // ==/UserScript==
  8.  
  9. GM_addStyle('body { background: none transparent; }');
  10. GM_addStyle('#mini-header { display: none; }');
  11. GM_addStyle('#cheers-wall { font-size: 15px; }');
  12. GM_addStyle('#cheers-wall .recipient, #cheers-wall .praise { margin-bottom: 15px; }');
  13. GM_addStyle('#cheers-wall .recipient img.gravatar { width: 60px; height: 60px; }');
  14. GM_addStyle('#cheers-wall .recipient .info { margin-left: 75px; }');
  15. GM_addStyle('#cheers-wall .recipient { line-height: 3px; }');
  16. GM_addStyle('.container .well { background-color: rgba(255, 255, 255, 0.6) !important; }');