mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
19 lines
517 B
HTML
19 lines
517 B
HTML
<input type="text" placeholder="Write here..." name="text" class="input">
|
|
<style>
|
|
/* From Uiverse.io by cohencoo - Tags: input */
|
|
.input {
|
|
border-radius: 10px;
|
|
outline: 2px solid #FEBF00;
|
|
border: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
background-color: #e2e2e2;
|
|
outline-offset: 3px;
|
|
padding: 10px 1rem;
|
|
transition: 0.25s;
|
|
}
|
|
|
|
.input:focus {
|
|
outline-offset: 5px;
|
|
background-color: #fff
|
|
}
|
|
</style>
|