No edit summary |
No edit summary |
||
Line 42: | Line 42: | ||
width: 4000px; | width: 4000px; | ||
animation: 60s credits linear infinite; | animation: 60s credits linear infinite; | ||
animation-direction:reverse; | |||
} | } | ||
Line 56: | Line 57: | ||
} | } | ||
} | |||
.wrapper:hover{ | |||
animation-play-state: paused; | |||
cursor: pointer; | |||
} | } |
Revision as of 15:22, 17 April 2023
/* hide redirected from refs on main page */ .mw-redirectedfrom {
display: none;
}
/* delete discuss icon */
- poncho-talk-button {
display: none;
}
/* delete print icon */
- poncho-print-button {
display: none;
}
/* delete home bell thing on top */
- poncho-bell-item {
display: none;
} /* delete home tool thing on top */ poncho-tool-item {
display: none;
}
/* hide unwanted on main page */
- siteSub {
display: none;
}
/* CSS Sliding Image Gallery for Mediawiki
* * @author: Unknown * current version crafted together by User:Christharp from several CSS sites. */
.wrapper {
position: absolute; top: 1%; width: 4000px; animation: 60s credits linear infinite; animation-direction:reverse;
}
.wrapper img:hover {
transform: scale(1.4); cursor: pointer;
} @keyframes credits {
0% { margin-left: 0px; } 100% { margin-left: -4000px; }
}
.wrapper:hover{
animation-play-state: paused; cursor: pointer;
}