Skip to content

Commit

Permalink
color branding change
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenKilgore committed Jul 15, 2024
1 parent 50fda27 commit ac4bc7c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/_includes/layouts/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div id="post-tags">
<span class="icon"><i class="fas fa-tags"></i></span>
{%- for tag in post.data.tags -%}
<a href="/tags/{{ tag | slug }}">{{ tag }}</a>{% if not loop.last %}<span style="color: crimson">,</span>{% endif %}
<a href="/tags/{{ tag | slug }}">{{ tag }}</a>{% if not loop.last %}<span style="color: #00A1E0">,</span>{% endif %}
{%- endfor -%}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/_includes/layouts/tag.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<div id="post-tags">
<span class="icon"><i class="fas fa-tags"></i></span>
{%- for tag in post.data.tags -%}
<a href="/tags/{{ tag | slug }}">{{ tag }}</a>{% if not loop.last %}<span style="color: crimson">,</span>{% endif %}
<a href="/tags/{{ tag | slug }}">{{ tag }}</a>{% if not loop.last %}<span style="color: #00A1E0">,</span>{% endif %}
{%- endfor -%}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/assets/css/projects.css
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
}

.links .button:hover {
background-color: darkred;
background-color: #00A1E0;
}

.icon {
Expand Down
2 changes: 1 addition & 1 deletion src/tags/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1>Posts tagged with "{{ tag }}"></h1>
<div id="post-tags">
<span class="icon"><i class="fas fa-tags"></i></span>
{%- for tag in post.data.tags -%}
<a href="/tags/{{ tag | slug }}">{{ tag }}</a>{% if not loop.last %}<span style="color: crimson">,</span>{% endif %}
<a href="/tags/{{ tag | slug }}">{{ tag }}</a>{% if not loop.last %}<span style="color: #00A1E0">,</span>{% endif %}
{%- endfor -%}
</div>
</div>
Expand Down

0 comments on commit ac4bc7c

Please sign in to comment.