aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss/custom/_links.scss
blob: 383f1fe37c9483e7c9e405b264a7d34ae067ca00 (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
a {
    color: #0099e5;
    &:hover {
        text-decoration: none;
    }
    &.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;
    }
}

.pagination-list {
    margin-bottom: 1.5rem;
}