diff options
| author | user <user@node5.net> | 2024-05-20 21:56:52 +0200 |
|---|---|---|
| committer | user <user@node5.net> | 2024-05-20 21:56:52 +0200 |
| commit | 981e288dcf4f7f944fc32dacac0a611fa4c48423 (patch) | |
| tree | 41d8863c9ccaf3b44c8dc4821fa4e729605bdc75 /src/static/main.css | |
| parent | 4efae594b6afaa12fa34cc028d0538c278222c58 (diff) | |
css loading indicator
Diffstat (limited to 'src/static/main.css')
| -rw-r--r-- | src/static/main.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/static/main.css b/src/static/main.css index a591298..b47803f 100644 --- a/src/static/main.css +++ b/src/static/main.css @@ -3,3 +3,12 @@ body { margin: 0; } + +#LoadingIndicator { + animation: spin 1.75s linear infinite; +} + +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } +}
\ No newline at end of file |
