realtor-lp-frontend/css/components/page/search.css

138 lines
2.4 KiB
CSS

.search-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
height: 62vw;
background-color: #E3F0FF;
background-size: cover;
object-fit: cover;
}
.search-bar-container {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
}
.search-bar-arrangement-type-picker-container {
display: flex;
flex-direction: row;
justify-content: start;
align-items: end;
width: 100%;
margin-left: 15px;
margin-bottom: -5px;
gap: 2.5px;
font-family: Ubuntu;
font-style: normal;
font-weight: 700;
font-size: 10px;
line-height: 14px;
text-align: center;
}
.search-bar-arrangement-type-picker-selected {
display: flex;
justify-content: center;
align-items: center;
width: 55px;
height: 35px;
color: black;
background-color: white;
border: 0.4px solid #26306B;
border-radius: 5px;
}
.search-bar-arrangement-type-picker {
display: flex;
justify-content: center;
align-items: center;
width: 55px;
height: 35px;
color: white;
background-color: #26306B;
border: 0.4px solid #26306B;
border-radius: 5px;
}
.search-bar-arrangement-type-picker:hover { cursor: pointer; }
.search-bar-area-container {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
background-color: #FEFEFE;
width: 400px;
height: 55px;
border-radius: 5px;
}
.search-bar-area-location-picker {
width: 150px;
color: black;
opacity: 0.6;
text-align: center;
font-size: 12px;
}
.search-bar-area-separator {
width: 0.7px;
height: 70%;
background-color: black;
opacity: 0.6;
}
.search-bar-area-text-search {
width: 180px;
color: black;
opacity: 0.6;
text-align: center;
font-size: 12px;
}
.search-bar-area-filter-toggle {
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
color: #26306B;
font-size: 17px;
}
.search-bar-area-filter-toggle:hover {
cursor: pointer;
}
.search-bar-area-go-button {
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
font-size: 17px;
color: white;
border-radius: 5px;
background-color: #26306B;
}
.search-bar-area-go-button:hover {
cursor: pointer;
}