hugo-sr2/assets/css/flex-section.scss

35 lines
692 B
SCSS
Raw Permalink Normal View History

2026-01-10 13:42:14 +00:00
@use "hugo:vars" as v;
.flex-section {
margin: 48px 95px;
}
.flex-section__title {
font-family: "Assistant";
font-size: 31px;
font-weight: 400;
2026-01-10 14:12:25 +00:00
background-clip: text !important;
background: linear-gradient(to right, v.$color_gradient_start, v.$color_gradient_end);
2026-01-10 13:42:14 +00:00
color: transparent;
text-align: center;
}
.flex-section__content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
font-family: "Assistant";
font-size: 17px;
font-weight: 400;
max-width: v.$max_content_width;
margin-left: auto;
margin-right: auto;
@media (max-width: v.$bp_mobile) {
&>* {
flex: 0 0 100%;
}
}
}