mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
34 lines
729 B
HTML
34 lines
729 B
HTML
<label for="usernameField" class="usernamelabel label">Username</label>
|
|
<input type="text" placeholder="@" id="usernameField" required="required">
|
|
<style>
|
|
/* From Uiverse.io by vinodjangid07 - Tags: input */
|
|
.usernamelabel {
|
|
display: block;
|
|
color: white;
|
|
font-size: 14px;
|
|
padding: 5px 5px;
|
|
}
|
|
|
|
#usernameField {
|
|
display: block;
|
|
width: 200px;
|
|
height: 40px;
|
|
background-color: #292929;
|
|
border-radius: 30px;
|
|
border: 2px solid #292929;
|
|
padding: 0px 12px;
|
|
outline: none;
|
|
caret-color: rgb(152, 88, 255);
|
|
color: rgb(212, 212, 212);
|
|
font-size: 12px;
|
|
transition-duration: .2s;
|
|
}
|
|
|
|
#usernameField:focus,
|
|
#usernameField:valid {
|
|
border: 2px solid rgb(152, 88, 255);
|
|
transition-duration: .2s;
|
|
}
|
|
|
|
|
|
</style>
|