Skip to content

Commit

Permalink
external link
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosarium committed May 9, 2024
1 parent 76579ad commit d0e4c65
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions assets/styles/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,23 @@ article {
cursor: not-allowed;
}
}

&:not(.internal-link)[rel="noopener"] {
&::after {
// content: "↗";
font-family: var(--font-header);
font-weight: 400;
opacity: 50%;
}
transition: all 0.2s ease;
}
&:not(.internal-link)[rel="noopener"]:hover {
&::after {
opacity: 100%;
}
text-decoration: underline;
transition: all 0.2s ease;
}
}

& p {
Expand Down

0 comments on commit d0e4c65

Please sign in to comment.