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 582: Linha 582:
       display: block;
       display: block;
       max-width: 400px;
       max-width: 400px;
      height: 400px;
       position: relative;
       position: relative;
       margin: auto;
       margin: auto;
Linha 602: Linha 603:
     /* Efeito de transição do slideshow */
     /* Efeito de transição do slideshow */
     .slideshow-container .slide:first-child {
     .slideshow-container .slide:first-child {
      animation: fade 6s infinite;
    }
    /* Animação do slideshow usando :target */
    .slide:target {
       display: block;
       display: block;
      animation: fade 6s;
     }
     }


     @keyframes fade {
     /* Setas de navegação */
      0%, 20% {
    .prev, .next {
        opacity: 0;
      position: absolute;
       }
       top: 50%;
       25%, 100% {
       transform: translateY(-50%);
        opacity: 1;
      font-size: 24px;
       }
      cursor: pointer;
       z-index: 1;
     }
     }


    /* Timer para avançar automaticamente */
     .prev {
     .slideshow-container {
       left: 10px;
       animation: change-slide 18s infinite;
     }
     }


     @keyframes change-slide {
     .next {
      0%, 33.33% {
       right: 10px;
        target: #slide1;
      }
       33.33%, 66.66% {
        target: #slide2;
      }
      66.66%, 100% {
        target: #slide3;
      }
     }
     }