mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
16 lines
374 B
HTML
16 lines
374 B
HTML
<input placeholder="Username" class="input" name="text" type="text">
|
|
<style>
|
|
/* From Uiverse.io by garerim - Tags: neumorphism, input */
|
|
.input {
|
|
margin: 30px;
|
|
background: none;
|
|
border: none;
|
|
outline: none;
|
|
max-width: 190px;
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
border-radius: 9999px;
|
|
box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
|
|
color: #fff;
|
|
}
|
|
</style>
|