add medals table

This commit is contained in:
Fabrice Lamant
2024-08-04 12:03:04 +02:00
parent fc0b7e7d63
commit b6bf9ad1c1
18 changed files with 18208 additions and 1245 deletions

View File

@ -1751,6 +1751,9 @@ details.collapse summary::-webkit-details-marker {
.inline-block {
display: inline-block;
}
.flex {
display: flex;
}
.table {
display: table;
}
@ -1763,6 +1766,9 @@ details.collapse summary::-webkit-details-marker {
.w-1\/4 {
width: 25%;
}
.w-1\/6 {
width: 16.666667%;
}
.w-3\/5 {
width: 60%;
}
@ -1778,6 +1784,12 @@ details.collapse summary::-webkit-details-marker {
.min-w-24 {
min-width: 6rem;
}
.flex-auto {
flex: 1 1 auto;
}
.flex-none {
flex: none;
}
.rounded-box {
border-radius: var(--rounded-box, 1rem);
}
@ -1913,3 +1925,15 @@ html {
.red {
color: #EE334E;
}
.gold {
color: #FFD700;
}
.silver {
color: #C0C0C0;
}
.bronze {
color: #CD7F32;
}