2022-07-06 22:03:47 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-21 10:33:35 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|