diff options
Diffstat (limited to 'src/scss/custom/_links.scss')
-rw-r--r-- | src/scss/custom/_links.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/scss/custom/_links.scss b/src/scss/custom/_links.scss index d5449a8..c813caa 100644 --- a/src/scss/custom/_links.scss +++ b/src/scss/custom/_links.scss @@ -1,29 +1,29 @@ a { - color: #0099e5; + color: $links; &:hover { text-decoration: none; - color: #ffc20e; + color: $hlinks; } &.navbar-item { &.is-tab { &.is-active { - border-bottom-color: #dd7325; + border-bottom-color: $slinks; border-width: 2px; color: whitesmoke; } &:hover { - border-bottom-color: #dd7325; + border-bottom-color: $slinks; border-width: 2px; - color: #dd7325; + color: $slinks; } } &:hover { - color: #dd7325; + color: $slinks; background-color: transparent; } } &.pagination-previous.disabled, &.pagination-next.disabled { - background: #0c0f0f; + background: $plinks; color: white; cursor: not-allowed; border-color: #dbdbdb; @@ -35,5 +35,5 @@ a { h2 > a:hover { color: white; - text-shadow: 1px 2px 0px #161C1C; + text-shadow: 0px 1px 2px #000; } |