From a85abf1ccbbb8ed8a4975d0887f3e2bff87fbe9c Mon Sep 17 00:00:00 2001 From: cmal Date: Sat, 23 Jun 2018 10:35:22 +0200 Subject: [PATCH] Added marker for external links (#63) --- assets/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/style.css b/assets/style.css index 04838b3..a93634a 100644 --- a/assets/style.css +++ b/assets/style.css @@ -160,6 +160,13 @@ a { text-decoration: none; } +a[href^="http"]::after { + padding: 0 0.1rem; + font-size: 75%; + content: "🔗"; + line-height: 0; +} + a:hover { text-decoration: underline; }