mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
20 lines
420 B
HTML
20 lines
420 B
HTML
<input type="text" name="text" class="input" placeholder="Type...">
|
|
<style>
|
|
/* From Uiverse.io by ozgeozkaraa01 - Tags: input */
|
|
.input {
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
height: 40px;
|
|
border-radius: 10px;
|
|
padding-left: 10px;
|
|
border: none;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
outline: none;
|
|
}
|
|
|
|
.input:focus {
|
|
border-bottom: 1px solid #6941c6;
|
|
-webkit-transition: 0.1s;
|
|
transition: 0.5s;
|
|
}
|
|
</style>
|