No edit summary
No edit summary
Line 30: Line 30:
     display: none;
     display: none;
}
}


/* CSS Sliding Image Gallery for Mediawiki
/* CSS Sliding Image Gallery for Mediawiki
  * https://www.mediawiki.org/wiki/Snippets/Image_Slideshow_created_by_CSS
  *  
* @author: Unknown
* current version crafted together by [[User:Christharp]] from several CSS sites.
  */
  */


 
.wrapper {
.containerphoto{
  position: absolute;
  height: 500px;
  top: 1%;
  width: 500px;
   width: 4000px;
   overflow:hidden;
   animation: 60s credits linear infinite;
   position:relative;
}
}


.photoslide{
.wrapper img:hover {
  position:absolute;
    transform: scale(1.4);
  animation:round 20s infinite;
    cursor: pointer;
  opacity:0;
 
}
}
@keyframes round{  
@keyframes credits {
   25%{opacity:1;}
   0% {
  40%{opacity:0;}
    margin-left: 0px;
}  
}
 
100% {
img:nth-child(5){animation-delay:0s;}
    margin-left: -4000px;
img:nth-child(4){animation-delay:4s;}
}
img:nth-child(3){animation-delay:8s;}
img:nth-child(2){animation-delay:12s;}
img:nth-child(1){animation-delay:16s;}
}
}

Revision as of 15:19, 17 April 2023

/* hide redirected from refs on main page */ .mw-redirectedfrom {

   display: none;

}

/* delete discuss icon */

  1. poncho-talk-button {
  display: none;

}

/* delete print icon */

  1. poncho-print-button {
  display: none;

}


/* delete home bell thing on top */

  1. poncho-bell-item {
  display: none;

} /* delete home tool thing on top */ poncho-tool-item {

  display: none;

}


/* hide unwanted on main page */

  1. siteSub {
   display: none;

}

/* 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;
}

}