From 1098e75aafc7deefebefe8f42fa7bc129ea22877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Fri, 11 Mar 2022 02:28:54 -0300 Subject: [PATCH] Loader for demos. --- bin/emscripten-fs.html | 33 +++++++++++++++++++++++++++++ src/eepp/ui/uimessagebox.cpp | 1 - src/tools/codeeditor/codeeditor.cpp | 5 +++++ 3 files changed, 38 insertions(+), 1 deletion(-) 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); + } + } +
+ +