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

1234567891011121314151617181920212223242526272829303132333435
  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. &.visible {
  18. top: 0px;
  19. }
  20. &.gradient {
  21. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  22. }
  23. &-text {
  24. vertical-align: middle;
  25. }
  26. &-conference-timer {
  27. display: block;
  28. font-size: 15px;
  29. opacity: 0.6;
  30. }
  31. }