diff --git a/bin/emscripten-fs.html b/bin/emscripten-fs.html index c59c711ae..a10d264a6 100644 --- a/bin/emscripten-fs.html +++ b/bin/emscripten-fs.html @@ -25,11 +25,41 @@ image-rendering: pixelated; -ms-interpolation-mode: nearest-neighbor; } + .loader { + width: 48px; + height: 48px; + border-radius: 50%; + display: inline-block; + border-top: 3px solid #3daee9; + border-right: 3px solid transparent; + box-sizing: border-box; + animation: rotation 1s linear infinite; + } + .loader-cont { + display: flex; + width: 100vw; + justify-content: center; + height: 100vh; + align-items: center; + } + @keyframes rotation { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } + }
+