mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
33 lines
593 B
SCSS
33 lines
593 B
SCSS
|
.landing {
|
||
|
.maxw {
|
||
|
max-width: 1000px;
|
||
|
margin: 0 auto;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.features {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: stretch;
|
||
|
justify-content: stretch;
|
||
|
padding: 20px 0;
|
||
|
|
||
|
article {
|
||
|
&:nth-child(odd) {
|
||
|
background-color: $gray2;
|
||
|
}
|
||
|
padding: 10px;
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-content: flex-start;
|
||
|
header {
|
||
|
display: flex;
|
||
|
align-items: flex-end;
|
||
|
font-weight: bold;
|
||
|
font-size: 18px;
|
||
|
padding-top: 10px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|