.runninglinecontainer{ /*скорость регулируется*/ width:100%; margin: 0 auto; } /****** Lines *******/ .line { overflow:hidden; width:100%; border:1px solid #393e48; box-shadow:0px 5px 5px 3px rgba(0,0,0,0.3); display:block; margin-top:-20px; border-radius:20px; position:relative; } .line .line_cover{ width:100%; height:100%; position:absolute; z-index:2; background:url(led_bg.png); } .line .line_text{ width:100%; height:100%; position:absolute; z-index:1; } /****** Line 1 *******/ #l1.line{ height:45px; background:rgb(51,55,65); } #l1.line .line_text{ font-size:40px; font-weight:bold; /*color:цвет текста можете выставить по вкусу*/ color: cyan; -webkit-animation: l1_animation /*скорость перемещения текста 35s*/15s linear infinite; -moz-animation: l1_animation /*скорость перемещения текста 35s*/15s linear infinite; } @-webkit-keyframes l1_animation { 0%{left:100%;} 100%{left:-400%;} } @-moz-keyframes l1_animation { 0%{left:100%;} 100%{left:-400%;} }