Advertisement
Guest User

0ch Theme.

a guest
Dec 28th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. -webkit-transform: rotate(-180deg);
  2. transform: rotate(-180deg);}
  3. *{border-radius:10px; color:red; font-family:"Comic Sans MS", cursive, sans-serif;
  4. -webkit-filter:hue-rotate(90deg);}
  5. .post-image{-ms-transform: rotate(7deg);
  6. -webkit-transform: rotate(7deg);
  7. transform: rotate(7deg);
  8. }
  9. *:hover{ -webkit-animation-name: 3d;-webkit-animation-duration: 5s;
  10. -webkit-animation-timing-function: linear;
  11. -webkit-animation-delay: 2s;
  12. -webkit-animation-iteration-count: infinite;
  13. -webkit-animation-direction: alternate;
  14. -webkit-animation-play-state: running;
  15. animation-name: 3d;animation-name: myfirst;
  16. animation-duration: 5s;
  17. animation-timing-function: linear;
  18. animation-delay: 2s;
  19. animation-iteration-count: infinite;
  20. animation-direction: alternate;
  21. animation-play-state: running;
  22. -ms-transform: rotate(180deg);
  23. -webkit-transform: rotate(180deg);
  24. transform: rotate(180deg);
  25. }
  26. img {-webkit-filter:contrast(4); filter:contrast(4);}
  27.  
  28.  
  29.  
  30. .heading{ position:relative; /* Chrome, Safari, Opera */
  31. -webkit-animation-name: myfirst;
  32. -webkit-animation-duration: 5s;
  33. -webkit-animation-timing-function: linear;
  34. -webkit-animation-delay: 2s;
  35. -webkit-animation-iteration-count: infinite;
  36. -webkit-animation-direction: alternate;
  37. -webkit-animation-play-state: running;
  38. /* Standard syntax */
  39. animation-name: myfirst;
  40. animation-duration: 5s;
  41. animation-timing-function: linear;
  42. animation-delay: 2s;
  43. animation-iteration-count: infinite;
  44. animation-direction: alternate;
  45. animation-play-state: running;}
  46.  
  47. /* Chrome, Safari, Opera */
  48. @-webkit-keyframes myfirst {
  49. 0% {background:red; left:0px; top:0px;}
  50. 25% {background:yellow; left:200px; top:0px;}
  51. 50% {background:blue; left:200px; top:200px;}
  52. 75% {background:green; left:0px; top:200px;}
  53. 100% {background:red; left:0px; top:0px;}
  54. }
  55.  
  56. /* Standard syntax */
  57. @keyframes myfirst {
  58. 0% {background:red; left:0px; top:0px;}
  59. 25% {background:yellow; left:200px; top:0px;}
  60. 50% {background:blue; left:200px; top:200px;}
  61. 75% {background:green; left:0px; top:200px;}
  62. 100% {background:red; left:0px; top:0px;}
  63. }
  64. .flag flag-nl{height:50px; width:50px;}
  65. .styles{position:fixed; top:-10000;}
  66.  
  67. *{cursor:url(i.imgur.com/8XMo8oe.png),progress!important;}
  68.  
  69. .post reply{!important; direction: rtl;
  70. unicode-bidi: bidi-override;}
  71.  
  72. @keyframes 3d {
  73. 0% {transform: rotateX(0deg);}
  74. 50% {transform: rotateX(180deg);}
  75. 100% {transform: rotateX(360deg);}
  76. }
  77.  
  78. @-webkit-keyframes 3d {
  79. 0% {-webkit-transform: rotateX(0deg);}
  80. 50% {-webkit-transform: rotateX(180deg);}
  81. 100% {-webkit-transform: rotateX(360deg);}
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement