diff options
author | 2022-02-08 19:55:26 +0000 | |
---|---|---|
committer | 2022-02-08 19:55:26 +0000 | |
commit | c23c864c505996f9c123e053e558acb9c046f29f (patch) | |
tree | 7d0aadd53a363fcd6051b61c2d88c30b6c219188 | |
parent | Comment bulma variables (diff) |
Use colour helpers
-rw-r--r-- | pydis_site/templates/base/navbar.html | 17 |
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> 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> 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> 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> 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> 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> |