Last active
August 10, 2023 10:55
-
-
Save tomkyle/04e037d222488b36cf84a4cec1aaab57 to your computer and use it in GitHub Desktop.
Quiver: Make internal links visible, using a fresh Evernote-style green
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Makes internal quiver-Links visible (Evernote-style) | |
* @author: Carsten Witt | |
*/ | |
.text-cell a[href|="quiver"] { | |
font-weight: 600; | |
text-decoration: none; | |
} | |
.text-cell a[href|="quiver"]::before { | |
content: "➚ "; | |
} | |
.text-cell a[href|="quiver"]:link, | |
.text-cell a[href|="quiver"]:visited { | |
color: #5ba525; | |
} | |
.text-cell a[href|="quiver"]:hover, | |
.text-cell a[href|="quiver"]:active, | |
.text-cell a[href|="quiver"]:focus { | |
color: #2C8700; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment