_header.scss 829 B

1234567891011121314151617181920212223242526272829303132333435
  1. header {
  2. @include bg-secondary;
  3. nav {
  4. ul {
  5. list-style-type: none;
  6. list-style: none;
  7. margin: 0;
  8. padding: 0;
  9. li {
  10. float: left;
  11. a {
  12. display: block;
  13. text-decoration: none;
  14. color: inherit;
  15. text-align: center;
  16. padding: 0.8em 1em;
  17. transition: 0.4s;
  18. cursor: pointer;
  19. @include disable-select;
  20. &.active {
  21. @include bg-primary;
  22. }
  23. &:hover,
  24. &:focus {
  25. @include bg-accent;
  26. }
  27. }
  28. }
  29. }
  30. }
  31. }