MediaWiki:Common.css: Difference between revisions

From Wiki Malolos
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: →‎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.4); cursor: pointer; } @keyframes credits { 0% { margin-left: 0px; } 100% { margin-left: -4000px; } }")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 27: Line 27:
   
   
}
}
.page-Main_Page #commentform { display: none; }

Latest revision as of 14:54, 12 May 2025

/* CSS placed here will be applied to all skins */

/* 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.4);
    cursor: pointer;
}
@keyframes credits {
  0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -4000px;
 }
 
}

.page-Main_Page #commentform { display: none; }