Skip to content

Commit

Permalink
Merge branch 'main' into truncated
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnieBLT authored Dec 1, 2024
2 parents c94cea5 + 2d53ef6 commit dad3ec6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 14 additions & 3 deletions website/templates/leaderboard_global.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}

.silver {
background-color: lightblue;
background-color: #C0C0C0;
color: #333;
}

Expand All @@ -40,10 +40,21 @@
}

.bronze {
background-color: #C9AE5D;
background-color: #be7225;
color: #FFFFFF;
}


.platinum {
background-color: #E5E4E2;
color: #333;
}

.unrated {
background-color: #000000;
color: #FFFFFF;
}

.profileimage {
border-radius: 50%;
}
Expand Down Expand Up @@ -142,7 +153,7 @@ <h1 class="page-header">Global Leaderboard</h1>
{% if leader.userprofile.winnings %}
<span class="pull-right badge">${{ leader.userprofile.winnings|default:""|floatformat }}</span>
{% endif %}
<span><kbd class="{{ leader.userprofile.get_title_display }} titleuser">{{ leader.userprofile.get_title_display }}</kbd></span>
<span><kbd class="{{ leader.userprofile.get_title_display|lower }} titleuser">{{ leader.userprofile.get_title_display }}</kbd></span>
</div>
{% endfor %}
{% endif %}
Expand Down

0 comments on commit dad3ec6

Please sign in to comment.