Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. @import url("https://fonts.googleapis.com/css?family=$font_family");
  2.  
  3. html,
  4. .widget-EventList li > div {
  5. -webkit-transform: rotateX($rotate_x) rotateY($rotate_y);
  6. transform: rotateX($rotate_x) rotateY($rotate_y);
  7. }
  8.  
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. list-style: none;
  13. box-sizing: border-box;
  14. font-family: "$font_family";
  15. letter-spacing: 1px;
  16. }
  17.  
  18. .widget-EventList {
  19. position: absolute;
  20. width: 100%;
  21. top: 0;
  22. left: 0;
  23. }
  24.  
  25. .widget-EventList li {
  26. width: 12.5%;
  27. float: left;
  28. padding: 0 5 0 5;
  29. border: 1px solid #555555;
  30. -webkit-animation: grow .4s ease-in 1 forwards;
  31. animation: grow .4s ease-in 1 forwards;
  32. }
  33.  
  34.  
  35. li div {
  36. /*padding: 0 50px 0 10px;*/
  37. /*width: 20%;*/
  38. /*line-height: 50px;*/
  39. /*color: $text_color;*/
  40. -webkit-animation: info .5s ease-in 1 .6s forwards;
  41. animation: info .5s ease-in 1 .6s forwards;
  42. /*background: #00FF00;*/
  43. }
  44.  
  45. div.background {
  46. overflow: hidden;
  47. opacity: 0;
  48. padding: 0;
  49. height: 25;
  50. width: 100%;
  51. /*background-size: 42px 42px !important;
  52. background-position: 4px 3px !important;*/
  53. /*background: #FF0000;*/
  54. /*float: left;*/
  55. background: #FF00FF
  56. -webkit-animation: icon .5s ease-in 1 .4s forwards;
  57. animation: icon .5s ease-in 1 .4s forwards;
  58. /* icon */
  59. }
  60.  
  61. .donation {
  62. background: #00AAFF;
  63. }
  64.  
  65. .twitch-follow {
  66. background: #50DDAA;
  67. }
  68.  
  69. .twitch-subscription {
  70. background: #DD5050;
  71. }
  72.  
  73. .twitch-resubscription {
  74. background: #DD5050;
  75. }
  76.  
  77. .twitch-bit {
  78. background: #DDDD50;
  79. }
  80.  
  81. .tag {
  82. float: right;
  83. /*position: relative;*/
  84. /*float: right;*/
  85. /*top: 3px;
  86. right: 5px;*/
  87. /*font-size: 12px;
  88. line-height: 12px;*/
  89. /*color: $text_color;*/
  90. color: #000000;
  91. font-family: "$font_family";
  92. }
  93.  
  94. @-webkit-keyframes grow {
  95. from {
  96. height: 0px;
  97. }
  98. to {
  99. height: 25px;
  100. }
  101. }
  102.  
  103. @keyframes grow {
  104. from {
  105. height: 0px;
  106. }
  107. to {
  108. height: 25px;
  109. }
  110. }
  111.  
  112. @-webkit-keyframes icon {
  113. 0% {
  114. left: -20px;
  115. opacity: 0;
  116. }
  117. 40% {
  118. left: 0px;
  119. opacity: 1;
  120. }
  121. 60% {
  122. left: 2px;
  123. opacity: 1;
  124. }
  125. 100% {
  126. left: 0px;
  127. opacity: 1;
  128. }
  129. }
  130.  
  131. @keyframes icon {
  132. 0% {
  133. left: -20px;
  134. opacity: 0;
  135. }
  136. 40% {
  137. left: 0px;
  138. opacity: 1;
  139. }
  140. 60% {
  141. left: 2px;
  142. opacity: 1;
  143. }
  144. 100% {
  145. left: 0px;
  146. opacity: 1;
  147. }
  148. }
  149.  
  150. @-webkit-keyframes info {
  151. 0% {
  152. left: 2px;
  153. opacity: 0;
  154. text-indent: 0px;
  155. }
  156. 40% {
  157. left: 4px;
  158. opacity: 1;
  159. text-indent: 0;
  160. }
  161. 60% {
  162. left: 0px;
  163. opacity: 1;
  164. text-indent: 10px;
  165. }
  166. 100% {
  167. left: 0;
  168. opacity: 1;
  169. text-indent: 0px;
  170. }
  171. }
  172.  
  173. @keyframes info {
  174. 0% {
  175. left: 2px;
  176. opacity: 0;
  177. text-indent: 0px;
  178. }
  179. 40% {
  180. left: 4px;
  181. opacity: 1;
  182. text-indent: 0;
  183. }
  184. 60% {
  185. left: 0px;
  186. opacity: 1;
  187. text-indent: 10px;
  188. }
  189. 100% {
  190. left: 0;
  191. opacity: 1;
  192. text-indent: 0px;
  193. }
  194. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement