From c227260e83781b890cd8508376534f2298ca3e04 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Mon, 30 May 2016 13:51:31 +0200 Subject: added spectator mode --- client.css | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'client.css') diff --git a/client.css b/client.css index 89ff60a..a2c66e5 100644 --- a/client.css +++ b/client.css @@ -29,11 +29,13 @@ img { } #client_loading { - position: fixed; - width: 100%; - height: 100%; - overflow:hidden; - margin: 0 auto; + position: absolute; + width: 90vw; + height: 30vh; + top: 50%; + left: 50%; + margin-right: -50%; + transform: translate(-50%, -50%); justify-content: center; display: flex; align-items: center; @@ -52,14 +54,13 @@ img { } #client_charselect { - position: fixed; + position: absolute; top: 0; left: 0; width: 100%; - height: 100%; overflow: hidden; justify-content: center; - display: flex; + display: none; align-items: center; vertical-align: middle; margin: 0 auto; @@ -83,7 +84,6 @@ img { } #client_wrapper { - display: none; position: absolute; top: 0; left: 0; @@ -106,9 +106,9 @@ img { } #client_settings { - position: relative; - top: 10px; - width: 95%; + position: absolute; + top: 100%; + width: 60%; } .area_btn { @@ -193,7 +193,6 @@ input { } #client_chatlog { - display: none; width: 244px; height: 100%; background: #dbdbdb url("misc/chat2.png") no-repeat; -- cgit