File size: 968 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 |
.banner {
background: url("https://media.cntraveler.com/photos/5db1d0dd11c1e500092e7133/master/pass/airbnb-ski-aspen-28328347.jpg") center center;
height: 50vh;
position: relative;
}
.banner__info {
background-color: black;
color: white;
padding-top: 25vh;
padding-left: 50px;
padding-right: 50px;
padding-bottom: 40px;
width: 300px;
}
.banner__search {
display: flex;
flex-direction: column;
}
.banner__searchButton {
background-color: white !important;
font-weight: 900 !important;
text-transform: inherit !important;
color: #ff7779 !important;
}
.banner__info > button {
background-color: #ff7779;
color: white;
text-transform: inherit;
margin-top: 20px;
font-weight: 600;
}
.banner__info > button:hover {
background-color: white;
color: #ff7779;
}
.banner__info > h5 {
margin-top: 10px;
} |