Advertisement
Guest User

myspace windows 93 net arrows at start css

a guest
Mar 25th, 2021
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. @keyframes right {
  2. to {
  3. bottom: 90%;
  4. left: 100%;
  5. transform: rotate(-45deg);
  6. }
  7. }
  8.  
  9. #container:not(:target)::before {
  10.     content: url(https://epic-gamer-cats.neocities.org/right.png);
  11.     position: fixed;
  12.     bottom: -5%;
  13.     left: -30%;
  14.     animation: right 3s linear forwards;
  15.     animation-delay: 1s;
  16.     z-index: 40;
  17.     opacity: 5;
  18.     width: 100px;
  19.     height: 100px;
  20. }
  21. @keyframes left {
  22. to {
  23. bottom: 90%;
  24. right: 100%;
  25. transform: rotate(45deg);
  26. }
  27. }
  28.  
  29. #container:not(:target)::after {
  30.     content: url(https://epic-gamer-cats.neocities.org/left.png);
  31.     position: fixed;
  32.     bottom: -5%;
  33.     right: -30%;
  34.     animation: left 3s linear forwards;
  35.     animation-delay: 1s;
  36.     z-index: 40;
  37.     opacity: 5;
  38.     width: 100px;
  39.     height: 100px;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement