feat: improve anchor and header styling

This commit is contained in:
Price Hiller 2023-08-29 21:46:59 -05:00
parent 95db1c2984
commit 0289a94102
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -193,6 +193,14 @@ img {
border-radius: 15px;
}
.anchor {
text-decoration: none;
}
.anchor:visited, .anchor:link, .anchor:active {
color: var(--boatYellow2)
}
h1,
h2,
h3,
@ -205,6 +213,30 @@ h6 {
margin-bottom: 5px;
}
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1.4rem;
}
h4 {
font-size: 1.3rem;
}
h5 {
font-size: 1.2rem;
}
h6 {
font-size: 1.1rem;
}
a:link {
color: var(--crystalBlue);
}