Add link previews on hover

This commit is contained in:
Maxime Vaillancourt
2020-07-21 21:05:19 -04:00
parent d8b794908f
commit b6849b30aa
11 changed files with 181 additions and 16 deletions

View File

@@ -83,6 +83,16 @@ a {
color: black !important;
background: #fffaf1;
}
&:after {
position: relative;
top: -0.5em;
font-size: 0.7em;
content: "";
color: #aaaaaa;
}
&.internal-link:after {
content: "";
}
}
*:focus {
@@ -116,3 +126,9 @@ ul {
padding: 1em;
border-radius: $border-radius;
}
code {
background: #f5f5f5;
padding: 0.1em 0.2em;
border-radius: 4px;
}