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.

27 lines
318 B

  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. }