MediaWiki:Common.css: Difference between revisions
From Baseball VG Encyclopedia
No edit summary |
No edit summary |
||
| Line 36: | Line 36: | ||
width: 4000px; | width: 4000px; | ||
animation: 60s credits linear infinite; | animation: 60s credits linear infinite; | ||
} | |||
.wrapper:hover{ | |||
animation-play-state: paused; | |||
cursor: pointer; | |||
} | } | ||
Revision as of 21:41, 4 February 2024
/* CSS placed here will be applied to all skins */
.infobox {
background: #eee;
border: 1px solid #aaa;
float: right;
margin: 0 0 1em 1em;
padding: 1em;
width: 400px;
}
.infobox-title {
font-size: 2em;
text-align: center;
}
.infobox-image {
text-align: center;
}
.infobox-table th {
text-align: right;
vertical-align: top;
width: 120px;
}
.infobox-table td {
vertical-align: top;
}
/* 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;
}
.wrapper:hover{
animation-play-state: paused;
cursor: pointer;
}
@keyframes credits {
0% {
margin-left: 0px;
}
100% {
margin-left: -4000px;
}
}