Skip to content

Commit b4a5760

Browse files
Further minimalized the events sections. Removed button. Requires now a link or overlay hover with a full div link.
1 parent fe7c45b commit b4a5760

File tree

3 files changed

+56
-21
lines changed

3 files changed

+56
-21
lines changed

_sass/style.scss

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,16 +321,25 @@ a {
321321

322322
.upcoming__col {
323323
background: rgba(250, 235, 215, 0.85);
324-
border-radius: 5px;
325-
border: #000000 1px solid;
324+
border-top: $black 1px solid;
325+
border-right: $black 1px solid;
326+
border-left: $black 1px solid;
326327
min-height: 100%;
327328
margin-top: 1em;
329+
&:first-child {
330+
border-top-left-radius: 5px;
331+
border-top-right-radius: 5px;
332+
}
333+
&:last-child {
334+
border-bottom-left-radius: 5px;
335+
border-bottom-right-radius: 5px;
336+
}
328337
}
329338

330339
@media (min-width: 768px) {
331340
.upcoming__col {
332341
margin-top: 0;
333-
margin-bottom: 0.5em;
342+
margin-bottom: 0;
334343
}
335344
}
336345

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: Test event 3
3+
subtitle: test subtitle 3
4+
project: Pandas
5+
project_logo: static/images/events/pandas_logo_donation.png
6+
project_link: http://pandas.pydata.org/index.html
7+
date: 2018-06-22
8+
time: "18:30"
9+
meetup_link: https://www.meetup.com/Python-Sprints/events/248712103/
10+
event_link:
11+
image:
12+
13+
sponsors:
14+
- quantum_black
15+
---
16+
This will be a follow up of the worldwide #pandasSprint: [https://python-sprints.github.io/pandas/](https://python-sprints.github.io/pandas/)
17+
18+
Beginners to contributing to open source will get a pandas documentation page assigned, and will be guided through the step to make it as good as pandas itself. During the sprint, this step-by-step checklist will help you make your first contribution, and our senior members will help you with any problem.
19+
20+
[https://python-sprints.github.io/pandas/dashboard.html](https://python-sprints.github.io/pandas/dashboard.html)
21+
22+
Advanced contributors will be able to:
23+
- Help reviewing open pull requests
24+
- Experiment with the Sphinx theme of the pandas documentation
25+
- Improve the validation of docstrings
26+
- Refactor the contributing documentation
27+
- And of course mentor more junior contributors
28+
29+
Before the sprint, and to optimise your time, we recommend trying to set up a pandas development environment in your laptop:
30+
31+
[https://python-sprints.github.io/pandas/guide/pandas_setup.html](https://python-sprints.github.io/pandas/guide/pandas_setup.html)
32+
33+
For this sprint, we welcome our new sponsor QuantumBlack.

index.html

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -71,28 +71,21 @@ <h2 class="upcoming__event-subtitle"> {{ post.subtitle }}</h2>
7171
</div>
7272
<div class="row">
7373
<div class="col-12 pr-0">
74+
<hr class="upcoming-divider">
7475
<div class="row">
7576
<div class="col-6 no-padding-x">
76-
<div class="row">
77-
<div class="col-12 no-padding-x">
78-
<hr class="upcoming-divider">
79-
<p class="upcoming__paragraph">
80-
<i class="upcoming__icon fas fa-map-marker-alt"></i>{{ host_sponsor.address }}
81-
</p>
82-
</div>
83-
</div>
84-
<div class="row">
85-
<div class="col-12 no-padding-x">
86-
<p class="upcoming__paragraph">
87-
<i class="upcoming__icon far fa-calendar-alt"></i>{{ post.date | date: "%e %B %Y" }}, {{ post.time }}
88-
</p>
89-
</div>
77+
<div class="col-12 no-padding-x">
78+
<p class="upcoming__paragraph">
79+
<i class="upcoming__icon fas fa-map-marker-alt"></i>{{ host_sponsor.address }}
80+
</p>
9081
</div>
9182
</div>
92-
<div class="upcoming__link-col col-6">
93-
<a class="upcoming__button btn" href="{{ post.url }}">
94-
<i class="upcoming__button-icon fas fa-info-circle"></i>
95-
</a>
83+
<div class="col-6 no-padding-x">
84+
<div class="col-12 no-padding-x">
85+
<p class="upcoming__paragraph text-right mr-2">
86+
<i class="upcoming__icon far fa-calendar-alt"></i>{{ post.date | date: "%e %B %Y" }}, {{ post.time }}
87+
</p>
88+
</div>
9689
</div>
9790
</div>
9891
</div>

0 commit comments

Comments
 (0)