Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_navigation.scss « scss « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd968df227c329d15f95abb134dcf77a3e94963f (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
.navigation {
    top: 5.5rem;
    right:0;
    width: 100%;
    max-height: calc(100vh - 5.5rem);
    overflow: hidden;
    position: fixed;
    display: none;
    opacity: 1;
    background-color: var(--color-extra);
    &__wrapper {
        padding: 2rem;
        display: flex;
        flex-flow: row wrap;
    }
    &__container {
        flex: 1 1 50%;
        display: flex;
        flex-flow: column wrap;
        align-items: center;
    }
    &__list {
        display: flex;
        flex-flow: column nowrap;
    }
    &__list-item {
      font-size: 1.25rem;
    }
    &__list-item:not(:last-of-type) {
        margin-bottom: 0.5rem;
    }
    &__link:link:hover {
        border-bottom: 1px solid black;
    }
}