mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
21 lines
422 B
HTML
21 lines
422 B
HTML
<input placeholder="Name" type="text" name="text" class="input">
|
|
<style>
|
|
/* From Uiverse.io by ainasoa - Tags: input */
|
|
.input {
|
|
max-width: 210px;
|
|
height: 50px;
|
|
border-radius: 7px;
|
|
border: 0;
|
|
outline: auto grey;
|
|
padding-inline: 15px;
|
|
font-size: 16px;
|
|
transform: all 200ms;
|
|
}
|
|
|
|
.input:focus {
|
|
text-decoration: underline 6px;
|
|
box-shadow: 0 0 50px rgb(255, 255, 255);
|
|
border: 1px solid grey;
|
|
}
|
|
|
|
</style>
|