CornyGoose

Usagi CSS

Aug 9th, 2021 (edited)
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. body {
  2. display: block;
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. bottom: 0;
  7. right: 0;
  8. width: 100%;
  9. height: 100%;
  10. border: 0;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #6046FF;
  14. background-size: 30%;
  15. background-position: center;
  16. background-repeat: repeat;
  17. z-index: 0;
  18. cursor: url(https://i.imgur.com/2inIpFX.png), default;
  19. }
  20.  
  21. .picture {
  22. background-image: url(https://i.imgur.com/hptxLUC.png);
  23. background-size: 65vw;
  24. background-repeat: no-repeat;
  25. position:absolute;
  26. bottom: -.5vw;
  27. left: 0vw;
  28. width: 65vw;
  29. height: 35.5vw;
  30. z-index: 4;
  31. transition: .9s ease-out;
  32. opacity: 0;
  33. }
  34.  
  35. .picture2 {
  36. background-image: url(https://pbs.twimg.com/media/D2NQ3yFX0AAQIcR?format=jpg&name=large);
  37. background-size: 50vw;
  38. background-repeat: no-repeat;
  39. position:absolute;
  40. bottom: -6.5vw;
  41. left: 50vw;
  42. width: 65vw;
  43. height: 62vw;
  44. z-index: 4;
  45. transition: 2s ease-in;
  46. opacity: 1;
  47. }
  48.  
  49. .box1 {
  50. position: absolute;
  51. width: 60vw;
  52. height: 5.5vw;
  53. bottom: 35vw;
  54. left: 5vw;
  55. font-family: 'Pacifico', cursive;
  56. color: #FA6FB0;
  57. font-size: 4vw;
  58. z-index: 7;
  59. transition: 2s ease-in;
  60. opacity: 1;
  61. }
  62.  
  63. .box2 {
  64. position: absolute;
  65. width: 60vw;
  66. height: 4.5vw;
  67. bottom: 0vw;
  68. left: 6.75vw;
  69. font-family: 'Pacifico', cursive;
  70. color: #FA6FB0;
  71. font-size: 3vw;
  72. z-index: 7;
  73. transition: .9s ease-out;
  74. opacity: 0;
  75. }
  76.  
  77. .box2bg {
  78. position: absolute;
  79. width: 55vw;
  80. height: 5.5vw;
  81. bottom: 0vw;
  82. left: 5.5vw;
  83. font-family: 'Pacifico', cursive;
  84. background-color: #FF0057;
  85. color: #FA6FB0;
  86. font-size: 3vw;
  87. z-index: 6;
  88. transition: .9s ease-out;
  89. opacity: 0;
  90. }
  91.  
  92. .friends{
  93. position:absolute;
  94. bottom: 27.5vw;
  95. left: 65vw;
  96. width: 60vw;
  97. height: 0.1vw;
  98. z-index: 5;
  99. transition: .9s ease-out;
  100. opacity: 0;
  101. }
  102.  
  103. .moosick {
  104. border: .vw solid #999;
  105. position: absolute;
  106. bottom: 0vw;
  107. left: 0vw;
  108. width: 5.5vw;
  109. height: 5.5vw;
  110. background-size: 8vw;
  111. background-image: url(https://media0.giphy.com/media/FEExs4OQxvrqM/giphy.gif);
  112. background-position: center;
  113. background-repeat: no-repeat;
  114. z-index: 99;
  115. overflow: hidden;
  116. background-color: transparent;
  117. opacity: 0;
  118. transition: all .9s ease-in-out;
  119. }
  120.  
  121. body:hover .picture{
  122. opacity: 1;
  123. transition: 2s;
  124. transition-delay: 1.5s;
  125. }
  126.  
  127. body:hover .picture2{
  128. opacity: 0;
  129. transition: 2s;
  130. transition-delay: .5s;
  131. }
  132.  
  133. body:hover .box1{
  134. opacity: 0;
  135. transition: 2s;
  136. transition-delay: .5s;
  137. }
  138.  
  139. body:hover .box2{
  140. opacity: 1;
  141. transition: 2s;
  142. transition-delay: 1.5s;
  143. }
  144.  
  145. body:hover .box2bg{
  146. opacity: .95;
  147. transition: 2s;
  148. transition-delay: 1.5s;
  149. }
  150.  
  151. body:hover .friends{
  152. opacity: 1;
  153. transition: 2s;
  154. transition-delay: 1.5s;
  155. }
  156.  
  157. body:hover .moosick{
  158. opacity: 1;
  159. transition: 2s;
  160. transition-delay: 1.5s;
  161. }
Add Comment
Please, Sign In to add comment