Advertisement
liamdalion

Untitled

Oct 21st, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. .invert .channel-emote {
  2. -webkit-filter: invert(100%);
  3. -moz-filter: invert(100%);
  4. -o-filter: invert(100%);
  5. -ms-filter: invert(100%);
  6. filter: invert(100%);
  7. }
  8.  
  9. .sepia .channel-emote {
  10. -webkit-filter: sepia(100%);
  11. -moz-filter: sepia(100%);
  12. -o-filter: sepia(100%);
  13. -ms-filter: sepia(100%);
  14. filter: sepia(100%);
  15. }
  16.  
  17. .contrast .channel-emote {
  18. -webkit-filter: contrast(300%);
  19. -moz-filter: contrast(300%);
  20. -o-filter: contrast(300%);
  21. -ms-filter: contrast(300%);
  22. filter: contrast(300%);
  23. }
  24.  
  25. .gray .channel-emote {
  26. -webkit-filter: grayscale(100%);
  27. -moz-filter: grayscale(100%);
  28. -o-filter: grayscale(100%);
  29. -ms-filter: grayscale(100%);
  30. filter: grayscale(100%);
  31. }
  32.  
  33. .vvblur .channel-emote {
  34. -webkit-filter: blur(10px);
  35. -moz-filter: blur(10px);
  36. -o-filter: blur(10px);
  37. -ms-filter: blur(10px);
  38. filter: blur(10px);
  39. }
  40.  
  41. .vblur .channel-emote {
  42. -webkit-filter: blur(5px);
  43. -moz-filter: blur(5px);
  44. -o-filter: blur(5px);
  45. -ms-filter: blur(5px);
  46. filter: blur(5px);
  47. }
  48.  
  49. .blur .channel-emote {
  50. -webkit-filter: blur(2.5px);
  51. -moz-filter: blur(2.5px);
  52. -o-filter: blur(2.5px);
  53. -ms-filter: blur(2.5px);
  54. filter: blur(2.5px);
  55. }
  56.  
  57. video.channel-emote {
  58. vertical-align: middle;
  59. }
  60.  
  61. .award_ring_amantagram_diamond_star:before {
  62. content: url(http://i.imgur.com/4Qs66j3.png);
  63. }
  64.  
  65. .award_diamond_star:before {
  66. content: url(http://i.imgur.com/crvRvdy.png);
  67. }
  68.  
  69. .award_ring_blaazellie_diamond_star:before {
  70. content: url(http://i.imgur.com/ZfqFaKA.png);
  71. }
  72.  
  73. .award_ring_djupzseven:before {
  74. content: url(http://i.imgur.com/j0q0XqB.png);
  75. }
  76.  
  77. .award_ring_djupzseven_gold_star:before {
  78. content: url(http://i.imgur.com/aayoytm.png);
  79. }
  80.  
  81. .pm-panel .anttext .channel-emote {
  82. height: 25px;
  83. width: auto;
  84. }
  85.  
  86. .mirrortwo .channel-emote {
  87. -moz-transform: scale(-1, 1);
  88. -webkit-transform: scale(-1, 1);
  89. -o-transform: scale(-1, 1);
  90. -ms-transform: scale(-1, 1);
  91. transform: scale(-1, 1);
  92. }
  93.  
  94. .hspin{
  95. -moz-animation: spinHorizontal 2s infinite linear;
  96. -o-animation: spinHorizontal 2s infinite linear;
  97. -webkit-animation: spinHorizontal 2s infinite linear;
  98. animation: spinHorizontal 2s infinite linear;
  99. }
  100. .hfspin{
  101. -moz-animation: spinHorizontal 0.2s infinite linear;
  102. -o-animation: spinHorizontal 0.2s infinite linear;
  103. -webkit-animation: spinHorizontal 0.2s infinite linear;
  104. animation: spinHorizontal 0.2s infinite linear;
  105. }
  106.  
  107. @-moz-keyframes spinHorizontal {
  108. 0% {
  109. -moz-transform: rotateY(0deg);
  110. }
  111.  
  112. 100% {
  113. -moz-transform: rotateY(360deg);
  114. }
  115. }
  116.  
  117. @keyframes spinHorizontal {
  118. 0% {
  119. transform: rotateY(0deg);
  120. }
  121. 100% {
  122. transform: rotateY(360deg);
  123. }
  124. }
  125.  
  126.  
  127. @-ms-keyframes spinHorizontal {
  128. 0% {
  129. -ms-transform: rotateY(0deg);
  130. }
  131. 100% {
  132. -ms-transform: rotateY(360deg);
  133. }
  134. }
  135.  
  136. @-o-keyframes spinHorizontal {
  137. 0% {
  138. -o-transform: rotateY(0deg);
  139. }
  140. 100% {
  141. -o-transform: rotateY(360deg);
  142. }
  143. }
  144.  
  145. @-webkit-keyframes spinHorizontal {
  146. 0% {
  147. -webkit-transform: rotateY(0deg);
  148. }
  149. 100% {
  150. -webkit-transform: rotateY(360deg);
  151. }
  152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement