You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
378 B

5 years ago
  1. .navbar {
  2. position: fixed;
  3. width: 100%;
  4. text-align: center;
  5. background-color: white;
  6. }
  7. .navbar li {
  8. display: inline-block;
  9. margin: 0 0.3em;
  10. }
  11. .navbar li a {
  12. display: block;
  13. transition: all 0.1s ease-in-out;
  14. }
  15. .navbar li a:hover {
  16. transform: scale(1.3);
  17. }
  18. .navbar li.current a {
  19. transform: scale(1.3);
  20. }
  21. .section {
  22. padding: 6em;
  23. line-height: 1.8;
  24. }