even more optimizations

This commit is contained in:
Jonas Weinz 2021-08-31 18:40:27 +02:00
parent cb693f7782
commit 5c08922bec
2 changed files with 8 additions and 8 deletions

View File

@ -479,17 +479,17 @@ export class HintBox extends GridBox {
input[type='text']{ input[type='text']{
grid-column: 1; grid-column: 1;
grid-row: 1; grid-row: 1;
width: 1.5em; width: 2em;
height: 1.5em; height: 2em;
text-align: center; text-align: center;
border-style: solid; border-style: solid;
border-color: black; border-color: black;
border-width: 0.2 em; border-width: 0.25 em;
background-color: #555; background-color: #555;
outline: none; outline: none;
color: white; color: white;
text-shadow: 0 0 1 black; text-shadow: 0 0 1 black;
font-size: 2em; font-size: 1.5em;
user-select: none; user-select: none;
text-transform: uppercase; text-transform: uppercase;
} }

View File

@ -42,7 +42,7 @@ export class InfoBox extends LitElement {
right: 0em; right: 0em;
min-height: 8em; min-height: 8em;
border-style: solid; border-style: none;
border-color: white; border-color: white;
border-width: 0.2 em; border-width: 0.2 em;
background-color: #333; background-color: #333;
@ -56,10 +56,10 @@ export class InfoBox extends LitElement {
} }
.button { .button {
background-color: black; background-color: #222;
border-color: white; border-color: white;
border-width: 0.2em; border-width: 0.2em;
border-style: solid; border-style: none;
min-width: 10em; min-width: 10em;
min-height: 3.5em; min-height: 3.5em;
box-shadow: none; box-shadow: none;
@ -105,7 +105,7 @@ export class InfoBox extends LitElement {
</div> </div>
<div class="buttonbox"> <div class="buttonbox">
<button class="button" @click=${this.onNew}> new Crossword </button> <button class="button" @click=${this.onNew}> new Crossword </button>
<button class="button" @click=${this.onShare}> share </button> <button class="button" @click=${this.onShare}> share session</button>
</div> </div>
</div> </div>