galaxy/Inputs/ErzenXz_horrible-rattlesnake-14.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>