Navigation.scss 710 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. li {
  14. padding: 0 2em;
  15. a {
  16. padding: 0.5em 1em;
  17. color: $brand-color;
  18. text-decoration: none;
  19. text-transform: uppercase;
  20. cursor: pointer;
  21. &:hover {
  22. border-bottom: 3px solid $brand-color;
  23. color: $text-color;
  24. }
  25. &:visited {
  26. color: $brand-color;
  27. &:hover {
  28. color: $text-color;
  29. }
  30. }
  31. }
  32. }
  33. }