mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-03-21 04:27:48 +00:00
68 lines
1.0 KiB
SCSS
68 lines
1.0 KiB
SCSS
#ourwork-banner {
|
|
margin : 5rem 0;
|
|
|
|
a {
|
|
display : flex;
|
|
justify-content : center;
|
|
}
|
|
|
|
}
|
|
|
|
#ourwork-done {
|
|
|
|
.work-item {
|
|
padding : 1rem;
|
|
margin : 7rem 0;
|
|
display : flex;
|
|
flex-direction : row;
|
|
max-height : 75vh;
|
|
|
|
.description {
|
|
flex : 2;
|
|
|
|
h3 {
|
|
overflow : hidden;
|
|
text-overflow : ellipsis;
|
|
}
|
|
}
|
|
|
|
.thumbnail {
|
|
flex : 3;
|
|
display : flex;
|
|
justify-content : center;
|
|
align-items : center;
|
|
}
|
|
|
|
img {
|
|
display : block;
|
|
width : auto;
|
|
height : auto;
|
|
max-height : 50vh;
|
|
}
|
|
|
|
h2, h3 {
|
|
text-align : center;
|
|
margin-bottom : 0.3rem;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
@media (max-width : 900px) {
|
|
|
|
#ourwork-done {
|
|
|
|
.work-item {
|
|
flex-direction : column;
|
|
max-height : none;
|
|
}
|
|
}
|
|
|
|
#ourwork-banner {
|
|
h1 {
|
|
font-size : 3.6rem;
|
|
}
|
|
|
|
}
|
|
}
|