_header.scss 452 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #header {
  2. z-index: 5;
  3. }
  4. h2.nav-item {
  5. font-size: 150%;
  6. color: $orange;
  7. }
  8. #notifload {
  9. width: 42px;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. opacity: 0;
  14. transition: opacity .5s ease;
  15. &::before {
  16. content: " ";
  17. @include spinner($orange,0.5s,24px);
  18. }
  19. &.active {
  20. opacity: 1;
  21. }
  22. }
  23. .searchresults {
  24. position: fixed;
  25. top: 45px;
  26. left: 0;
  27. right: 0;
  28. margin: 0 auto;
  29. width: 500px;
  30. z-index: 1;
  31. //display: none;
  32. }