48 lines
1.0 KiB
SCSS
48 lines
1.0 KiB
SCSS
.projects-page {
|
|
.filter-panel {
|
|
display: flex;
|
|
position: static;
|
|
flex-direction: column;
|
|
background-color: white;
|
|
align-items: center;
|
|
padding: 1rem;
|
|
width: 40vw;
|
|
border-radius: 12px;
|
|
margin-bottom: 2rem;
|
|
transition: align-items 1s ease,
|
|
position 1s ease
|
|
;
|
|
|
|
.filter-controls {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
.project-cards {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 2rem;
|
|
|
|
> * {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: lightblue;
|
|
width: 80%;
|
|
height: auto;
|
|
margin-bottom: 2rem;
|
|
.links {
|
|
display: flex;
|
|
width: 75%;
|
|
align-items: baseline;
|
|
justify-content: space-around;
|
|
}
|
|
a:last-child {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
}
|
|
} |