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']{
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;
}

View File

@ -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 {
</div>
<div class="buttonbox">
<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>