mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 03:24:20 +00:00
Imrpove form and input rendering even more
This commit is contained in:
parent
b98efc2368
commit
2cd6aab891
2 changed files with 13 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue