Personal-site/components/modules/CaseSection.module.css

56 lines
751 B
CSS
Raw Permalink Normal View History

.content {
height: 100%;
position: relative;
z-index: 1;
padding: 4rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
.title {
color: var(--primary);
margin-bottom: 8rem;
}
.cardRow {
width: 100%;
align-self: center;
display: flex;
justify-content: space-evenly;
align-items: center;
}
2020-06-14 14:45:20 +00:00
@media screen and (max-width: 1440px) {
2020-06-14 14:59:50 +00:00
.content {
padding: 2rem;
}
.cardRow {
flex-direction: column;
}
2020-06-14 14:59:50 +00:00
.title {
margin-bottom: 2rem;
}
}
@media screen and (max-width: 840px) {
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.infosHolder {
margin: 2rem auto 8rem auto;
}
}