You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
417 B

  1. #header-container {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. z-index: 4;
  7. }
  8. #header {
  9. z-index: 5;
  10. }
  11. #notifload {
  12. width: 42px;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. opacity: 0;
  17. transition: opacity .5s ease;
  18. &::before {
  19. content: " ";
  20. @include spinner(mc('indigo', '100'),0.5s,24px);
  21. }
  22. &.active {
  23. opacity: 1;
  24. }
  25. }
  26. #search-input {
  27. max-width: 300px;
  28. width: 33vw;
  29. }