Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <style>
  2. #bitch{position:absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;}
  3.  
  4. body {
  5. width: 100wh;
  6. height: 90vh;
  7. color: #fff;
  8. background: linear-gradient(90deg, #141a28, #37415b, #a1acc6, #8c7791);
  9. background-size: 400% 400%;
  10. -webkit-animation: Gradient 15s ease infinite;
  11. -moz-animation: Gradient 15s ease infinite;
  12. animation: Gradient 15s ease infinite;
  13. }
  14.  
  15. @-webkit-keyframes Gradient {
  16. 0% {
  17. background-position: 0% 50%
  18. }
  19. 50% {
  20. background-position: 100% 50%
  21. }
  22. 100% {
  23. background-position: 0% 50%
  24. }
  25. }
  26.  
  27. @-moz-keyframes Gradient {
  28. 0% {
  29. background-position: 0% 50%
  30. }
  31. 50% {
  32. background-position: 100% 50%
  33. }
  34. 100% {
  35. background-position: 0% 50%
  36. }
  37. }
  38.  
  39. @keyframes Gradient {
  40. 0% {
  41. background-position: 0% 50%
  42. }
  43. 50% {
  44. background-position: 100% 50%
  45. }
  46. 100% {
  47. background-position: 0% 50%
  48. }
  49. }
  50.  
  51. .esme {
  52. position:absolute;
  53. bottom:10vh;
  54. right:120vh;
  55. height:70vh;
  56. width:50vh;
  57. background-image: url('https://cdn.discordapp.com/attachments/590352068699750400/680665257584230420/unknown.png');
  58. background-attachment: absolute;
  59. background-position: -41vh;
  60. background-size: cover;
  61. border: 1px solid #2a2b2c;
  62. z-index: 1;
  63. }
  64. </style>
  65. <div class="esme"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement