Skip to content

Commit

Permalink
css: fix issues with links and content (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaureir authored Aug 15, 2024
1 parent 102fabc commit afa47ce
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
3 changes: 2 additions & 1 deletion content/about/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ To learn more,
## The Volunteers

We would not be able to run this conference without help from our volunteers.
Please check the [Volunteer](/volunteer) page for more details on how to volunteer!
Please check the <a href="/volunteer" class="alt-link">Volunteer</a> page for
more details on how to volunteer!

{{% /columns %}}

Expand Down
3 changes: 2 additions & 1 deletion content/sponsors/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ sponsorship team will get back to you soon.
## The Volunteers

We would not be able to run this conference without help from our volunteers.
Please check the [Volunteer](/volunteer) page for more details on how to volunteer!
Please check the <a href="/volunteer" class="alt-link">Volunteer</a> page for
more details on how to volunteer!

{{% /columns %}}

Expand Down
12 changes: 10 additions & 2 deletions themes/pyladies/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ p {
font-weight: 300;
}

.alt-link {
color: white;
}
.alt-link:hover {
color: black;
}

.lead a {
color: white;
Expand Down Expand Up @@ -191,7 +197,7 @@ h1, h2, h3, h4, h5 {

/* Arrow right */
.rarrow-link {
text-decoration: none;
text-decoration: underline;
font-weight: bolder;
color: black;
margin-right: 30px;
Expand All @@ -218,7 +224,7 @@ h1, h2, h3, h4, h5 {
}

.rarrow-link-white {
text-decoration: none;
text-decoration: underline;
font-weight: bolder;
color: white;
margin-right: 30px;
Expand Down Expand Up @@ -402,6 +408,8 @@ h1, h2, h3, h4, h5 {
border-radius: 5px 5px 0px 0px;
font-weight: bold !important;
font-size: 1.4rem !important;
padding-left: 10px;
padding-right: 10px;
}

.table-plan-td {
Expand Down
2 changes: 1 addition & 1 deletion themes/pyladies/layouts/shortcodes/sponsorstable.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<td class="table-plan-td"></td>
</tr>
<tr>
<th scope="row" class="text-end col-sm-2">Logo/info slide shown <p>A slide of your choice to be displayed on rotation during the event</p></th>
<th scope="row" class="text-end col-sm-2">Logo/info slide shown <p class="desc">A slide of your choice to be displayed on rotation during the event</p></th>
<td class="table-plan-td">Between talks and between timezone segments</td>
<td class="table-plan-td">Intermissions between timezone segments</td>
<td class="table-plan-td"></td>
Expand Down

0 comments on commit afa47ce

Please sign in to comment.