_header.scss 552 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. #search-input {
  24. max-width: 300px;
  25. width: 33vw;
  26. }
  27. .searchresults {
  28. position: fixed;
  29. top: 45px;
  30. left: 0;
  31. right: 0;
  32. margin: 0 auto;
  33. width: 500px;
  34. z-index: 1;
  35. &.slideInDown {
  36. @include prefix(animation-duration, .6s);
  37. }
  38. }