aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-03-28 23:54:27 +0200
committerGitHub <noreply@github.com>2022-03-28 23:54:27 +0200
commit399fe2deeb2888bebea32f2fc54a6f6f84626ac2 (patch)
tree7e7cbf09c1ce6d2539bb2f33a9c3c86f19ce9d48 /webAO/styles
parentd3911aa9ad6bc16c70355fe11d1377d636b14565 (diff)
parent903a13ff5b5beaaf42b4fcf8965eb55b642e1d2a (diff)
Merge pull request #114 from AttorneyOnline/coolloading
Coolloading
Diffstat (limited to 'webAO/styles')
-rw-r--r--webAO/styles/client.css33
1 files changed, 19 insertions, 14 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css
index 4e0712e..7f72eb1 100644
--- a/webAO/styles/client.css
+++ b/webAO/styles/client.css
@@ -68,20 +68,32 @@
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;
+ overflow-y: scroll;
+ 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 +116,10 @@
}
#client_charselect {
- display: none;
- position: fixed;
- top: 5vh;
- left: 10vw;
- width: 80vw;
- max-height: 90vh;
- overflow-y: scroll;
+ display: block;
text-align: center;
margin: 0 auto;
background: #444;
- z-index: 50;
}
#client_icwrapper {
@@ -703,4 +708,4 @@
.hrtext:after {
left: 0.5em;
margin-right: -50%;
-} \ No newline at end of file
+}