mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
43 lines
No EOL
828 B
HTML
43 lines
No EOL
828 B
HTML
<div class="input-field">
|
|
<input required="" name="text" type="text" />
|
|
<label>Enter your email</label>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by elijahgummer - Tags: animation, white, black, input, dark, text animation, transition, click effect */
|
|
.input-field {
|
|
position: relative;
|
|
border-bottom: 2px solid #f0f424;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.input-field label {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
transform: translateY(-50%);
|
|
color: #fff;
|
|
font-size: 16px;
|
|
pointer-events: none;
|
|
transition: 0.15s ease;
|
|
}
|
|
|
|
.input-field input {
|
|
width: 100%;
|
|
height: 40px;
|
|
background: transparent;
|
|
border: none;
|
|
outline: none;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
}
|
|
|
|
.input-field input:focus ~ label,
|
|
.input-field input:valid ~ label {
|
|
font-size: 0.8rem;
|
|
top: 10px;
|
|
transform: translateY(-120%);
|
|
}
|
|
|
|
</style>
|
|
|