mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
20 lines
517 B
HTML
20 lines
517 B
HTML
<input type="text" autocomplete="off" name="text" class="input" placeholder="Username">
|
|
<style>
|
|
/* From Uiverse.io by Praashoo7 - Tags: neumorphism, input, smooth */
|
|
.input {
|
|
border: none;
|
|
outline: none;
|
|
border-radius: 15px;
|
|
padding: 1em;
|
|
background-color: #ccc;
|
|
box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
|
|
transition: 300ms ease-in-out;
|
|
}
|
|
|
|
.input:focus {
|
|
background-color: white;
|
|
transform: scale(1.05);
|
|
box-shadow: 13px 13px 100px #969696,
|
|
-13px -13px 100px #ffffff;
|
|
}
|
|
</style>
|