Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <body data-spy="scroll" data-target=".navbar" data-offset="50">
  2.  
  3. <!--==========MENU============-->
  4.  
  5. <nav class="navbar navbar-default navbar-fixed-top">
  6. <ul class="nav">
  7. <li><a href="#1">ABOUT</a></li>
  8. <li><a href="#2">PROCESS</a></li>
  9. <li><a href="#3">SERVICES</a></li>
  10. <li><a href="#4">TEAM</a></li>
  11. </ul>
  12. </nav>
  13.  
  14. <!--==========CONTENT============-->
  15.  
  16. <section class="page" id="1">
  17. </section>
  18. <section style="background-color:red" class="page" id="2">
  19. </section>
  20. <section class="page" id="3">
  21. </section>
  22. <section style="background-color:red" class="page" id="4">
  23. </section>
  24.  
  25. </body>
  26.  
  27. .nav {
  28. margin: 0 auto;
  29. list-style: none;
  30. text-align: center;
  31. }
  32. .nav li {
  33. display: inline-block;
  34. margin: 0 10px;
  35. }
  36. .nav li a {
  37. color: #000;
  38. text-decoration: none;
  39. font-weight: bold;
  40. transition: all 0.2s ease;
  41. }
  42. .nav li a:hover {
  43. color: #00dcbe;
  44. }
  45.  
  46. .nav li a.active {color:blue;}
  47.  
  48. .page {height:600px;border:1px solid #000}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement