gix h2,h3,h4 sizing in markdown files
continuous-integration/drone/push Build is passing Details

This commit is contained in:
catherine-w 2021-10-08 20:00:49 -04:00
parent e72940aaae
commit a5bcb38ed6
1 changed files with 16 additions and 0 deletions

View File

@ -57,6 +57,14 @@
fill: var(--primary-accent); fill: var(--primary-accent);
} }
.card h2,
.card h3,
.card h4 {
font-size: calc(16rem / 16);
margin-top: calc(24rem / 16);
margin-bottom: calc(8rem / 16);
}
@media only screen and (max-width: calc(768rem / 16)) { @media only screen and (max-width: calc(768rem / 16)) {
.details { .details {
bottom: 0; bottom: 0;
@ -76,4 +84,12 @@
.nameSpacer { .nameSpacer {
display: none; display: none;
} }
.card h2,
.card h3,
.card h4 {
font-size: calc(18rem / 16);
margin-top: calc(24rem / 16);
margin-bottom: calc(8rem / 16);
}
} }