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.

55 lines
639 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. h2.nav-item {
  12. font-size: 150%;
  13. color: $orange;
  14. }
  15. #notifload {
  16. width: 42px;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. opacity: 0;
  21. transition: opacity .5s ease;
  22. &::before {
  23. content: " ";
  24. @include spinner($orange,0.5s,24px);
  25. }
  26. &.active {
  27. opacity: 1;
  28. }
  29. }
  30. #search-input {
  31. max-width: 300px;
  32. width: 33vw;
  33. }
  34. .searchresults {
  35. position: fixed;
  36. top: 45px;
  37. left: 0;
  38. right: 0;
  39. margin: 0 auto;
  40. width: 500px;
  41. z-index: 1;
  42. &.slideInDown {
  43. @include prefix(animation-duration, .6s);
  44. }
  45. }