Advertisement
CornyGoose

Annie CSS

Apr 2nd, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 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: #F3F3F3;
  14. background-size: 100%;
  15. background-repeat: repeat;
  16. z-index: 0;
  17. cursor: url(), default;
  18. }
  19.  
  20. .picture {
  21. background-image: url(https://cdn.discordapp.com/attachments/930129970003607613/959859111326023680/512912310ea6f438ac2946f2f2296317.jpg);
  22. background-size: 30vw;
  23. background-repeat: no-repeat;
  24. position: absolute;
  25. bottom: 0vw;
  26. left: 39vw;
  27. width: 50vw;
  28. height: 41vw;
  29. z-index: 1;
  30. transition: .9s ease-out;
  31. }
  32.  
  33.  
  34. .name {
  35. background-image: url(https://i.imgur.com/0NOFwki.png);
  36. background-size: 35vw;
  37. background-repeat: no-repeat;
  38. position: absolute;
  39. left: 7vw;
  40. bottom: 20vw;
  41. width: 63vw;
  42. height: 12vw;
  43. color: #000;
  44. font-family: 'Cormorant Garamond', serif;
  45. font-size: 9vw;
  46. text-align: center;
  47. letter-spacing: .2vw;
  48. transition: .9s ease-out;
  49. z-index: 3;
  50. opacity: 1;
  51. filter: drop-shadow(-.3vw .3vw #000000);
  52. transform: rotate(-10deg);
  53. }
  54.  
  55.  
  56. .gif {
  57. background-image: url(https://i.imgur.com/flqgcXq.gif);
  58. background-size: 20vw;
  59. background-repeat: no-repeat;
  60. position: absolute;
  61. left: 16vw;
  62. bottom: 10vw;
  63. width: 70vw;
  64. height: 15vw;
  65. color: #000;
  66. font-family: 'Cormorant Garamond', serif;
  67. font-size: 9vw;
  68. text-align: center;
  69. letter-spacing: .2vw;
  70. transition: .9s ease-out;
  71. z-index: 3;
  72. opacity: 0.5;
  73. filter: drop-shadow(-.6vw .6vw #000000);
  74. transform: rotate(-10deg);
  75. }
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement