Highlight cliked anchor on the page.

This commit is contained in:
Danila Fedorin 2022-01-01 20:12:50 -08:00
parent 9b0c70ac05
commit f4d4f4e5d7
1 changed files with 9 additions and 0 deletions

View File

@ -21,6 +21,11 @@ h1, h2, h3, h4, h5, h6 {
font-weight: normal;
text-align: center;
&:target {
background-color: lighten(yellow, 30%);
border-radius: 1rem;
}
a {
border-bottom: none;
@ -229,6 +234,10 @@ figure {
text-align: center;
}
&.fullwide img {
max-width: 100%;
}
&.tiny img {
max-height: 15rem;
}