mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
25 lines
478 B
HTML
25 lines
478 B
HTML
<input placeholder="Search..." class="input" name="text" type="text">
|
|
<style>
|
|
/* From Uiverse.io by laminelawal - Tags: input, html */
|
|
.input {
|
|
padding: 10px;
|
|
width: 120px;
|
|
border: none;
|
|
outline: none;
|
|
border-radius: 5px;
|
|
box-shadow: 0 1px gray;
|
|
font-size: 18px;
|
|
transition: width 0.3s;
|
|
font-family: Consolas,monaco,monospace;
|
|
}
|
|
|
|
.input:focus {
|
|
outline: 1px solid blue;
|
|
box-shadow: none;
|
|
width: 230px;
|
|
}
|
|
|
|
.input::placeholder {
|
|
color: blue;
|
|
}
|
|
</style>
|