portfolio/assets/styles/components/typography.scss

43 lines
597 B
SCSS

p {
line-height: 1.45em;
margin-bottom: 1em;
}
h1 {
font-size: xx-large;
margin-bottom: 1em;
}
h2 {
font-size: x-large;
margin-bottom: .5em;
}
h3 {
font-size: large;
}
.section-title {
display: grid;
font-size: 1.2em;
grid-template-columns: auto 1fr;
margin-bottom: 1em;
margin-top: 1.3em;
.title-text {
color: black;
display: flex;
align-items: center;
}
&::before {
$square-size: 10px;
margin: 8px 15px 8px 8px;
content: '';
width: $square-size;
height: $square-size;
display: block;
background-color: $primary;
}
}