Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_subject.scss 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .subject {
  2. color: #fff;
  3. transition: opacity .6s ease-in-out;
  4. z-index: $toolbarZ + 2;
  5. margin-top: 20px;
  6. opacity: 0;
  7. &.visible {
  8. opacity: 1;
  9. }
  10. &#autoHide.with-always-on {
  11. overflow: hidden;
  12. animation: hideSubject forwards .6s ease-out;
  13. & > .subject-info-container {
  14. justify-content: flex-start;
  15. }
  16. &.visible {
  17. animation: showSubject forwards .6s ease-out;
  18. }
  19. }
  20. }
  21. .subject-info-container {
  22. display: flex;
  23. justify-content: center;
  24. margin: 0 auto;
  25. height: 28px;
  26. @media (max-width: 500px) {
  27. flex-wrap: wrap;
  28. }
  29. }
  30. .details-container {
  31. width: 100%;
  32. display: flex;
  33. justify-content: center;
  34. position: absolute;
  35. top: 0;
  36. height: 48px;
  37. max-width: calc(100% - 24px);
  38. }
  39. @keyframes hideSubject {
  40. 0% {
  41. max-width: 100%;
  42. }
  43. 100% {
  44. max-width: 0;
  45. }
  46. }
  47. @keyframes showSubject {
  48. 0% {
  49. max-width: 0%;
  50. }
  51. 100% {
  52. max-width: 100%;
  53. }
  54. }