_extra.scss 860 字节
Newer Older
S
sunshine 已提交
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
.extra-link {
    position: absolute;
    bottom: $distance-lg;

    max-width: 20%;

    a {
        display: inline-block;
        margin: 0 6px;

        text-decoration: none;

        &:hover {
            text-decoration: none;
            text-shadow: 0 0 5px $clr-primary;

            svg {
                filter: drop-shadow(0 0 5px $clr-primary);
            }
        }

        &.letters {
            position: relative;
            top: -4px;

            font-size: 16px;
            color: white;
            text-decoration: none;
        }

        &#en-link {
            font-size: 17px;
        }

        svg {
            transform: translate3d(0, 0, 0);
        }
    }
}

#meta-link {
    left: $distance-lg;
}

#social-link {
    right: $distance-lg;
}


@media (max-width: 720px) {
    .extra-link {
        display: none;
    }
}