2022-11-10 15:06:02 +00:00
|
|
|
.Search {
|
2023-10-15 12:09:31 +00:00
|
|
|
flex: 1;
|
2023-11-04 15:37:28 +00:00
|
|
|
|
2022-11-10 15:06:02 +00:00
|
|
|
.field {
|
|
|
|
position: relative;
|
2022-11-15 14:24:50 +00:00
|
|
|
background: #fff;
|
2022-11-10 15:06:02 +00:00
|
|
|
border: 2px solid #e8e8e8;
|
|
|
|
border-radius: 2px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
input {
|
|
|
|
display: block;
|
2022-11-27 05:49:48 +00:00
|
|
|
height: 36px;
|
2022-11-10 15:06:02 +00:00
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 10px 36px 10px 12px;
|
|
|
|
width: 100%;
|
|
|
|
font-family: Muller, Arial, Helvetica, sans-serif;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
&::placeholder {
|
|
|
|
color: #858585;
|
|
|
|
font-family: inherit;
|
|
|
|
}
|
2022-11-15 14:24:50 +00:00
|
|
|
|
2022-11-10 15:06:02 +00:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
2022-11-15 14:24:50 +00:00
|
|
|
|
2022-11-10 15:06:02 +00:00
|
|
|
& + .icon {
|
|
|
|
opacity: 0;
|
|
|
|
right: -30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
position: absolute;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2022-11-27 05:49:48 +00:00
|
|
|
top: 10px;
|
2022-11-10 15:06:02 +00:00
|
|
|
right: 12px;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|