Main Page/styles.css

From Center of NeuroWiki
Revision as of 23:48, 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: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    position: relative;
}

.text {
    display: inline-block;
    font-size: 24px;
    padding: 0 10px;
    box-sizing: border-box;
    animation: scroll 9s infinite;
}

@keyframes scroll {
    0%, 11.11% {
        transform: translateX(0);
    }
    22.22%, 33.33% {
        transform: translateX(-100%);
    }
    44.44%, 55.55% {
        transform: translateX(-200%);
    }
    66.66%, 77.77% {
        transform: translateX(-300%);
    }
}