MediaWiki:Common.css: Difference between revisions

From GCA ACT
Jump to navigationJump to search
(Undo previous edit related to categorytree-no-subcategories)
Tag: Manual revert
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Hide "no subcategories" text in CategoryTree */
/* Hide "no subcategories" text in CategoryTree */
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;
}
}
}

Revision as of 18:43, 20 February 2024

/* CSS placed here will be applied to all skins */
/* Hide "no subcategories" text in CategoryTree */
.tree-nochildren {
    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;
 }
 
}