mirror of
https://github.com/jech/galene.git
synced 2024-11-23 09:05:59 +01:00
26 lines
711 B
XML
26 lines
711 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg version="1.1" viewBox="0 0 64 16" xmlns="http://www.w3.org/2000/svg">
|
|
<g fill="#ececec">
|
|
<circle cx="8" cy="8" r="8"/>
|
|
<circle cx="32" cy="8" r="8"/>
|
|
<circle cx="56" cy="8" r="8"/>
|
|
</g>
|
|
<style>
|
|
circle {
|
|
animation: circleScale 1.5s infinite ease-in-out;
|
|
transform-origin: 8px 8px;
|
|
}
|
|
circle:nth-child(2) {
|
|
animation-delay: -1s;
|
|
transform-origin: 32px 8px;
|
|
}
|
|
circle:nth-child(3) {
|
|
animation-delay: -0.5s;
|
|
transform-origin: 56px 8px;
|
|
}
|
|
@keyframes circleScale {
|
|
0%, 80%, 100% { transform: scale(0.8); }
|
|
40% { transform: scale(1.0); }
|
|
}
|
|
</style>
|
|
</svg>
|