quartz/assets/styles/index.scss
2022-09-06 12:04:02 -04:00

67 lines
1.2 KiB
SCSS

.index-container {
margin-top: 64px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-top: 32px;
&-title {
font-size: 48px;
font-weight: 600;
margin: 4px 4px;
}
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 24px;
&-title {
text-align: center;
font-size: 48px;
font-weight: 600;
margin: 4px 4px;
}
&-subtitle {
text-align: center;
font-size: 20px;
font-weight: 600;
margin: 4px 4px;
}
}
.embed {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 8px;
gap: 32px;
}
.feature {
display: flex;
flex-direction: column;
&-title {
font-size: 36px;
font-weight: 600;
margin: 12px 4px;
}
&-subtitle {
font-size: 20px;
font-weight: 600;
margin: 4px 4px;
}
&-big {
//flex grow ratio 1:2
flex-grow: 2;
}
&-small {
//flex grow ratio 1:2
flex-grow: 1;
}
}