diff options
| author | sD <stoned@derpymail.org> | 2020-03-21 13:43:40 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-03-21 13:43:40 +0100 |
| commit | a9ee0711e2b541e7a7bd5ddfeee42e6b9a8f904f (patch) | |
| tree | 99ab55ddc0f39fbb3a3d4fab41267b6e6bf1c91d /webAO/index.html | |
| parent | bd88a72f0cd3cf515b09b943bf9dbee76d2ab5a7 (diff) | |
add viewport, put the info below the list
Diffstat (limited to 'webAO/index.html')
| -rw-r--r-- | webAO/index.html | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/webAO/index.html b/webAO/index.html index 9bd24b7..7f367da 100644 --- a/webAO/index.html +++ b/webAO/index.html @@ -11,6 +11,8 @@ <meta http-equiv="X-Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval' *.aceattorneyonline.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self' ws:;"> <meta http-equiv="X-WebKit-CSP" content="default-src 'self' 'unsafe-inline' 'unsafe-eval' *.aceattorneyonline.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self' ws:;"> + <meta name="viewport" content="width=700, initial-scale=1"> + <link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Oswald%7CRoboto+Condensed" rel="stylesheet"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> @@ -53,25 +55,24 @@ </div> </div> </nav> - <div id="header"> - <p id="serverinfo">Masterserver version - ...</p> - <p id="clientinfo">Client version - ...</p> - <br> - <textarea id="masterchat" readonly></textarea> - </div> - <div id="content"> - <div id="serverdescription_box"> - - <p id="serverdescription_content"> - - </p> - </div> + <div id="serverlist_container"> + <h2>Server List</h2> <ul class="serverlist" id="masterlist"> <li id="server-1" class="unavailable" onmouseover="setServ(-1)"><p>Localhost</p> <a class="button" href="client.html?mode=watch&ip=127.0.0.1:50001">Watch</a> <a class="button" href="client.html?mode=join&ip=127.0.0.1:50001">Join</a> </li> </ul> + <div id="info_container"> + <p id="serverinfo">Masterserver version - ...</p> + <p id="clientinfo">Client version - ...</p> + <br> + <textarea id="masterchat" readonly></textarea> + </div> + </div> + <div id="serverdescription_container"> + <p id="serverdescription_content"> + </p> </div> </body> |
