jl-frontend/css/search.css

145 lines
2.8 KiB
CSS
Raw Normal View History

2023-03-15 13:20:17 +00:00
.project-search-container {
2023-03-15 13:20:17 +00:00
display: flex;
flex-direction: column;
justify-content: stretch;
align-items: center;
2023-03-16 17:16:22 +00:00
padding: 0px 30px;
margin-top: 30px;
2023-03-15 13:20:17 +00:00
}
.project-search-filters-container {
2023-03-15 13:20:17 +00:00
display: flex;
flex-direction: column;
gap: 25px;
justify-content: stretch;
flex-wrap: wrap;
align-items: stretch;
2023-03-15 13:20:17 +00:00
width: 100%;
}
.project-search-filter-container {
2023-03-15 13:20:17 +00:00
display: flex;
flex-direction: column;
2023-03-15 13:20:17 +00:00
justify-content: center;
align-items: start;
gap: 10px;
2023-03-15 13:20:17 +00:00
}
.project-search-filter-label {
font-size: 16px;
font-weight: bold;
font-family: Source Sans Pro;
2023-03-15 13:20:17 +00:00
}
.project-search-filter-item {
2023-03-15 13:20:17 +00:00
display: flex;
flex-direction: row;
justify-content: center;
2023-03-15 13:20:17 +00:00
align-items: center;
min-width: 150px;
2023-03-15 13:20:17 +00:00
width: 100%;
min-height: 50px;
2023-03-15 13:20:17 +00:00
padding: 5px 10px;
border: 1px solid rgba(0, 0, 0, 0.0);
background-color: rgba(0, 0, 0, 0.04);
2023-03-15 13:20:17 +00:00
border-radius: 5px;
font-family: Source Sans Pro;
font-size: 16px;
}
2023-03-15 13:20:17 +00:00
.project-search-divider {
width: 100%;
2023-03-16 17:16:22 +00:00
margin: 35px 20px;
height: 1px;
background-color:rgba(0, 0, 0, 0.1);
2023-03-15 13:20:17 +00:00
}
2023-03-16 17:16:22 +00:00
/* Results */
.project-search-results-container {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
2023-03-16 17:16:22 +00:00
margin-bottom: 50px;
gap: 30px;
2023-03-15 13:20:17 +00:00
}
.project-search-result-card {
background-color: white;
2023-03-16 17:16:22 +00:00
height: 530px;
width: 390px;
min-width: 80%;
display: flex;
flex-direction: column;
justify-content: stretch;
align-items: center;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
gap: 6px;
}
@media only screen and (max-width: 400px) {
.project-search-result-card {
width: 90%;
}
}
.project-search-result-card:hover {
cursor: pointer;
border: 2px solid #252631;
transition-duration: 0.3s;
}
.project-search-result-card-picture {
width: 100%;
height: 390px;
background-color: rgba(0, 0, 0, 0.3);
object-fit: cover;
}
.project-search-result-card-title {
font-size: 18px;
font-family: Inter;
font-weight: 50;
text-transform: uppercase;
padding-top: 5px;
2023-03-15 13:20:17 +00:00
}
2023-03-16 17:16:22 +00:00
.project-search-result-card-location {
font-size: 14px;
font-family: Inter;
font-weight: 50;
text-transform: uppercase;
}
.project-search-result-card-price {
font-size: 21px;
font-family: Inter;
font-weight: bold;
text-transform: uppercase;
}
.project-search-result-card-details-container {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
width: 100%;
padding-top: 4px;
}
.project-search-result-card-details-item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: rgba(0, 0, 0, 0.3);
font-size: 14px;
gap: 3px;
}