No edit summary
No edit summary
 
(32 intermediate revisions by 4 users not shown)
Line 1: Line 1:
/* delete 'from kzoomakers ' id= siteSub */
body {
  color: red;
}
#siteSub {
  display: none;
}
/* delete class mw-page-title-main */
.mw-page-title-main {
    display: none;
color: red;
}
/* hide redirected from refs on main page */
/* hide redirected from refs on main page */
.mw-redirectedfrom {
.mw-redirectedfrom {
     display: none;
     display: none;
}
/* delete discuss icon */
#poncho-talk-button {
  display: none;
}
/* delete print icon */
#poncho-print-button {
  display: none;
}
/* delete home bell thing on top */
#poncho-bell-item {
  display: none;
}
/* delete home tool thing on top */
poncho-tool-item {
  display: none;
}
}


Line 9: Line 48:
     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.
  */
  */


 
#slidingphotocontainer {
.containerphoto{
    width: 1000px;
  height: 500px;
    overflow: hidden;
  width: 500px;
    margin: 10px auto;
  overflow:hidden;
    background: white;
  position:relative;
}
.photobanner {
    height: 233px;
    width: 3550px;
    margin-bottom: 10px;
}
.photobanner img {;
    height: 233px;
    width: 350px;
    transition: all 0.5s ease;
}
.photobanner img:hover {
    transform: scale(1.4);
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
/*keyframe animations*/
.first {
    animation: bannermove 30s linear infinite;
}
}
 
.photoslide{
@keyframes "bannermove" {
  position:absolute;
0% {
  animation:round 20s infinite;
    margin-left: 0px;
  opacity:0;
}
 
100% {
    margin-left: -2125px;
}
}
}
@keyframes round{ 
  25%{opacity:1;}
  40%{opacity:0;}
}


img:nth-child(5){animation-delay:0s;}
.page-Main_Page.action-view #content {
img:nth-child(4){animation-delay:4s;}
  background-image: url('https://kzoomakers.net/images/4/4f/Welding.webp');
img:nth-child(3){animation-delay:8s;}
  background-attachment: fixed;
img:nth-child(2){animation-delay:12s;}
  background-size: cover;
img:nth-child(1){animation-delay:16s;}
  margin-left: 0;
}
} */

Latest revision as of 23:23, 27 April 2023

/* delete 'from kzoomakers ' id= siteSub */

body {

 color: red;

}

  1. siteSub {
 display: none;

}


/* delete class mw-page-title-main */ .mw-page-title-main {

   display: none;

color: red; }

/* 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.
*/
  1. slidingphotocontainer {
   width: 1000px;
   overflow: hidden;
   margin: 10px auto;
   background: white;

}

.photobanner {

   height: 233px;
   width: 3550px;
   margin-bottom: 10px;

}

.photobanner img {;

    height: 233px;
   width: 350px;
   transition: all 0.5s ease;

}

.photobanner img:hover {

   transform: scale(1.4);
   cursor: pointer;
   box-shadow: 0 3px 5px rgba(0,0,0,0.2);

} /*keyframe animations*/ .first {

   animation: bannermove 30s linear infinite;

}

@keyframes "bannermove" {

0% {
   margin-left: 0px;
}
100% {
   margin-left: -2125px;
}

}

.page-Main_Page.action-view #content {

 background-image: url('https://kzoomakers.net/images/4/4f/Welding.webp');
 background-attachment: fixed;
 background-size: cover;
 margin-left: 0;

} */