Template:Credits.css: Difference between revisions
Jump to navigation
Jump to search
(Created page with ".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 130s linear infinite; } .box .content a, .box .content .nowrap span { color:#b39d26 !important; } .box .content .smaller { font-size: 3.5vw; }...") |
(EnbyPie08AgainFromTheWikiCamp2 changed the content model of the page Template:Credits.css from "wikitext" to "Sanitized CSS") Tag: content model change |
Revision as of 01:07, 4 October 2023
.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 130s linear infinite;
}
.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%);}
}