basic tech support required
This feels like an extremely silly question to ask, but how do you achieve links that those of :
(aka a small circle after the link)
https://practicaltypography.com/
I much prefer it to underlining things...
basic tech support required
@MrNarrow look at the way links are done on this page - https://practicaltypography.com/the-cowardice-of-brave.html
basic tech support required
@freddyym note the removal of `text-decoration` and the insertion of `content: "°"` after the anchor.
basic tech support required
@freddyym also do you know if there is any way to do code blocks in Mastodon?
basic tech support required
@MrNarrow don't think so, but thanks for the help, greatly appreciated!
basic tech support required
@freddyym sorry about the delay, here is the CSS pulled directly from that site:
```
a {
text-decoration: none;
color: inherit;
transition-property: background;
transition-duration: 0.2s;
}
a::after {
position: relative;
content: "°";
margin-left: 0.1em;
font-size: 90%;
top: -0.1em;
color: rgb(153, 51, 51);
font-feature-settings: "caps";
font-variant-numeric: normal;
}
```