1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/themes/strimertul/assets/scss/landing.scss

65 lines
1.1 KiB
SCSS
Raw Normal View History

2023-01-11 13:36:19 +00:00
.landing {
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
}