MediaWiki:Common.css: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
/** o código CSS colocado aqui será aplicado a todos os temas */ | /** o código CSS colocado aqui será aplicado a todos os temas */ | ||
body{ | |||
background: linear-gradient(-45deg, #3A1078, #4E31AA, #2F58CD); | |||
background-size: 400%; | |||
width: 100%; | |||
height: 100%; | |||
background-color: #ffffff; | |||
animation: animate 15s ease infinite; | |||
text-align: center; | |||
} | |||
@keyframes animate{ | |||
0%{ | |||
background-position: 0 50%; | |||
} | |||
50%{ | |||
background-position: 100% 50%; | |||
} | |||
100%{ | |||
background-position: 0 50%; | |||
} | |||
} | |||
Edição das 20h02min de 17 de abril de 2023
/** o código CSS colocado aqui será aplicado a todos os temas */
body{
background: linear-gradient(-45deg, #3A1078, #4E31AA, #2F58CD);
background-size: 400%;
width: 100%;
height: 100%;
background-color: #ffffff;
animation: animate 15s ease infinite;
text-align: center;
}
@keyframes animate{
0%{
background-position: 0 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0 50%;
}
}