File size: 794 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
.rmdb-searchbar {
width: 100%;
height: 105px;
background: #1c1c1c;
position: relative;
padding: 25px 20px 0px 20px;
box-sizing: border-box;
color: #fff;
}
.rmdb-searchbar-content {
max-width: 1280px;
width: 100%;
height: 55px;
background:#353535;
margin: 0 auto;
border-radius: 40px;
position: relative;
color: #fff;
}
.rmdb-fa-search {
position: absolute;
left: 20px;
top: 12px;
color: #fff;
}
.rmdb-searchbar-input {
font-family: 'Abel', sans-serif;
font-size: 38px;
position: absolute;
left: 70px;
top: 7px;
border: 0;
background: transparent;
height: 40px;
color: #fff;
}
.rmdb-searchbar-input:focus {
outline: none;
}
@media screen and (max-width: 720px) {
.rmdb-searchbar-input {
font-size: 28px;
color: #fff;
}
} |