diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-03-16 23:11:54 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2022-03-16 23:11:54 +0100 |
| commit | 7f0eaa80f7a2535ad30c1380546173fd6a60920d (patch) | |
| tree | 6568a06cd60d98a037f2d30c641a6d0394d2f2b5 /webAO/styles/client.css | |
| parent | 34653b82f175af4df5995ce9194fd8ffbaed5015 (diff) | |
add a loading bar and a wrapper for all overlaying "windows"
Diffstat (limited to 'webAO/styles/client.css')
| -rw-r--r-- | webAO/styles/client.css | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 940a1ea..0dfe15c 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -68,20 +68,31 @@ animation: error_blink 3s ease-in-out infinite; } -#client_loading { +#client_waiting { display: block; flex-direction: column; position: fixed; - top: 30vh; - left: 30vw; - width: 40vw; + top: 5vh; + left: 10vw; + width: 80vw; + max-height: 90vh; + justify-content: center; + text-align: center; + align-items: center; + font-size: large; + z-index: 100; + background: #555; +} + +#client_loading { + display: block; + flex-direction: column; justify-content: center; text-align: center; align-items: center; background: black; color: lightgreen; font-size: large; - z-index: 100; } #client_loadingtext { @@ -104,17 +115,11 @@ } #client_charselect { - display: none; - position: fixed; - top: 5vh; - left: 10vw; - width: 80vw; - max-height: 90vh; + display: block; overflow-y: scroll; text-align: center; margin: 0 auto; background: #444; - z-index: 50; } #client_icwrapper { @@ -701,4 +706,4 @@ .hrtext:after { left: 0.5em; margin-right: -50%; -}
\ No newline at end of file +} |
