mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
23 lines
479 B
HTML
23 lines
479 B
HTML
<input class="input" placeholder="text">
|
|
<style>
|
|
/* From Uiverse.io by shadowmurphy - Tags: blue, input, search */
|
|
.input {
|
|
border: 2px solid transparent;
|
|
width: 15em;
|
|
height: 2.5em;
|
|
padding-left: 0.8em;
|
|
outline: none;
|
|
overflow: hidden;
|
|
background-color: #F3F3F3;
|
|
border-radius: 10px;
|
|
transition: all 0.5s;
|
|
}
|
|
|
|
.input:hover,
|
|
.input:focus {
|
|
border: 2px solid #4A9DEC;
|
|
box-shadow: 0px 0px 0px 7px rgb(74, 157, 236, 20%);
|
|
background-color: white;
|
|
}
|
|
|
|
</style>
|