diff options
author | Volpeon <git@volpeon.ink> | 2021-11-20 18:39:28 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-11-20 18:39:28 +0100 |
commit | 08843807299c0c23f2125eb1fd6947d1ea03fcba (patch) | |
tree | c1885b89b9297667b63e63d16439f61ed162388d /assets/css/scopes | |
parent | Improved font size again (diff) | |
download | volpeon.ink-08843807299c0c23f2125eb1fd6947d1ea03fcba.tar.gz volpeon.ink-08843807299c0c23f2125eb1fd6947d1ea03fcba.tar.bz2 volpeon.ink-08843807299c0c23f2125eb1fd6947d1ea03fcba.zip |
Improved list structure
Diffstat (limited to 'assets/css/scopes')
-rw-r--r-- | assets/css/scopes/_invisible-links.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/css/scopes/_invisible-links.scss b/assets/css/scopes/_invisible-links.scss new file mode 100644 index 0000000..e4d149e --- /dev/null +++ b/assets/css/scopes/_invisible-links.scss | |||
@@ -0,0 +1,13 @@ | |||
1 | @include namespace('invisible-links') { | ||
2 | @include scope(namespace()) { | ||
3 | :link, | ||
4 | :visited { | ||
5 | color: currentColor; | ||
6 | text-decoration: none; | ||
7 | |||
8 | &:hover { | ||
9 | text-decoration: underline; | ||
10 | } | ||
11 | } | ||
12 | } | ||
13 | } | ||