Skip to content

Commit 9781e08

Browse files
committed
Fix: cleanup styles for readability
1 parent 0dc9ec6 commit 9781e08

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

_includes/archive-cards.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h3 class="card-title">{{ post.title | markdownify | strip_html }}</h3>
1010
</div>
1111
<div class="card-excerpt">
12-
<p>{{ post.excerpt | truncate: 180}}</p>
12+
<p>{{ post.excerpt }}</p>
1313
</div>
1414
</div>
1515
</a>

_posts/2024-07-22-pyopensci-at-scipy-2024.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: single
33
title: "pyOpenSci a Recap of @ SciPy 2024 Meeting - Tacoma, Washington"
4-
excerpt: "More"
4+
excerpt: "This year I gave a talk and lead a packaging workshop at the SciPy 2024 conference in Tacoma Washington. Learn more about the SciPy meeting and how exciting it was for pyOpenSci to be there this year!"
55
author: "Leah Wasser"
66
permalink: /blog/pyos-scipy-2024-recap.html
77
header:

_sass/minimal-mistakes/_pyos-grid.scss

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,23 @@
4242

4343
.blog__grid {
4444
display: grid;
45-
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
45+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
4646
grid-auto-rows: 1fr;
4747
grid-column-gap: 7px;
4848
grid-row-gap: 30px;
4949
margin-bottom: 20px;
5050

5151
h3.card-title {
52-
font-size: 1em!important;
52+
font-size: 1.3em!important;
5353
text-align: left;
5454
margin-top: 0;
5555
vertical-align: middle;
56+
padding: 0 .4em;
57+
5658
}
5759

58-
card-excerpt {
59-
font-size: .8em;
60+
.card-excerpt p {
61+
font-size: 1.1em;
6062

6163
}
6264

@@ -99,7 +101,9 @@
99101
}
100102

101103
.cards {
102-
display: block;
104+
display: flex;
105+
flex-direction: column;
106+
height: 100%;
103107
top: 0px;
104108
position: relative;
105109
max-width: 362px;
@@ -203,15 +207,12 @@
203207

204208
.card-excerpt{
205209
font-size: .8em;
206-
padding-top: 0;
210+
padding: 0 1.3em;
207211

208212
& p {
209213
margin-top: 0;
210214
}
211215
}
212-
.card-title {
213-
214-
}
215216
}
216217

217218
.grid__wrapper {

0 commit comments

Comments
 (0)