Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
.marquee {
width: 917px;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
border-bottom-width: 0px;
border-top-width: 0px;
width: 100%;
border-width: 0px;
height: 15px;
overflow-x: hidden;
overflow-y: hidden;
font-family: Helvetica, sans-serif;
color: white;
line-height: 13px;
}
.marquee span {
display: inline-block;
padding-left: 100%;
animation: marquee 15s linear infinite;
-webkit-animation: marquee 15s linear infinite;
}
@-webkit-keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}