Heimdall/resources/assets/sass/_rune.scss

30 lines
626 B
SCSS
Raw Normal View History

2018-06-21 15:41:04 +00:00
// This file were added as a supplement to RuneAudio application
2018-02-25 14:23:45 +00:00
.title-marquee {
width: 125px;
overflow: hidden;
2018-10-30 14:58:45 +00:00
display: flex;
align-items: flex-start;
margin-top: 2px;
> span, > strong {
2018-02-25 14:23:45 +00:00
white-space: nowrap;
transform: translate(0, 0);
animation: marquee 8s linear;
}
2018-10-30 14:58:45 +00:00
.title {
margin-right: 4px;
}
}
.no-marquee {
.title {
margin-right: 4px;
}
}
@keyframes marquee {
0% { transform: translate(0, 0); }
20% { transform: translate(0, 0); }
95% { transform: translate(-200%, 0); }
100% { transform: translate(-200%, 0); }
2018-06-21 15:41:04 +00:00
}