forked from rebillar/site-accueil-insa
38 lines
No EOL
512 B
CSS
38 lines
No EOL
512 B
CSS
.conteneur-oeuf-de-paque{
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes rotation {
|
|
|
|
to{
|
|
visibility: visible;
|
|
transform: rotate3d(1, 1, 1, 0deg);
|
|
}
|
|
|
|
from{
|
|
transform: rotate3d(1, 1, 1, 360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.vice-prez{
|
|
top: 0%;
|
|
position: fixed;
|
|
animation-name: rotation;
|
|
animation-duration: 1s;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
|
|
.clash-gif{
|
|
position: fixed;
|
|
top: 0%;
|
|
} |