-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharticle.css
More file actions
164 lines (141 loc) · 3.3 KB
/
Copy patharticle.css
File metadata and controls
164 lines (141 loc) · 3.3 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
.is-article .global-article-search {
display: none;
}
.is-article #quarto-margin-sidebar {
display: block !important;
position: sticky;
top: 86px;
align-self: flex-start;
width: 280px;
flex: 0 0 280px;
order: 2;
margin-top: 0;
}
.is-article.no-toc #quarto-margin-sidebar {
display: none !important;
}
.is-article #quarto-content {
display: flex !important;
align-items: flex-start;
gap: 2rem;
max-width: 1260px;
margin: 0 auto;
}
.is-article.no-toc #quarto-content {
max-width: 980px;
}
.is-article main.content {
order: 1;
flex: 1 1 auto;
max-width: 920px !important;
margin: 0 !important;
}
.is-article #title-block-header {
display: block !important;
margin: 0.55rem 0 0.35rem;
border: 0;
padding: 0;
}
.is-article #title-block-header .title {
margin: 0;
color: var(--tuva-ink);
font-size: clamp(2rem, 3.1vw, 2.75rem);
line-height: 1.08;
font-weight: 800;
}
.is-article #title-block-header .quarto-title-meta {
display: none !important;
}
.is-article #quarto-document-content > :not(.global-blog-header):not(script) {
max-width: 860px;
}
.is-article .article-byline {
margin: 0.2rem 0 0.9rem;
color: #334b60;
font-size: 1.05rem;
font-style: italic;
}
.is-article .article-hero {
display: block;
width: 100%;
height: auto;
max-height: 620px;
object-fit: cover;
border-radius: 0.9rem;
border: 1px solid #dbe4ec;
margin: 0 0 0.95rem;
}
.is-article .article-bio {
margin: 0 0 1.1rem;
color: #465d70;
font-size: 0.98rem;
font-style: italic;
line-height: 1.5;
}
.is-article .article-bio a {
color: #2b5f8f;
font-weight: 600;
}
.is-article #quarto-document-content img.img-fluid,
.is-article #quarto-document-content img.img_ev3q {
max-width: 100%;
height: auto;
}
/* Remove theme-provided section heading separators on article pages */
.is-article #quarto-document-content h2,
.is-article #quarto-document-content h3 {
border-bottom: 0 !important;
padding-bottom: 0 !important;
}
.is-article #quarto-document-content h2.anchored,
.is-article #quarto-document-content h3.anchored {
border: 0 !important;
box-shadow: none !important;
padding: 0 !important;
margin-bottom: 0.7rem !important;
}
.is-article #quarto-document-content h2.anchored::before,
.is-article #quarto-document-content h2.anchored::after,
.is-article #quarto-document-content h3.anchored::before,
.is-article #quarto-document-content h3.anchored::after {
content: none !important;
border: 0 !important;
box-shadow: none !important;
display: none !important;
}
.is-article #quarto-document-content section.level2,
.is-article #quarto-document-content section.level3 {
border-top: 0 !important;
border-bottom: 0 !important;
box-shadow: none !important;
padding-top: 0 !important;
}
.is-article #TOC {
position: static;
max-height: calc(100vh - 120px);
overflow: auto;
padding: 0;
border: 0;
background: transparent;
}
@media (max-width: 960px) {
.is-article #quarto-content {
display: block !important;
max-width: none;
}
.is-article #quarto-margin-sidebar {
display: none !important;
margin-top: 0;
width: auto;
}
.is-article main.content {
max-width: 100% !important;
}
}
.is-article .article-byline-date {
display: block;
font-size: inherit;
font-style: inherit;
color: inherit;
line-height: inherit;
}