diff options
| author | sD <stoned@derpymail.org> | 2020-03-21 12:52:16 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-03-21 12:52:16 +0100 |
| commit | a4d59759108c1ae42b301e8199b55e6aacff5850 (patch) | |
| tree | 280a5fcfa18913f821f1cfb0755e33bca6b80f62 | |
| parent | e45a35ed1109e62f5ddcaf8c19d9531d5ec4ddcb (diff) | |
move style to css file
| -rw-r--r-- | webAO/index.html | 2 | ||||
| -rw-r--r-- | webAO/styles/master.css | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/webAO/index.html b/webAO/index.html index e3de2ce..9bd24b7 100644 --- a/webAO/index.html +++ b/webAO/index.html @@ -57,7 +57,7 @@ <p id="serverinfo">Masterserver version - ...</p> <p id="clientinfo">Client version - ...</p> <br> - <textarea id="masterchat" style="width: 260px; height: 260px; font-size: inherit;" readonly></textarea> + <textarea id="masterchat" readonly></textarea> </div> <div id="content"> <div id="serverdescription_box"> diff --git a/webAO/styles/master.css b/webAO/styles/master.css index ee16429..5cfc6f3 100644 --- a/webAO/styles/master.css +++ b/webAO/styles/master.css @@ -41,6 +41,14 @@ font-size: 0.8em; } +#masterchat { + width: 260px; + height: 260px; + font-size: inherit; + background-color: darkgrey; + color: black; +} + #serverdescription_box { display: inline-block; position: fixed; |
