feat: initial import
This commit is contained in:
commit
03ab1091b1
50 changed files with 1146 additions and 0 deletions
35
assets/css/flex-section.scss
Normal file
35
assets/css/flex-section.scss
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
@use "hugo:vars" as v;
|
||||
|
||||
.flex-section {
|
||||
margin: 48px 95px;
|
||||
}
|
||||
|
||||
.flex-section__title {
|
||||
font-family: "Assistant";
|
||||
font-size: 31px;
|
||||
font-weight: 400;
|
||||
background-clip: text;
|
||||
background-image: linear-gradient(to right, rgb(1, 72, 111), rgb(0, 168, 112));
|
||||
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%;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue