jiti-meet/css/_subject.scss

27 lines
552 B
SCSS
Raw Normal View History

2019-03-12 17:45:53 +00:00
.subject {
top: -120px;
transition: top .3s ease-in;
height: 95px;
width: 100%;
pointer-events: none;
2019-03-12 17:45:53 +00:00
position: absolute;
padding: 25px 140px 0 140px;
text-align: center;
font-size: 17px;
color: #fff;
2019-10-31 06:14:15 +00:00
z-index: $zindex10;
2019-03-12 17:45:53 +00:00
overflow: hidden;
text-overflow: ellipsis;
box-sizing: border-box;
white-space: nowrap;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
&.visible {
top: 0px;
}
2019-10-31 06:14:15 +00:00
&-text {
vertical-align: middle;
}
2019-03-12 17:45:53 +00:00
}