fix: adjust hr opacity, make "gimme" button smaller

master
Tomáš Mládek 2022-07-10 17:11:17 +02:00
parent 51640f1672
commit 198fec613a
1 changed files with 6 additions and 1 deletions

View File

@ -112,7 +112,7 @@
<button {disabled} on:click={add}>ADD</button> <button {disabled} on:click={add}>ADD</button>
</div> </div>
<hr /> <hr />
<button on:click={random}>JUST GIMME</button> <button class="gimme" on:click={random}>JUST GIMME</button>
<hr /> <hr />
<a href="https://kunsaxan.sdbs.cz">ksx</a> <a href="https://kunsaxan.sdbs.cz">ksx</a>
</main> </main>
@ -165,6 +165,10 @@
cursor: pointer; cursor: pointer;
} }
.gimme {
transform: scale(.66);
}
button:focus { button:focus {
border: 2px solid white; border: 2px solid white;
} }
@ -181,6 +185,7 @@
hr { hr {
height: 2px; height: 2px;
background-color: white; background-color: white;
opacity: .66;
border: none; border: none;
width: 420px; width: 420px;
} }