mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
28 lines
568 B
HTML
28 lines
568 B
HTML
<input placeholder="Searth the internet..." type="text" name="text" class="input">
|
|
<style>
|
|
/* From Uiverse.io by ErzenXz - Tags: input, search */
|
|
.input {
|
|
width: 100%;
|
|
max-width: 220px;
|
|
height: 45px;
|
|
padding: 12px;
|
|
border-radius: 12px;
|
|
border: 1.5px solid lightgrey;
|
|
outline: none;
|
|
transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
|
|
box-shadow: 0px 0px 20px -18px;
|
|
}
|
|
|
|
.input:hover {
|
|
border: 2px solid lightgrey;
|
|
box-shadow: 0px 0px 20px -17px;
|
|
}
|
|
|
|
.input:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
.input:focus {
|
|
border: 2px solid grey;
|
|
}
|
|
</style>
|