2023-01-11 13:36:19 +00:00
|
|
|
.landing {
|
2024-04-20 23:20:54 +00:00
|
|
|
.hero.maxw {
|
|
|
|
padding: 0 10pt;
|
|
|
|
}
|
2023-02-06 11:44:41 +00:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
gap: 30px;
|
|
|
|
padding: 10px 0;
|
|
|
|
.flex-copy {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.landing-point {
|
|
|
|
width: 300px;
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
|
|
@media only screen and (max-width: $mobile) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2023-01-11 13:36:19 +00:00
|
|
|
.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;
|
2023-02-06 11:44:41 +00:00
|
|
|
font-size: 20px;
|
2023-01-11 13:36:19 +00:00
|
|
|
padding-top: 10px;
|
2023-02-06 11:44:41 +00:00
|
|
|
padding-bottom: 5px;
|
2023-01-11 13:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-19 20:17:13 +00:00
|
|
|
|
|
|
|
.download-list {
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5rem;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $teal12;
|
|
|
|
background-color: $teal8;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 8px;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 100ms;
|
|
|
|
&:hover {
|
|
|
|
color: white;
|
|
|
|
background-color: $teal9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-11 13:36:19 +00:00
|
|
|
}
|