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

sidebar.scss « partials « scss « assets - github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1166a5820e44b11a6e374a89c38c8c1f669fb69c (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.sidebar {
    padding: 0 15px;
    &.sticky {
        @media (min-width: ($on-phone + 1)) {
            position: sticky;
        }
    }
}

.left-sidebar {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;

    @media (max-width: $on-phone) {
        width: 100%;
        padding: 30px 0;
        max-width: none;
    }

    &.sticky {
        top: 0;
    }

    @media (min-width: $on-phone + 1) {
        width: 25%;
        margin-right: 1%;
        padding: var(--main-top-padding) 15px;
        max-height: 100vh;
    }

    @media (min-width: $on-desktop) {
        width: 20%;
    }

    @media (min-width: $on-desktop-large) {
        width: 15%;
    }
}

.right-sidebar {
    flex-shrink: 0;

    &.sticky {
        top: 0;
    }

    @media (max-width: $on-desktop - 1) {
        display: none;
    }

    @media (min-width: $on-tablet) {
        width: 25%;
        margin-left: 1%;
        padding-top: 50px;
    }

    @media (min-width: $on-desktop + 1) {
        width: 25%;
    }
}

.site-info {
    z-index: 1;
    transition: box-shadow 0.5s ease;
    @media (max-width: $on-phone) {
        padding: 15px 30px;
    }

    .site-avatar {
        position: relative;
        margin: 0;
        margin-bottom: 25px;
        width: 150px;
        height: 150px;

        @media (max-width: $on-desktop-large) {
            height: 120px;
            width: 120px;
        }

        .site-logo {
            width: 100%;
            height: 100%;
            border-radius: 100%;
            box-shadow: var(--shadow-l1);
        }

        .emoji {
            position: absolute;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 100%;
            bottom: 0;
            right: 0;
            text-align: center;
            font-size: 20px;
            background-color: var(--card-background);
            box-shadow: var(--shadow-l2);

            @media (max-width: $on-desktop-large) {
                width: 40px;
                height: 40px;
                line-height: 40px;
            }
        }
    }

    .site-name {
        color: var(--accent-color);
        font-size: 2.4rem;
        margin: 0;

        @media (max-width: $on-desktop-large) {
            font-size: 2rem;
        }
    }

    .site-description {
        color: var(--body-text-color);
        font-weight: normal;
        margin: 10px 0;
        font-size: 1.8rem;

        @media (max-width: $on-desktop-large) {
            font-size: 1.6rem;
        }
    }
}

.sidebar {
    .widget {
        &:not(:last-of-type) {
            margin-bottom: var(--section-separation);
            &:after {
                content: "";
                width: 100px;
                height: 2px;
                background-color: var(--body-text-color);
                display: block;
                margin-top: var(--section-separation);
            }
        }
    }
}