mrquatsch
7 years ago
4 changed files with 74 additions and 19 deletions
@ -1,4 +1,4 @@ |
|||
{ |
|||
"/css/app.css": "/css/app.css?id=353c513dd97a5fa0607d", |
|||
"/css/app.css": "/css/app.css?id=7e76b8c135b6dbd38363", |
|||
"/js/app.js": "/js/app.js?id=24ea5e5c1fbea3461a14" |
|||
} |
@ -0,0 +1,15 @@ |
|||
.title-marquee { |
|||
width: 125px; |
|||
overflow: hidden; |
|||
span { |
|||
white-space: nowrap; |
|||
transform: translate(0, 0); |
|||
animation: marquee 8s linear; |
|||
} |
|||
@keyframes marquee { |
|||
0% { transform: translate(0, 0); } |
|||
20% { transform: translate(0, 0); } |
|||
95% { transform: translate(-200%, 0); } |
|||
100% { transform: translate(-200%, 0); } |
|||
} |
|||
} |
Loading…
Reference in new issue