jl-frontend/css/search.css

72 lines
1.3 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;
padding: 30px 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%;
margin: 35px 30px;
height: 1px;
background-color:rgba(0, 0, 0, 0.1);
2023-03-15 13:20:17 +00:00
}
.project-search-results-container {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
2023-03-15 13:20:17 +00:00
}
.project-search-result-card {
background-color: white;
2023-03-15 13:20:17 +00:00
}