mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
31 lines
No EOL
882 B
HTML
31 lines
No EOL
882 B
HTML
<div class="password">
|
|
<input maxlength="1" value="5" class="input" name="text" type="text" />
|
|
<input maxlength="1" value="7" class="input" name="text" type="text" />
|
|
<input maxlength="1" value="1" class="input" name="text" type="text" />
|
|
<input maxlength="1" value="6" class="input" name="text" type="text" />
|
|
<input maxlength="1" value="3" class="input" name="text" type="text" />
|
|
<input maxlength="1" value="2" class="input" name="text" type="text" />
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by barisdogansutcu - Tags: input, password, key */
|
|
.password {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
}
|
|
.password input {
|
|
width: 30px;
|
|
height: 40px;
|
|
text-align: center;
|
|
background-color: transparent;
|
|
border: none;
|
|
border-bottom: solid 2px rgb(20, 181, 230);
|
|
font-size: 20px;
|
|
color: white;
|
|
outline: none;
|
|
}
|
|
|
|
</style>
|
|
|