This commit is contained in:
2026-05-23 17:17:56 -07:00
commit 448f2e33ef
135 changed files with 11817 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60">
<!-- why is it called a throbber? -->
<style>
rect {fill: #323232; animation: a 800ms infinite}
rect:nth-child(1) {animation-delay: 0ms}
rect:nth-child(2) {animation-delay: 100ms}
rect:nth-child(3) {animation-delay: 200ms}
rect:nth-child(4) {animation-delay: 300ms}
rect:nth-child(5) {animation-delay: 400ms}
rect:nth-child(6) {animation-delay: 500ms}
rect:nth-child(7) {animation-delay: 600ms}
rect:nth-child(8) {animation-delay: 700ms}
@keyframes a {
0%, 100% {fill: #323232}
50% {fill: #f0f0f0}
}
</style>
<g>
<rect x="1" y="1" width="18" height="18"/>
<rect x="21" y="1" width="18" height="18"/>
<rect x="41" y="1" width="18" height="18"/>
<rect x="41" y="21" width="18" height="18"/>
<rect x="41" y="41" width="18" height="18"/>
<rect x="21" y="41" width="18" height="18"/>
<rect x="1" y="41" width="18" height="18"/>
<rect x="1" y="21" width="18" height="18"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB