Advertisement
Guest User

T-notfier widget

a guest
Mar 27th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. /* Hides Countdown */
  2. .tm-countdown {
  3. display: none !important;
  4. }
  5. /* Sets the height and width of the entire notification box */
  6. .tm-widget .notification-box{
  7. height: 450px;
  8. width: 720px;
  9. padding: 0px,0px,0px,0px;
  10. }
  11. /* Sets the height and width of the donation image/area */
  12. .tm-widget.donations .notification-box {
  13. background: url(IMAGE_DIRECT_DOWNLOAD_LINK) no-repeat;
  14. width: 720px;
  15. height: 450px;
  16. line-height: 32px !important; /* Make this 1-2px more than your Alert Font Size! */
  17. }
  18. /* Sets the height and width of the follow notification image/area /*
  19. .tm-widget.follows .notification-box {
  20. background: url(IMAGE_DIRECT_DOWNLOAD_LINK) no-repeat;
  21. width: 720px;
  22. height: 450px;
  23. line-height: 32px !important; /* Make this 1-2px more than your Alert Font Size! */
  24. }
  25. /* This sets the area in which the text is allowed to span for FOLLOWS, breaking into new lines automatically */
  26. .tm-widget.follows .notification-box span {
  27. width: 600px;
  28. height: 85px;
  29. padding:130px 0px 0px 100px;
  30. display: block;
  31. line-height: 32px !important; /* Make this 1-2px more than your Alert Font Size! */
  32. }
  33. /* This sets the area in which the text is allowed to span for DONATIONS, breaking into new lines automatically */
  34. .tm-widget.donations .notification-box span {
  35. width: 600px;
  36. height: 300px;
  37. padding:120px 0px 0px 100px;
  38. display: block;
  39. line-height: 32px !important; /* Make this 1-2px more than your Alert Font Size! */
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement