[css] light gradient for publication items

This commit is contained in:
Gaspard Jankowiak 2024-03-12 09:52:07 +01:00
commit 2251f4bb77
3 changed files with 8 additions and 6 deletions

View file

@ -10,7 +10,7 @@ subtitle: 'Publications'
{% if site.data.submitted %}
# Preprints
<ol reversed>
<ol class="publication-list" reversed>
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
</ol>
{% endif %}
@ -18,7 +18,7 @@ subtitle: 'Publications'
{% if site.data.accepted %}
# Articles accepted for publication
<ol reversed>
<ol class="publication-list" reversed>
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
</ol>
{% endif %}
@ -26,7 +26,7 @@ subtitle: 'Publications'
{% if site.data.published %}
# Published articles
<ol reversed>
<ol class="publication-list" reversed>
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
</ol>
{% endif %}