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

sem sumário de edição
Sem resumo de edição
Sem resumo de edição
Linha 566: Linha 566:
}
}


/* KeyFrames */
/* Página Instagram */
 
@keyframes moveGradient {
    50% {
        background-position: 100% 50%;
    }
}
 
 
 
 
/* Testes */
 
 
.insta-main{
.insta-main{
     width: 70%;
     width: 70%;
Linha 713: Linha 700:
.reaction-wrapper .icon{
.reaction-wrapper .icon{
     margin-right: 15px;
     margin-right: 15px;
}
/* KeyFrames */
@keyframes moveGradient {
    50% {
        background-position: 100% 50%;
    }
}
/* Testes */
.slider{
  position: relative;
  height: 400px;
}
.slide{
  width:100%;
  height: 100%;
  border-radius: 5px;
  animation: fadeInSlide 1s;
}
.slider-bullet{
  position: absolute;
  top: 20px;
  height: 10px;
  width: 10px;
  background-color: #e5e5e5;
  border-radius: 50%;
  transition:1s;
  cursor: pointer;
}
@keyframes fadeInSlide{
  from  {opacity: 0;}
  to    {opacity: 1;}
}
}