mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
34 lines
786 B
HTML
34 lines
786 B
HTML
<div class="InputContainer">
|
|
<input placeholder="Search.." id="input" class="input" name="text" type="text">
|
|
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by vinodjangid07 - Tags: gradient, input, search */
|
|
.InputContainer {
|
|
width: 210px;
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(to bottom,rgb(227, 213, 255),rgb(255, 231, 231));
|
|
border-radius: 30px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
.input {
|
|
width: 200px;
|
|
height: 40px;
|
|
border: none;
|
|
outline: none;
|
|
caret-color: rgb(255, 81, 0);
|
|
background-color: rgb(255, 255, 255);
|
|
border-radius: 30px;
|
|
padding-left: 15px;
|
|
letter-spacing: 0.8px;
|
|
color: rgb(19, 19, 19);
|
|
font-size: 13.4px;
|
|
}
|
|
|
|
</style>
|