Files
TechRadarAJR/styles/components/search.css
2017-03-08 22:47:14 +01:00

39 lines
623 B
CSS

.search {
box-sizing: border-box;
width: 600px;
height: 50px;
position: relative;
margin: 0;
padding: 0;
&__field {
height: 100%;
width: 100%;
padding: 10px 120px 10px 20px;
background: #3A444A;
display: block;
border: none;
color: var(--color-white);
font-size: 16px;
line-height: 1;
font-family: 'DIN';
font-weight: normal;
&::placeholder {
color: var(--color-gray-normal);
}
&:focus {
outline: none;
background: #2F393F;
}
}
&__button {
position: absolute;
top: 50%;
margin-top: -18px;
right: 7px;
}
}