Navigation.scss 665 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * React Static Boilerplate
  3. * https://github.com/koistya/react-static-boilerplate
  4. * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
  5. */
  6. @import '../variables.scss';
  7. .Navigation {
  8. display: flex;
  9. flex-direction: row;
  10. margin: 2em 0 5em 0;
  11. list-style: none;
  12. justify-content: flex-end;
  13. }
  14. .Navigation-item {
  15. padding: 0 2em;
  16. }
  17. .Navigation-link {
  18. padding: 0.5em 1em;
  19. color: $brand-color;
  20. text-decoration: none;
  21. text-transform: uppercase;
  22. cursor: pointer;
  23. &:hover {
  24. border-bottom: 3px solid $brand-color;
  25. color: $text-color;
  26. }
  27. &:visited {
  28. color: $brand-color;
  29. &:hover {
  30. color: $text-color;
  31. }
  32. }
  33. }