dollcrds

d8ncer css + marquee

Mar 12th, 2024
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. ==TOP==
  2.  
  3. <link rel="stylesheet" href="https://unpkg.com/7.css">
  4. <div class="title-bar active">
  5. <div class="title-bar-text">Status: Online</div>
  6. <div class="title-bar-controls">
  7. <button aria-label="Minimize"></button>
  8. <button aria-label="Maximize"></button>
  9. <button aria-label="Close"></button>
  10. </div>
  11. </div>
  12.  
  13. ==MENU==
  14.  
  15. <link rel="stylesheet" href="https://unpkg.com/7.css">
  16. <ul role="menubar">
  17. <li role="menuitem"><a href="#one">Guidelines</a></li>
  18. <ul role="menubar">
  19. <li role="menuitem"><a href="#two">Interests</a></li></ul>
  20.  
  21. ==TEXT BOX==
  22.  
  23. <link rel="stylesheet" href="https://unpkg.com/7.css">
  24. <ul class="tree-view has-container">
  25. <li>welcome to my carrd!</li> <li>please read all the info that i have in here</li> <li>cr d8ncer <3</li>
  26. </ul>
  27.  
  28. ==PROGESS BAR==
  29.  
  30. <link rel="stylesheet" href="https://unpkg.com/7.css">
  31. <div role="progressbar" class="marquee"></div>
  32.  
  33. ==MARQUEE==
  34.  
  35. <style>
  36. .scroll-left {
  37. height: 15px;
  38. overflow: hidden;
  39. position: relative;
  40. color: black;
  41. }
  42. .scroll-left p {
  43. position: absolute;
  44. width: 100%;
  45. height: 100%;
  46. margin: 0;
  47. line-height: 5px;
  48. text-align: center;
  49. /* Starting position */
  50. transform:translateX(100%);
  51. /* Apply animation to this element */
  52. animation: scroll-left 15s linear infinite;
  53. }
  54. /* Move it (define the animation) */
  55. @keyframes scroll-left {
  56. 0% {
  57. transform: translateX(100%);
  58. }
  59. 100% {
  60. transform: translateX(-100%);
  61. }
  62. }
  63. </style>
  64.  
  65. <marquee behavior="scroll" direction="left">I-I-Ima hit you back, right after I flip this pack She don't know my real name, but she know I’m real bad I know she hate it when I’m faded She ain't down like that, are you down like that?</marquee>
  66.  
  67. ==TOP PAGE 1==
  68.  
  69. <link rel="stylesheet" href="https://unpkg.com/7.css">
  70. <div class="title-bar active">
  71. <div class="title-bar-text">Guidelines</div>
  72. <div class="title-bar-controls">
  73. <a href="#home"><button aria-label="Close"></button></a>
  74. </div>
  75. </div>
  76.  
  77. ==TOP PAGE 2==
  78.  
  79. <link rel="stylesheet" href="https://unpkg.com/7.css">
  80. <div class="title-bar active">
  81. <div class="title-bar-text">Interests</div>
  82. <div class="title-bar-controls">
  83. <a href="#home"><button aria-label="Close"></button></a>
  84. </div>
  85. </div>
Advertisement
Add Comment
Please, Sign In to add comment