MediaWiki:Common.css: Difference between revisions

From GCA ACT
Jump to navigationJump to search
No edit summary
No edit summary
 
Line 3: Line 3:
.tree-nochildren {
.tree-nochildren {
     display: none !important;
     display: none !important;
}
/* 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: 275px;
  animation: 10s credits linear infinite;
}
.wrapper:hover{
    animation-play-state: paused;
    cursor: pointer;
}
@keyframes credits {
  0% {
    margin-left: 0px;
}
100% {
    margin-left: -4000px;
}
}
}

Latest revision as of 18:57, 20 February 2024

/* CSS placed here will be applied to all skins */
/* Hide "no subcategories" text in CategoryTree */
.tree-nochildren {
    display: none !important;
}