Skip to content

Commit

Permalink
Merge pull request #6 from frostu8/fix-footnote-styles
Browse files Browse the repository at this point in the history
fix footnote styles
  • Loading branch information
frostu8 authored Dec 14, 2024
2 parents 03a19ea + 5e93b18 commit 501a3ab
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions style/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $fg-secondary-dark: #660000;
$fg-accent: #FFF3B0;

// different link color accessibility
$fg-link: #EE8689;
$fg-text-accent: #EE8689;

@use "account/login";
@use "sidebar";
Expand Down Expand Up @@ -67,11 +67,19 @@ main {
margin: 16px 0;
}

blockquote {
// use padding instead of margin for blockquote
margin-left: 0;
padding-left: 2.5em;

border-left: 4px solid $fg-text-accent;
}

a {
color: $fg-link;
color: $fg-text-accent;

&:visited {
color: $fg-link;
color: $fg-text-accent;
}
}

Expand Down

0 comments on commit 501a3ab

Please sign in to comment.