Advertisement
ruesha

marquee text – 07/19

Jul 19th, 2024 (edited)
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <style>
  2.  
  3. #marquee {
  4. font-family: utonium;
  5. text-shadow: -1px 0 #8facdb, 0 1px #8facdb, 1px 0 #8facdb, 0 -1px #8facdb;
  6. background: #bfd4f5;
  7. border: 1px solid #c2c2c2;
  8. border-radius: 4px;
  9. position: relative;
  10. top: 5px;
  11. width: 240px;
  12. right: 10px;
  13. color: #fff;
  14. font-size: 30px;
  15. padding-top: 5px;
  16. }
  17.  
  18. @media only screen and (max-width: 600px) {
  19. #marquee {
  20. width: 216px;
  21. }
  22. }
  23.  
  24. </style>
  25.  
  26. <div id="marquee"> <marquee behavior="scroll" direction="right" marquee width="100%">welcome to name's site...</marquee>
  27. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement