mirror of
https://github.com/ipdb/website.git
synced 2024-11-13 16:54:50 +01:00
67 lines
1001 B
SCSS
67 lines
1001 B
SCSS
@import 'variables';
|
|
|
|
.section--intro {
|
|
.section__description {
|
|
margin-bottom: $spacer * 2;
|
|
}
|
|
}
|
|
|
|
.feature {
|
|
padding-top: $spacer;
|
|
padding-bottom: $spacer;
|
|
|
|
&:first-child {
|
|
padding-top: $spacer * 2;
|
|
}
|
|
}
|
|
|
|
.feature__image {
|
|
margin: 0;
|
|
background: $brand-05;
|
|
padding: $spacer;
|
|
padding-bottom: 0;
|
|
border-radius: 1rem;
|
|
min-height: 9rem;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
|
|
svg {
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.feature__title {
|
|
font-size: $font-size-h4;
|
|
margin-bottom: $spacer / 2;
|
|
}
|
|
|
|
.connect__title {
|
|
font-size: $font-size-h3;
|
|
}
|
|
|
|
.articles {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.article {
|
|
@media ($screen-sm) {
|
|
flex: 0 0 45%;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
.article__title {
|
|
font-size: $font-size-h6;
|
|
margin-top: 0;
|
|
}
|