mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
23 lines
573 B
HTML
23 lines
573 B
HTML
<input placeholder="First name" class="input" name="firstName" type="text">
|
|
<style>
|
|
/* From Uiverse.io by lenfear23 - Tags: neumorphism, input */
|
|
.input {
|
|
max-width: 200px;
|
|
min-height: 40px;
|
|
padding: 10px;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
outline: none;
|
|
background: #e8e8e8;
|
|
box-shadow: 5px 5px 17px #c8c8c8,
|
|
-5px -5px 17px #ffffff;
|
|
border: none;
|
|
border-radius: 10px;
|
|
transition: all .5s;
|
|
}
|
|
|
|
.input:focus {
|
|
background: #e8e8e8;
|
|
box-shadow: inset 5px 5px 17px #c8c8c8,
|
|
inset -5px -5px 17px #ffffff;
|
|
}
|
|
</style>
|