added relative rank page

This commit is contained in:
Nico Melone
2025-01-28 16:05:19 -06:00
parent 7a5048e127
commit 9bd95c8ccd
5 changed files with 181 additions and 3 deletions

View File

@@ -24,8 +24,8 @@ main {
.arrow {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 20px solid black;
margin: 20px auto;
transform-origin: center;
@@ -38,3 +38,22 @@ main {
align-items: center; /* Vertically center the arrow with the text */
gap: 10px; /* Add spacing between the items */
}
.s-tier {
background-color: #ffeb3b; /* Bright yellow for S-Tier */
color: #000;
}
.a-tier {
background-color: #4caf50; /* Green for A-Tier */
color: #fff;
}
.other-tier {
background-color: #f44336; /* Red for other items */
color: #fff;
}
.mb-2{
list-style-type: none;
}