#15 added placeholder to matches

This commit is contained in:
2021-11-20 10:24:32 +01:00
parent 158ece4ac9
commit 4154b988fe
5 changed files with 49 additions and 37 deletions

View File

@@ -17,3 +17,14 @@
border: 1px solid #ff2f2f;
border-radius: 5px;
}
.placeholder-wave-alt {
mask-image: linear-gradient(130deg, black 55%, rgba(0, 0, 0, (1 - 0.2)) 75%, black 95%);
mask-size: 200% 100%;
animation: placeholder-wave-alt 2.5s linear infinite;
}
@keyframes placeholder-wave-alt {
100% {
mask-position: -200% 0%;
}
}