MediaWiki:Common.css: Difference between revisions
From Baseball VG Encyclopedia
No edit summary |
No edit summary |
||
| (9 intermediate revisions by the same user not shown) | |||
| Line 39: | Line 39: | ||
.wrapper img:hover { | .wrapper img:hover { | ||
transform: scale(1. | transform: scale(1.1); | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
@keyframes credits { | @keyframes credits { | ||
0% { | 0% { | ||
| Line 51: | Line 52: | ||
} | } | ||
#toc {float:right; | |||
margin:1em 1em 2em 2em; | |||
padding: 1em; | |||
position:fixed; | |||
top:150px; | |||
right:10px; | |||
}; | |||
Latest revision as of 17:03, 11 March 2025
/* 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 img:hover {
transform: scale(1.1);
cursor: pointer;
}
@keyframes credits {
0% {
margin-left: 0px;
}
100% {
margin-left: -4000px;
}
}
#toc {float:right;
margin:1em 1em 2em 2em;
padding: 1em;
position:fixed;
top:150px;
right:10px;
};