~cypheon/trakka

05975956e7063a4777dd0b58849494cde7005980 — Johann Rudloff 2 years ago e770d7a
Minor styling tweaks
1 files changed, 6 insertions(+), 6 deletions(-)

M templates/base.html
M templates/base.html => templates/base.html +6 -6
@@ 14,18 14,18 @@
    <nav class="flex flex-row flex-wrap pb2 bb b--moon-gray">
      <a href="/" class="no-underline b mid-gray mr4">trakka</a>
      <ul class="list di pa0 ma0 flex-grow">
        <li class="di pa0 ph2"><a href="/activities">Activities</a></li>
        <li class="di pa0 ph2"><a href="/friends">Friends</a></li>
        <li class="di pa0 ph2"><a class="mid-gray" href="/activities">Activities</a></li>
        <li class="di pa0 ph2"><a class="mid-gray" href="/friends">Friends</a></li>
      </ul>
      {% if user.is_authenticated %}
        <div>
          Logged in as <a href="/profile">{{ user.username }}</a>
          Logged in as <a class="gray" href="/profile">{{ user.username }}</a>
          |
          <a href="/accounts/logout">Logout</a>
          <a class="gray" href="/accounts/logout">Logout</a>
        </div>
      {% else %}
        <div>
          <a href="/accounts/login">Log in</a>
          <a class="gray" href="/accounts/login">Log in</a>
        </div>
      {% endif %}
    </nav>


@@ 33,7 33,7 @@
    {% endblock %}

    <footer class="bt mt4 b--moon-gray gray pv4 f7">
      <a class="gray" href="https://sr.ht/~cypheon/trakka">trakka</a>: <a class="gray" href="https://www.gnu.org/licenses/agpl-3.0.txt">AGPL-3.0-only</a>
      powered by <a class="gray" href="https://sr.ht/~cypheon/trakka">trakka</a>: <a class="gray" href="https://www.gnu.org/licenses/agpl-3.0.txt">AGPL-3.0</a>
      |
      <a class="gray" href="https://fontawesome.com/license/free">Font Awesome: CC BY 4.0</a>
    </footer>