aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss/custom/_links.scss
blob: d5449a8833c95d5dad6c05cda39f434b6875b1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
a {
    color: #0099e5;
    &:hover {
        text-decoration: none;
        color: #ffc20e;
    }
    &.navbar-item {
        &.is-tab {
            &.is-active {
                border-bottom-color: #dd7325;
                border-width: 2px;
                color: whitesmoke;
            }
            &:hover {
                border-bottom-color: #dd7325;
                border-width: 2px;
                color: #dd7325;
            }
        }
        &:hover {
            color: #dd7325;
            background-color: transparent;
        }
    }
    &.pagination-previous.disabled, &.pagination-next.disabled {
        background: #0c0f0f;
        color: white;
        cursor: not-allowed;
        border-color: #dbdbdb;
        box-shadow: none;
        color: #7a7a7a;
        opacity: .5;
    }
}

h2 > a:hover {
    color: white;
    text-shadow: 1px 2px 0px #161C1C;
}