mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
36 lines
733 B
HTML
36 lines
733 B
HTML
<input type="text" name="text" class="input" placeholder="Username">
|
|
<style>
|
|
/* From Uiverse.io by JaydipPrajapati1910 - Tags: input, transparent, input effect , box-shadow */
|
|
.input {
|
|
max-width: 190px;
|
|
border: none;
|
|
outline: none;
|
|
background: none;
|
|
font-size: 18px;
|
|
color: #222;
|
|
padding: 15px 5px 10px 20px;
|
|
box-shadow: inset 4px 4px 4px rgba(15, 15, 15, 0.315),4px 4px 4px rgba(28, 28, 28, 0.13);
|
|
border-radius: 25px;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
.input:focus {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.input::placeholder {
|
|
color: #222;
|
|
text-transform: uppercase;
|
|
transition: all 0.3s ease;
|
|
font-size: 19px;
|
|
font-weight: 700;
|
|
letter-spacing: .3px;
|
|
}
|
|
|
|
.input:focus::placeholder {
|
|
color: #999;
|
|
}
|
|
|
|
|
|
|
|
</style>
|