Advertisement
republicaoldgamer

Untitled

Sep 22nd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. body {
  2. width: 100%;
  3. height: 100%;
  4. background: #000;
  5. overflow: hidden;
  6. }
  7.  
  8. .fade {
  9. position: relative;
  10. width: 100%;
  11. min-height: 60vh;
  12. top: -25px;
  13. background-image: linear-gradient(0deg, transparent, black 75%);
  14. z-index: 1;
  15. }
  16.  
  17. .end-credits {
  18. display: flex;
  19. justify-content: center;
  20. position: relative;
  21. height: 800px;
  22. color: #feda4a;
  23. font-family: 'Pathway Gothic One', sans-serif;
  24. font-size: 500%;
  25. font-weight: 600;
  26. letter-spacing: 6px;
  27. line-height: 150%;
  28. perspective: 400px;
  29. text-align: center;
  30. }
  31. span {
  32. display: block;
  33. }
  34.  
  35. .marquee-wrapper {
  36. position: relative;
  37. top: 99999px;
  38. transform-origin: 50% 100%;
  39. animation: crawl 30s linear;
  40. }
  41.  
  42. .marquee-wrapper > .title {
  43. font-size: 90%;
  44. text-align: center;
  45. }
  46.  
  47. @keyframes crawl {
  48. 0% {
  49. top: 100px;
  50. }
  51. 100% {
  52. top: -6000px;
  53. }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement