mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-15 12:23:51 +00:00
155 lines
2.6 KiB
SCSS
155 lines
2.6 KiB
SCSS
.lower-third {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.container {
|
|
position: absolute;
|
|
display: block;
|
|
top: 75vh;
|
|
line-height: normal;
|
|
|
|
animation-fill-mode: both;
|
|
animation-timing-function: ease-out;
|
|
|
|
&--pre {
|
|
animation-name: in;
|
|
animation-play-state: paused;
|
|
|
|
.data-top {
|
|
animation-play-state: paused;
|
|
animation-name: top-in;
|
|
}
|
|
|
|
.data-lower {
|
|
animation-play-state: paused;
|
|
animation-name: bottom-in;
|
|
}
|
|
}
|
|
|
|
&--in {
|
|
animation-name: in;
|
|
animation-play-state: running;
|
|
|
|
.data-top {
|
|
animation-play-state: running;
|
|
animation-name: top-in;
|
|
}
|
|
|
|
.data-bottom {
|
|
animation-play-state: running;
|
|
animation-name: bottom-in;
|
|
}
|
|
}
|
|
|
|
&--out {
|
|
animation-name: out;
|
|
animation-play-state: running;
|
|
|
|
.data-top {
|
|
animation-play-state: running;
|
|
animation-name: top-out;
|
|
}
|
|
|
|
.data-bottom {
|
|
animation-play-state: running;
|
|
animation-name: bottom-out;
|
|
}
|
|
}
|
|
|
|
.line {
|
|
width: 100%;
|
|
height: var(--bottomThird-line-height-override, 0.5vh);
|
|
}
|
|
|
|
.clip {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.data-bottom,
|
|
.data-top {
|
|
padding: 0 3vw;
|
|
font-family: var(--lowerThird-font-family-override), Lato, Arial, sans-serif;
|
|
text-align: var(--lowerThird-text-align-override, left);
|
|
white-space: nowrap;
|
|
&::after {
|
|
content: '\200b';
|
|
}
|
|
}
|
|
|
|
.data-top {
|
|
font-weight: var(--lowerThird-top-font-weight-override, 600);
|
|
font-style: var(--lowerThird-top-font-style-override, normal);
|
|
}
|
|
|
|
.data-bottom {
|
|
font-weight: var(--lowerThird-bottom-font-weight-override, normal);
|
|
font-style: var(--lowerThird-bottom-font-style-override, normal);
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes in {
|
|
0% {
|
|
transform: translateX(-100%);
|
|
opacity: 0%;
|
|
}
|
|
50%,
|
|
100% {
|
|
transform: translateX(0%);
|
|
opacity: 100%;
|
|
}
|
|
}
|
|
|
|
@keyframes out {
|
|
0%,
|
|
30% {
|
|
transform: translateX(0%);
|
|
opacity: 100%;
|
|
}
|
|
100% {
|
|
transform: translateX(-100%);
|
|
opacity: 0%;
|
|
}
|
|
}
|
|
|
|
@keyframes top-in {
|
|
0%,
|
|
50% {
|
|
transform: translateY(100%);
|
|
}
|
|
100% {
|
|
transform: translateY(0%);
|
|
}
|
|
}
|
|
|
|
@keyframes top-out {
|
|
0% {
|
|
transform: translateY(0%);
|
|
}
|
|
50%,
|
|
100% {
|
|
transform: translateY(100%);
|
|
}
|
|
}
|
|
|
|
@keyframes bottom-in {
|
|
0%,
|
|
50% {
|
|
transform: translateY(-100%);
|
|
}
|
|
100% {
|
|
transform: translateY(0%);
|
|
}
|
|
}
|
|
|
|
@keyframes bottom-out {
|
|
0% {
|
|
transform: translateY(0%);
|
|
}
|
|
50%,
|
|
100% {
|
|
transform: translateY(-100%);
|
|
}
|
|
}
|