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 655B

1234567891011121314151617181920212223242526272829303132
  1. .subject {
  2. top: -120px;
  3. transition: top .3s ease-in;
  4. height: 95px;
  5. width: 100%;
  6. pointer-events: none;
  7. position: absolute;
  8. padding: 25px 140px 0 140px;
  9. text-align: center;
  10. font-size: 17px;
  11. color: #fff;
  12. z-index: $zindex10;
  13. overflow: hidden;
  14. text-overflow: ellipsis;
  15. box-sizing: border-box;
  16. white-space: nowrap;
  17. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  18. &.visible {
  19. top: 0px;
  20. }
  21. &-text {
  22. vertical-align: middle;
  23. }
  24. &-conference-timer {
  25. display: block;
  26. font-size: 15px;
  27. opacity: 0.6;
  28. }
  29. }