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

De otPokemon Wiki
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
Linha 8: Linha 8:
     background-color: #ffffff;
     background-color: #ffffff;
     animation: animate 15s ease infinite;
     animation: animate 15s ease infinite;
    text-align: center;
}
}



Edição das 20h05min de 17 de abril de 2023

/** o código CSS colocado aqui será aplicado a todos os temas */

content{
    background: linear-gradient(-45deg, #3A1078, #4E31AA, #2F58CD);
    background-size: 400%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    animation: animate 15s ease infinite;
}

@keyframes animate{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}