Difference between revisions of "MediaWiki:Common.css"

m
m
Line 11: Line 11:
  
 
.slide-wrapper {
 
.slide-wrapper {
   width: 2912px;
+
   width: 12350px;
 
   animation: slide 18s ease infinite;
 
   animation: slide 18s ease infinite;
 
}
 
}

Revision as of 14:15, 26 July 2023

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


#slideshow {
  text-align: center;
  overflow: hidden;
  height: 400px;
  width: 950px;
  margin: 0 auto;
}

.slide-wrapper {
  width: 12350px;
  animation: slide 18s ease infinite;
}

.slide {
  float: left;
  height: 400px;
  width: 950px;
}



.slide-number {
  color: #000;
  text-align: center;
  font-size: 10em;
}

@-webkit-keyframes slide {
  20% {margin-left: 0px;}
  30% {margin-left: -950px;}
  50% {margin-left: -950px;}
  60% {margin-left: -1900px;}
  70% {margin-left: -1900px;}
  80% {margin-left: -2850px;}
  90% {margin-left: -2850px;}
}