Skip to content

Commit

Permalink
fix coloring of header links to show name/repository
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsochat@stanford.edu>
  • Loading branch information
vsoch committed Jun 23, 2022
1 parent b2852b1 commit 4dd220a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/_layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---
<nav>
{% include browse.html %}
<small><a href="{{ site.baseurl }}/archive/{{ page.event_type | downcase }}/">View {{ page.event_type }} Archive</a></small>
<small><a class="smalltext" href="{{ site.baseurl }}/archive/{{ page.event_type | downcase }}/">View {{ page.event_type }} Archive</a></small>
</nav>
{% assign events = site.events | where: "event_type", page.event_type | sort: 'date' | reverse %}
<main class="grid flex-grid" style="max-width:100%">{% for event in events limit:500 %}
Expand Down
6 changes: 5 additions & 1 deletion docs/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,12 @@ body {
}

a {
border-bottom: 1px dotted var(--color-white);
border-bottom: 1px dotted var(--color-asphalt);
text-decoration: none;
color: var(--color-asphalt);
}

.smalltext {
color: var(--color-white);
}

Expand Down

0 comments on commit 4dd220a

Please sign in to comment.