diff options
Diffstat (limited to 'pydis_site')
| -rw-r--r-- | pydis_site/templates/events/pages/revivalofcode/_index.html | 2 | ||||
| -rw-r--r-- | pydis_site/templates/events/sidebar/events_list.html | 24 | 
2 files changed, 14 insertions, 12 deletions
| diff --git a/pydis_site/templates/events/pages/revivalofcode/_index.html b/pydis_site/templates/events/pages/revivalofcode/_index.html index 30ec377a..668c2d67 100644 --- a/pydis_site/templates/events/pages/revivalofcode/_index.html +++ b/pydis_site/templates/events/pages/revivalofcode/_index.html @@ -18,7 +18,7 @@      Revival of Code is a Python Discord hosted event where we release old Advent of Code puzzles from a previous year. The puzzles start off easy and gradually get more difficult, all while revealing a fun little story that is appropriate for some seasons more than others. Questions will be posted every other day, and you'll be able to discuss your solutions in dedicated threads.  </p> -<h3 class="is-title is-3">Keeping up with the puzzles</h3> +<h3 class="title is-4">Keeping up with the puzzles</h3>  <p>      To be notified when new problems are posted you can subscribe to the <code>@Revival of Code role</code> in <code>#roles</code>.  </p> diff --git a/pydis_site/templates/events/sidebar/events_list.html b/pydis_site/templates/events/sidebar/events_list.html index ffea19c1..0d3493e4 100644 --- a/pydis_site/templates/events/sidebar/events_list.html +++ b/pydis_site/templates/events/sidebar/events_list.html @@ -1,4 +1,4 @@ -<h4 class="is-title is-6">Recent events</h4> +<h4 class="title is-4">Recent events</h4>  <div class="box">      <ul class="menu-list" style="margin-top: 0;">          <li><a class="has-text-link" href="https://pyweek.org/35/">March: PyWeek 35</a></li> @@ -8,14 +8,16 @@      </ul>  </div> -<h4 class="is-title is-6">All events</h4> -<div class="box is-hidden-mobile"> -    <ul class="menu-list" style="margin-top: 0;"> -        <li><a class="has-text-link" href="{% url "events:page" path="code-jams" %}">Code Jams</a></li> -        <li><a class="has-text-link" href="{% url "events:page" path="pyweek" %}">PyWeek</a></li> -        <li><a class="has-text-link" href="{% url "events:page" path="pixels" %}">Pixels</a></li> -        <li><a class="has-text-link" href="{% url "events:page" path="adventofcode" %}">Advent of Code</a></li> -        <li><a class="has-text-link" href="{% url "events:page" path="revivalofcode" %}">Revival of Code</a></li> -        <li><a class="has-text-link" href="{% url "events:page" path="game-jams" %}">Game Jams</a></li> -    </ul> +<div class="is-hidden-mobile"> +    <h4 class="title is-4">All events</h4> +    <div class="box"> +        <ul class="menu-list" style="margin-top: 0;"> +            <li><a class="has-text-link" href="{% url "events:page" path="code-jams" %}">Code Jams</a></li> +            <li><a class="has-text-link" href="{% url "events:page" path="pyweek" %}">PyWeek</a></li> +            <li><a class="has-text-link" href="{% url "events:page" path="pixels" %}">Pixels</a></li> +            <li><a class="has-text-link" href="{% url "events:page" path="adventofcode" %}">Advent of Code</a></li> +            <li><a class="has-text-link" href="{% url "events:page" path="revivalofcode" %}">Revival of Code</a></li> +            <li><a class="has-text-link" href="{% url "events:page" path="game-jams" %}">Game Jams</a></li> +        </ul> +    </div>  </div> | 
