lang/css/ ExternalLinks
This is used to indicate external links like this.
a[href*="//"]:not([href*="w.allsup.co"])::after {
color: #888;
vertical-align: super;
font-size: 0.8em;
content: "🡕";
}
More elaborate:
a[href*="//"]:not([href*=".allsup.co/"]) {
color: red;
}
a[href*="//"]:not([href*=".allsup.co/"]):after {
content: "↑";
font-size: 13px;
}
a[href*="//"][href*=".allsup.co/"] {
color: orange;
}
a[href*="//"][href*=".allsup.co/"]:after {
content: "→";
font-size: 13px;
}
a[href]:not([href*="//"]) {
color: green;
}