Skip to content

Commit

Permalink
update link styles
Browse files Browse the repository at this point in the history
  • Loading branch information
DasUnicorn committed Aug 31, 2023
1 parent 017866c commit 618d8c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,9 @@ button.searching:hover, a.searching:hover{
}

.link {
text-decoration: none;
color: #C39E3A;
text-decoration: underline;
text-decoration-thickness: 3px;
color: #365314;
font-weight: bold;
}

Expand Down Expand Up @@ -377,4 +378,4 @@ td {

tbody tr:nth-child(odd) {
background-color: #f0e5c4;
}
}
2 changes: 1 addition & 1 deletion templates/search_results.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<tr>
<th scope="row">{{result.episode.number}}</th>
{% if result.youtube_link %}
<td><a href="{{ result.youtube_link }}" target="_blank" rel="noopener noreferrer">{{result.start_time}}</a></td>
<td><a href="{{ result.youtube_link }}" target="_blank" rel="noopener noreferrer" class="link">{{result.start_time}}</a></td>
{% else %}
<td>{{result.start_time}}</td>
{% endif %}
Expand Down

0 comments on commit 618d8c3

Please sign in to comment.