1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-10-16 05:37:28 +00:00

Imrpove form and input rendering even more

This commit is contained in:
Steffo 2023-02-17 05:14:20 +01:00
parent b98efc2368
commit 2cd6aab891
Signed by: steffo
GPG key ID: 2A24051445686895
2 changed files with 13 additions and 1 deletions

View file

@ -1737,6 +1737,9 @@
</div>
<span></span>
</div>
<p>
Finally, some more flavour questions:
</p>
<label>
<span>Lazyness 0%</span>
<input type="range">
@ -1752,6 +1755,13 @@
<input type="text" placeholder="Not at all">
<span>Right alignment</span>
</label>
<div class="form-flex-choice">
<span>Your bets</span>
<input type="text" placeholder="1st">
<input type="text" placeholder="2nd">
<input type="text" placeholder="3rd">
<span></span>
</div>
<p>
Finally, you can submit the form, and see whether you'll be accepted or not:
</p>

View file

@ -590,6 +590,8 @@
// Align all inputs to the middle
vertical-align: middle;
// Remove default input minimum width
min-width: 0;
// By default, no borders should be present
border-width: 0;
@ -807,7 +809,7 @@
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
align-items: stretch;
gap: 1ex;
}