aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar GDWR <[email protected]>2022-02-08 19:55:26 +0000
committerGravatar GDWR <[email protected]>2022-02-08 19:55:26 +0000
commitc23c864c505996f9c123e053e558acb9c046f29f (patch)
tree7d0aadd53a363fcd6051b61c2d88c30b6c219188
parentComment bulma variables (diff)
Use colour helpers
-rw-r--r--pydis_site/templates/base/navbar.html17
1 files changed, 8 insertions, 9 deletions
diff --git a/pydis_site/templates/base/navbar.html b/pydis_site/templates/base/navbar.html
index 41d6c778..fbaea337 100644
--- a/pydis_site/templates/base/navbar.html
+++ b/pydis_site/templates/base/navbar.html
@@ -33,38 +33,38 @@
</a>
{# GitHub #}
- <a class="navbar-item" href="https://github.com/python-discord">
+ <a class="navbar-item has-text-white" href="https://github.com/python-discord">
<span class="icon is-size-4 is-medium"><i class="fab fa-github"></i></span>
<span>&nbsp;GitHub</span>
</a>
{# Reddit #}
- <a class="navbar-item" href="https://reddit.com/r/python">
+ <a class="navbar-item has-text-white" href="https://reddit.com/r/python">
<span class="icon is-size-4 is-medium"><i class="fab fa-reddit-alien"></i></span>
<span>&nbsp;Reddit</span>
</a>
{# YouTube #}
- <a class="navbar-item" href="https://youtube.com/pythondiscord">
- <span class="icon is-size-4 is-medium"><i class="fab fa-youtube"></i></span>
+ <a class="navbar-item has-text-white" href="https://youtube.com/pythondiscord">
+ <span class="icon is-size-4 is-medium is-dark"><i class="fab fa-youtube"></i></span>
<span>&nbsp;YouTube</span>
</a>
{# Patreon #}
- <a class="navbar-item" href="https://patreon.com/python_discord">
+ <a class="navbar-item has-text-white" href="https://patreon.com/python_discord">
<span class="icon is-size-4 is-medium"><i class="fab fa-patreon"></i></span>
<span>&nbsp;Patreon</span>
</a>
{# Merch #}
- <a class="navbar-item" href="https://www.redbubble.com/people/PythonDiscord/shop">
+ <a class="navbar-item has-text-white" href="https://www.redbubble.com/people/PythonDiscord/shop">
<span class="icon is-size-4 is-medium"><i class="fas fa-tshirt"></i></span>
<span>&nbsp;Merch</span>
</a>
{# More #}
<div class="navbar-item has-dropdown is-hoverable">
- <span class="navbar-link is-hidden-touch">
+ <span class="navbar-link is-hidden-touch has-text-white">
More
</span>
<span class="navbar-link is-arrowless is-hidden-desktop">
@@ -112,11 +112,10 @@
</div>
{# Desktop Nav Discord #}
- <div id="discord-btn" class="buttons is-hidden-touch">
+ <div id="discord-btn" class="buttons is-hidden-touch is-white">
<a href="https://discord.gg/python" class="button is-large is-primary">Discord</a>
</div>
</div>
-
</div>
</nav>