-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
29 lines (25 loc) · 738 Bytes
/
Copy pathcontent.css
File metadata and controls
29 lines (25 loc) · 738 Bytes
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
/* Article pages keep the navigation rail under the identity on every non-mobile viewport. */
@media (min-width: 640px) {
.ark-site-grid[data-page-layout='content'] {
grid-template-columns: minmax(0, 2fr) minmax(0, 8fr);
}
.ark-site-grid[data-page-layout='content'] .ark-site-navigation {
grid-column: 1;
grid-row: 1;
position: sticky;
top: 2.5rem;
align-self: start;
padding-top: 4.5rem;
}
.ark-site-grid[data-page-layout='content'] .ark-site-content {
grid-column: 2;
grid-row: 1;
}
.ark-site-grid[data-page-layout='content'] .ark-article {
padding-top: 0;
}
.ark-site-grid[data-page-layout='content'] .ark-article-container {
margin-right: 0;
margin-left: 0;
}
}