MediaWiki:Common.css: mudanças entre as edições

Ir para navegação Ir para pesquisar
sem sumário de edição
Sem resumo de edição
Sem resumo de edição
Linha 579: Linha 579:
/* Testes */
/* Testes */


#slides{
.slider{
   position:relative;
   position: relative;
   width: 200px;
   width:600px;
   height: 200px;
   height: 400px;
  margin: 0;
  padding: 0;
 
}
}
.slide{
.slide{
  position:absolute;
   width:100%;
  left: 0;
  top: 0;
   width: 100%;
   height: 100%;
   height: 100%;
   box-sizing:border-box;
   border-radius: 5px;
  opacity:0;
   animation: fadeInSlide 1s;
  z-index:1;
 
  background-color: #333;
  color:#fff;
 
  font-size: 40px;
  text-align:center;
  line-height:200px;
 
  -webkit-transition:opacity 1.5s;
  -moz-transition:opacity 1.5s;
  -o-transiton:opacity 1.5s;
   transition:opacity 1.5s;
}
}
.showing{
.slider-bullet{
   opacity:1;
   position: absolute;
   z-index:2;
  top: 20px;
  height: 10px;
  width: 10px;
   background-color: #e5e5e5;
  border-radius: 50%;
  transition:1s;
  cursor: pointer;
}
}
.slide:nth-child(2){
@keyframes fadeInSlide{
   background: orange;
   from  {opacity: 0;}
}
   to    {opacity: 1;}
.slide:nth-of-type(3){
   background: green;
}
.slide:nth-of-type(4){
  background: blue;
}
.slide:nth-of-type(5){
  background: purple;
}
}

Menu de navegação