Skip to content

Commit 0568771

Browse files
committed
feat(blog): pyos ff
1 parent c9621e3 commit 0568771

8 files changed

+191
-47
lines changed

_posts/2019-10-26-pyos-min-mistakes-theme.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,34 @@ The image below should extend outside of the parent container on right.
188188
{: .highlight-quote }
189189

190190

191+
### Fancy blockquote magenta & purple variants
192+
193+
```markdown
194+
> This entire effort underscores the power of community when guided in
195+
> the right direction, showcasing how collective effort can drive
196+
> meaningful progress.
197+
{: .highlight-quote .magenta }
198+
```
199+
200+
> This entire effort underscores the power of community when guided in
201+
> the right direction, showcasing how collective effort can drive
202+
> meaningful progress.
203+
{: .highlight-quote .magenta }
204+
205+
206+
```markdown
207+
> This entire effort underscores the power of community when guided in
208+
> the right direction, showcasing how collective effort can drive
209+
> meaningful progress.
210+
{: .highlight-quote .purple }
211+
```
212+
213+
> This entire effort underscores the power of community when guided in
214+
> the right direction, showcasing how collective effort can drive
215+
> meaningful progress.
216+
{: .highlight-quote .purple }
217+
218+
191219
### Quotes using include files
192220

193221
You can also create blockquotes using include files.

_posts/2024-11-22-pyOpenSci-first-open-science-festival.md

Lines changed: 149 additions & 45 deletions
Large diffs are not rendered by default.

_sass/minimal-mistakes/_base.scss

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,27 +188,37 @@ blockquote.highlight-quote {
188188
}
189189

190190
&.magenta {
191-
& > div.end:after,
191+
div.end:after,
192192
p:before,
193193
p:after {
194+
@extend %quote-style;
194195
color: $pyos-magenta;
195196
}
196197
}
197198

198199
&.purple {
199-
& > div.end:after,
200+
div.end:after,
200201
p:before,
201202
p:after {
202203
color: $pyos-mediumpurple;
203204
}
204205
}
205206

207+
206208
@include breakpoint('max-width: #$mobile') {
207209
padding: 0;
208210
//font-size: 2rem;
209211
}
210212
}
211213

214+
// for some reason i have to manually override here
215+
blockquote.highlight-quote.magenta:after{
216+
color: $pyos-magenta;
217+
}
218+
blockquote.highlight-quote.purple:after{
219+
color: $pyos-mediumpurple;
220+
}
221+
212222
/* links */
213223

214224
a {
151 KB
Loading
143 KB
Loading
293 KB
Loading

images/events/people-table-working-2.svg

Lines changed: 1 addition & 0 deletions
Loading

images/events/people-table-working.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)