Advertisement
RageQxeen

Dot Nav

Jul 31st, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. #nav {
  2. background-color: transparent;
  3. width: 70px;
  4. height: 5px;
  5. margin:auto;
  6. position: absolute;
  7. left: 39.5vw;
  8. top: 2vw;
  9. text-align: center;
  10. z-index: 10;
  11. }
  12.  
  13. #nav a, #nav a:link, #nav a:visited {
  14. display:inline-block;
  15. background: #332628;
  16. color: #332628;
  17. margin-top: 0px;
  18. margin-bottom: 0px;
  19. margin-left: 0px;
  20. height: 10px;
  21. width: 10px;
  22. border-radius: 100%;
  23. box-shadow: 0px 0px 7px #ffecef;
  24. -webkit-transition: 0.5s linear;
  25. -moz-transition: 0.5s linear;
  26. -o-transition: 0.5s linear;
  27. transition: 0.5s linear;
  28. }
  29.  
  30. #nav a:active, #nav a:hover {
  31. display:inline-block;
  32. height: 10px;
  33. width: 10px;
  34. border-radius: 100%;
  35. text-decoration:none;
  36. background: #ffdfe5;
  37. color: #ffdfe5;
  38. margin: 0px;
  39. box-shadow: 0px 0px 5px #ffecef;
  40. -webkit-transition: 0.5s linear;
  41. -moz-transition: 0.5s linear;
  42. -o-transition: 0.5s linear;
  43. transition: 0.5s linear;
  44. }
  45.  
  46.  
  47. <div id="nav">
  48. <a href="#one"></a>
  49. <a href="#two"></a>
  50. <a href="#three"></a>
  51. <a href="#four"></a>
  52. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement