File size: 2,262 Bytes
64aaca8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* this style is used inline in list.html */

body {
    margin: auto;
    max-width: 2560px;
}

body > footer.pagewidth,
body > header.pagewidth {
    padding: 0 calc(1.5rem + 1ex);
}

body > aside.carousel {
    position: sticky;
    position: -webkit-sticky;
    left: 0;
    float: left;
    /* border: var(--border);
    border-radius: 1ex; */
    padding: 1rem;
    width: 38vw;
    height: var(--vbody);
}

body > main#home {
    height: var(--vbody);
    overflow-y: auto;
}

body > main#home > aside#list-tags {
    top: 0;
    right: 0;
    margin: 1rem auto;
    width: calc(100% - var(--golden-ratio))
}

#home #top {
    padding: 1rem;
}

#home #list-posts {
    padding: 1rem;
    width: var(--golden-ratio);
}

div[role='feed'] {
    padding: 1ex;
}

.carousel .feed-item,
#home .feed-item,
hr.ldots {
    width: unset;
}

#main-footer > .pagewidth {
    padding: 0 1ex;
}

#duckduckgo,
#i18n-menu > .on-plank,
#more-menu > .on-plank,
.pagefind-ui {
    margin-right: 1rem;
}

#hasDuckDuckGo.pagewidth {
    padding-right: 1rem;
}

#grain {
    display: none;
}

@media only screen and (max-width: 960px) {

    body > footer,
    body > header {
        background: var(--bg);
    }

    body > aside.carousel {
        float: unset;
        margin: 0 1rem;
        padding: 1rem 0;
        width: unset;
    }

    body > main#home {
        height: unset;
        overflow-y: unset;
    }

    body > main#home > aside#list-tags {
        top: var(--vhead);
    }

}

@media only screen and (max-width: 640px) {

    #main-footer > .pagewidth {
        padding: 0 calc(var(--void) / 2);
    }

    body > main#home > aside#list-tags {
        padding: unset;
        width: var(--canonic);
    }

    aside + #list-posts .feed-item > section {
        flex-direction: row-reverse;
        aspect-ratio: 10/3;
    }

    #home #list-posts {
        margin: var(--bigskip) auto;
        padding: unset;
        width: var(--canonic);
    }

    #list-posts .section-title {
        padding-left: unset;
    }

    #duckduckgo,
    .pagefind-ui {
        margin-right: 1ex;
    }

}

@media only screen and (max-width: 480px) {

    aside + #list-posts .feed-item > section {
        flex-direction: column;
        aspect-ratio: unset;
    }

}