Advertisement
d3g1d5

koro dance

Jun 4th, 2021
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. html {
  2. display: flex;
  3. height: 100vh;
  4. background-color: hsla(200, 40%, 30%, .4);
  5. background-image: url('https://78.media.tumblr.com/cae86e76225a25b17332dfc9cf8b1121/tumblr_p7n8kqHMuD1uy4lhuo1_540.png'), url('https://78.media.tumblr.com/66445d34fe560351d474af69ef3f2fb0/tumblr_p7n908E1Jb1uy4lhuo1_1280.png'), url('https://78.media.tumblr.com/8cd0a12b7d9d5ba2c7d26f42c25de99f/tumblr_p7n8kqHMuD1uy4lhuo2_1280.png'), url('https://78.media.tumblr.com/5ecb41b654f4e8878f59445b948ede50/tumblr_p7n8on19cV1uy4lhuo1_1280.png'), url('https://78.media.tumblr.com/28bd9a2522fbf8981d680317ccbf4282/tumblr_p7n8kqHMuD1uy4lhuo3_1280.png');
  6. background-repeat: repeat-x;
  7. background-position: 0 20%, 0 100%, 0 50%, 0 100%, 0 0;
  8. background-size: 2500px, 800px, 500px 200px, 1000px, 400px 260px;
  9. animation: 50s kintil infinite linear;
  10. overflow: hidden;
  11. justify-content: center;
  12. align-items: center;
  13. flex-direction: column;
  14. }
  15.  
  16. body::before,
  17. body::after {
  18. font-weight: bold;
  19. font-family: 'SF Mono', 'Courier New', Courier, monospace;
  20. font-size: 42px;
  21. color: #ff4473;
  22. }
  23.  
  24. head {
  25. display: block;
  26. background-image: url(https://i.makeagif.com/media/7-09-2020/Unbav7.gif);
  27. height: 25rem;
  28. width: 40rem;
  29. background-repeat: no-repeat;
  30. background-size: cover;
  31. border: 5px solid #fff;
  32. border-radius: 10px;
  33. border-style: inset;
  34. }
  35.  
  36. body::before {
  37. display: inline-block;
  38. padding-top: 3rem;
  39. content: "Yubi Yubi Yubi ~";
  40. animation: pentil 1.5s ease-in-out infinite;
  41. }
  42.  
  43. @keyframes kintil {
  44. 100% {
  45. background-position: -5000px 20%, -800px 95%, 500px 50%, 1000px 100%, 400px 0;
  46. }
  47. }
  48.  
  49. @keyframes pentil {
  50. 0% {
  51. transform: translateY(0);
  52. text-shadow: 0 0 0 #0c2ffb, 0 0 0 #2cfcfd, 0 0 0 #fb203b, 0 0 0 #fefc4b;
  53. }
  54. 20% {
  55. transform: translateY(-1em);
  56. text-shadow: 0 0.125em 0 #0c2ffb, 0 0.25em 0 #2cfcfd, 0 -0.125em 0 #fb203b, 0 -0.25em 0 #fefc4b;
  57. }
  58. 40% {
  59. transform: translateY(0.5em);
  60. text-shadow: 0 -0.0625em 0 #0c2ffb, 0 -0.125em 0 #2cfcfd, 0 0.0625em 0 #fb203b, 0 0.125em 0 #fefc4b;
  61. }
  62. 60% {
  63. transform: translateY(-0.25em);
  64. text-shadow: 0 0.03125em 0 #0c2ffb, 0 0.0625em 0 #2cfcfd, 0 -0.03125em 0 #fb203b, 0 -0.0625em 0 #fefc4b;
  65. }
  66. 80% {
  67. transform: translateY(0);
  68. text-shadow: 0 0 0 #0c2ffb, 0 0 0 #2cfcfd, 0 0 0 #fb203b, 0 0 0 #fefc4b;
  69. }
  70. }
  71.  
  72. @media (prefers-reduced-motion: reduce) {
  73. * {
  74. animation: none !important;
  75. transition: none !important;
  76. }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement