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.

_subject.scss 484B

123456789101112131415161718192021
  1. .subject {
  2. top: -120px;
  3. transition: top .3s ease-in;
  4. height: 95px;
  5. width: 100%;
  6. position: absolute;
  7. padding: 25px 140px 0 140px;
  8. text-align: center;
  9. font-size: 17px;
  10. color: #fff;
  11. z-index: $toolbarBackgroundZ;
  12. overflow: hidden;
  13. text-overflow: ellipsis;
  14. box-sizing: border-box;
  15. white-space: nowrap;
  16. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  17. &.visible {
  18. top: 0px;
  19. }
  20. }