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

_responsive.scss « sass « assets - github.com/Lednerb/bilberry-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4039e7a3678a84f52bf2c08f0353a18670cc48f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
@media (max-width: $site-width) {
    nav {
        &.permanentTopNav {
            display: none;
        }

        .container {
            flex-direction: column-reverse;
            padding: 1em 2em;

            .topnav {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin-bottom: 0.5em;
                width: 100%;

                li {
                    width: 100%;
                }

                a {
                    padding: 0.75em 0;
                    display: block;
                    width: 100%;
                }
            }

            .search {
                margin: 0.5em 1.5em;
                width: 100%;

                input {
                    width: 100%;
                }
            }
        }
    }

    header {
        width: 100%;

        .container {
            padding: 0 30px;
            .titles {
                font-size: 1.5rem;
                line-height: 140%;
                .title {
                    font-size: 3rem;
                    line-height: 160%;
                }
            }
        }

        .toggler {
            right: 14px;

            &.permanentTopNav {
                display: block;
            }
        }

        .languages {
            right: 14px;
        }
    }

    .bubble {
        display: none !important;
    }

    .container {
        width: 100%;
        padding: 0;
    }

    .container:before,
    .container:after {
        display: none !important;
    }

    .main {
        margin-bottom: 0;
    }

    .main article {
        margin: 14px;
        width: 100%;

        &:before,
        &:after {
            display: none !important;
        }
    }

    .main #comments-container {
        margin: 0 1.5em;
    }

    .main .paginator {
        margin: 1.5em;
        margin-top: 50px;
    }

    footer .container {
        padding: 3em 2em 2em 2em;
        flex-direction: column;
        text-align: center;

        div {
            width: 100%;
            margin: 0 !important;
        }
    }

    .credits .container {
        padding: 4rem 1.5em;
    }
}