Navigation.scss 659 B

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