Files
MAOH_1/загрузка|loading.css

43 lines
779 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.центрирование-на-экране
{
position: absolute;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.фон-экрана
{
background-color: white;
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.анимированное-название-маджонга
{
animation: кадрыАнимацииНазванияМаджонга 2s infinite;
}
@keyframes кадрыАнимацииНазванияМаджонга {
0% {
text-shadow: 0 0 0 white;
}
30% {
text-shadow: 0 0 1em black;
}
45% {
text-shadow: 0 0 0 white;
}
60% {
text-shadow: 0 0 1em black;
}
70% {
text-shadow: 0 0 0 white;
}
100% {
text-shadow: 0 0 0 white;
}
}