From 37fdcd78ba9b6bfc4db1369485129e160bb5f67a Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sun, 23 Jan 2022 16:34:57 +0100 Subject: refactor part 2 --- public/style/master.css | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'public') diff --git a/public/style/master.css b/public/style/master.css index b042a1d..a2d0d98 100644 --- a/public/style/master.css +++ b/public/style/master.css @@ -4,6 +4,8 @@ font-family: "Ubuntu", sans-serif; font-weight: 300; color: white; + margin: 0px; + padding: 0px; } :root { @@ -27,17 +29,20 @@ h2 { margin: 1em; } -input[type="button"] { +input[type="button"], +button { padding: 0.5em; margin: 0.25em; background-color: var(--bg-light); border: 0px solid transparent; border-radius: 3px; } -input[type="button"]:hover { +input[type="button"]:hover, +button:hover { background-color: var(--bg-lighter); } -input[type="button"].enabled { +input[type="button"].enabled, +button.enabled { background-color: var(--bg-enabled); } input[type="text"] { @@ -58,14 +63,14 @@ input[type="text"] { } .room { - width: 100vw; - height: 100vh; - display: flex; - justify-content: center; + width: 100%; + height: 100%; + /* display: flex; */ + /* justify-content: center; */ } .user { - display: grid; + /* display: grid; */ background-color: var(--bg); border: 0px soly transparent; border-radius: 5px; -- cgit v1.3