mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
25 lines
515 B
HTML
25 lines
515 B
HTML
<input class="input" name="text" placeholder="Search..." type="search">
|
|
<style>
|
|
/* From Uiverse.io by alexruix - Tags: input, search */
|
|
.input {
|
|
max-width: 190px;
|
|
background-color: #f5f5f5;
|
|
color: #242424;
|
|
padding: .15rem .5rem;
|
|
min-height: 40px;
|
|
border-radius: 4px;
|
|
outline: none;
|
|
border: none;
|
|
line-height: 1.15;
|
|
box-shadow: 0px 10px 20px -18px;
|
|
}
|
|
|
|
input:focus {
|
|
border-bottom: 2px solid #5b5fc7;
|
|
border-radius: 4px 4px 2px 2px;
|
|
}
|
|
|
|
input:hover {
|
|
outline: 1px solid lightgrey;
|
|
}
|
|
</style>
|