Template:Credits.css: Difference between revisions
Jump to navigation
Jump to search
(EnbyPie08AgainFromTheWikiCamp2 changed the content model of the page Template:Credits.css from "wikitext" to "Sanitized CSS") Tag: content model change |
Pseudosphere (talk | contribs) No edit summary |
||
Line 19: | Line 19: | ||
height: 100vh; | height: 100vh; | ||
margin: 0; | margin: 0; | ||
animation: scroll 130s | animation: scroll linear; | ||
animation-delay: 0s !important; | |||
animation-duration: 130s !important; | |||
animation-iteration-count: infinite !important; | |||
} | } | ||
.box .content a, .box .content .nowrap span { | .box .content a, .box .content .nowrap span { |
Latest revision as of 23:53, 26 October 2024
.mw-body {
background-color: navy;
font-family:"Bubblegum Sans";
}
.firstHeading {
text-align: center;
}
.box {
height: 256px;
overflow: hidden;
position: relative;
}
.box .content {
color:#b39d26;
text-shadow:0.05em 0.05em 0.02em #000000;
font-size: 5vw;
position: absolute;
width: 100%;
height: 100vh;
margin: 0;
animation: scroll linear;
animation-delay: 0s !important;
animation-duration: 130s !important;
animation-iteration-count: infinite !important;
}
.box .content a, .box .content .nowrap span {
color:#b39d26 !important;
}
.box .content .smaller {
font-size: 3.5vw;
}
@keyframes scroll {
0% {transform: translateY(50%);}
100% {transform: translateY(-900%);}
}