fix: adjust hr opacity, make "gimme" button smaller
This commit is contained in:
parent
51640f1672
commit
198fec613a
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue