Main Page/styles.css

From Center of NeuroWiki
Revision as of 23:43, 24 October 2024 by Selfice (talk | contribs)
Jump to navigation Jump to search
.mainpage-title{
	font-size:1.6em;
	font-weight: bold;
}
.text-container {
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    position: relative;
}

.text {
    display: inline-block;
    width: 200px;
    font-size: 24px;
    animation: scroll 6s infinite;
}

@keyframes scroll {
    0%, 16.67% {
        transform: translateX(0);
    }
    33.33%, 50% {
        transform: translateX(-100%);
    }
    66.67%, 83.33% {
        transform: translateX(-200%);
    }
}