Modèle:Schedule/Big Run/styles.css

De Inkipédia
.textscrolldiv{
	/*background-color: rgba(255,255,255, 0.65) !important;*/
    overflow: hidden;
    display: block;
	background: none;
	box-shadow: none;
	padding: 5px;
	margin: 0;
	border: none;
}
.textscroll{
	margin: 0;
	transform: translateX(100%);
	animation:textscroll 20s linear infinite;
	text-overflow: ellipsis;
	white-space: nowrap;
}
@keyframes textscroll {
	0%{
		transform: translateX(100%);
	}
	100%{
		transform: translateX(-150%);
	}
}