Изменения от Главреда ГитЖС | Changes of GitJS Glavred

This commit is contained in:
Главред | Glavred
2020-10-26 14:17:28 +03:00
parent f2a70f7bb2
commit cf6829b0a8
10 changed files with 143 additions and 48 deletions

View File

@@ -16,28 +16,33 @@
bottom: 0;
}
.анимированное-название-маджонга
/* https://loading.io/css/ */
.lds-dual-ring
{
animation: кадрыАнимацииНазванияМаджонга 2s infinite;
display: inline-block;
width: 80px;
height: 80px;
}
@keyframes кадрыАнимацииНазванияМаджонга {
0% {
text-shadow: 0 0 0 white;
.lds-dual-ring:after
{
content: " ";
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 3px solid black;
border-color: black transparent black transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring
{
0%
{
transform: rotate(0deg);
}
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;
100%
{
transform: rotate(360deg);
}
}