From 5c08922bec1a3dfea2c633624140406a1ac6bde2 Mon Sep 17 00:00:00 2001 From: Jonas Weinz Date: Tue, 31 Aug 2021 18:40:27 +0200 Subject: [PATCH] even more optimizations --- js_client/gridBoxes.js | 8 ++++---- js_client/infoBox.js | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/js_client/gridBoxes.js b/js_client/gridBoxes.js index f9eed3e..316a618 100644 --- a/js_client/gridBoxes.js +++ b/js_client/gridBoxes.js @@ -479,17 +479,17 @@ export class HintBox extends GridBox { input[type='text']{ grid-column: 1; grid-row: 1; - width: 1.5em; - height: 1.5em; + width: 2em; + height: 2em; text-align: center; border-style: solid; border-color: black; - border-width: 0.2 em; + border-width: 0.25 em; background-color: #555; outline: none; color: white; text-shadow: 0 0 1 black; - font-size: 2em; + font-size: 1.5em; user-select: none; text-transform: uppercase; } diff --git a/js_client/infoBox.js b/js_client/infoBox.js index 3e1cc84..890bed2 100644 --- a/js_client/infoBox.js +++ b/js_client/infoBox.js @@ -42,7 +42,7 @@ export class InfoBox extends LitElement { right: 0em; min-height: 8em; - border-style: solid; + border-style: none; border-color: white; border-width: 0.2 em; background-color: #333; @@ -56,10 +56,10 @@ export class InfoBox extends LitElement { } .button { - background-color: black; + background-color: #222; border-color: white; border-width: 0.2em; - border-style: solid; + border-style: none; min-width: 10em; min-height: 3.5em; box-shadow: none; @@ -105,7 +105,7 @@ export class InfoBox extends LitElement {
- +