Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1.  
  2. #donor-notification {
  3. display: none;
  4. position: absolute;
  5. top: 0px;
  6. left: 0px;
  7. width: 800px;
  8. height: 365px;
  9. background-repeat: no-repeat;
  10. background-image: url("http://i.imgur.com/HElejA9.png") !important;
  11. animation-name: tada;
  12. -webkit-animation-name: example;
  13. -webkit-animation-duration: 4s;
  14. animation-duration: 4s;
  15. }
  16.  
  17. #donor-notification .date {
  18. margin-right: 40px;
  19. padding-top: 65px;
  20. text-align: right;
  21. line-height: 20px;
  22. vertical-align: top;
  23. font-size: 20px;
  24. font-family: Algerian;
  25. text-shadow: 2px 2px 1px #000;
  26. color: white;
  27. }
  28.  
  29. #donor-notification .streamname {
  30. visibility: hidden;
  31. margin-left: 100px;
  32. padding-top: 28px;
  33. text-align: left;
  34. line-height: 26px;
  35. vertical-align: top;
  36. font-size: 24px;
  37. font-family: Algerian;
  38. text-shadow: 2px 2px 1px #FFF;
  39. color: black;
  40. }
  41.  
  42. #donor-notification .message {
  43. margin-left: 50px;
  44. float: left;
  45. padding-top: 9px;
  46. width: 70%;
  47. line-height: 40px;
  48. text-align: left;
  49. vertical-align: top;
  50. font-size: 20px;
  51. font-family: Verdana;
  52. color: white;
  53. }
  54.  
  55. #donor-notification .amount {
  56. float: right;
  57. width: 21%;
  58. padding-top: 17px;
  59. text-align: left;
  60. line-height: 20px;
  61. vertical-align: top;
  62. font-size: 40px;
  63. font-family: Verdana;
  64. color: white;
  65. }
  66.  
  67. #donor-notification .donor {
  68. margin-left: 320px;
  69. padding-top: 105px;
  70. text-align: left;
  71. line-height: 30px;
  72. vertical-align: middle;
  73. font-size: 30px;
  74. font-family: Comic Sans MS;
  75. text-shadow: 2px 2px 1px #000;
  76. color: white;
  77. }
  78.  
  79. @-webkit-keyframes example {
  80. 0% {
  81. transform: scale3d(1, 1, 1);
  82. }
  83.  
  84. 10%, 20% {
  85. transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  86. }
  87.  
  88. 30%, 50%, 70%, 90% {
  89. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  90. }
  91.  
  92. 40%, 60%, 80% {
  93. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  94. }
  95.  
  96. 100% {
  97. transform: scale3d(1, 1, 1);
  98. }
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement