wip
All checks were successful
fetch npm modules / f0ck the f0cker (push) Successful in 18s

This commit is contained in:
Kibi Kelburton 2024-07-04 01:18:37 +02:00
parent 3b29f5f9d5
commit ce7f854dd6
2 changed files with 64 additions and 47 deletions

View File

@ -1618,9 +1618,10 @@ span.placeholder {
} }
@media (max-width: 1325px) { @media (max-width: 1325px) {
.ranking { /* ranking page - idea */
/* .ranking {
grid-template-columns: 1fr 1fr !important; grid-template-columns: 1fr 1fr !important;
} } */
.by-user, .by-user,
.by-stats, .by-stats,
@ -2401,7 +2402,7 @@ table.table tbody tr:nth-of-type(odd) {
.ranking { .ranking {
display: grid; display: grid;
grid-template-columns: auto; grid-template-columns: auto;
justify-content: center; /* justify-content: center; */
} }
.ranking div { .ranking div {
@ -2414,15 +2415,15 @@ table.table tbody tr:nth-of-type(odd) {
} }
.by-user { .by-user {
grid-column: 1; grid-row: 1;
} }
.by-stats { .by-stats {
grid-column: 3; grid-row: 3;
} }
.by-hoster { .by-hoster {
grid-column: 2; grid-row: 2;
} }
/* tags */ /* tags */
@ -3016,3 +3017,7 @@ input#s_avatar {
#s_avatar:hover { #s_avatar:hover {
background: #ffffff0f; background: #ffffff0f;
} }
.theforceofthree {
display: grid;
grid-template-columns: 0.4fr 1fr 0.4fr;
}

View File

@ -1,12 +1,21 @@
@include(snippets/header) @include(snippets/header)
<div id="main"> <div id="main">
<div class="topf0ckers"> <div class="topf0ckers">
<h3>Top f0ckers of all time <br>- Ranking -</h3> <h3>f0ck Rankings?</h3>
</div>
<div class="theforceofthree">
<div class="triin">
</div> </div>
<div class="ranking"> <div class="ranking">
<div class="by-user"> <div class="by-user">
<h3>Biggest taggers</h3> <h3>Biggest taggers</h3>
<table class="table"> <table class="table">
<tr>
<th>Rank</th>
<th>Avatar</th>
<th>Username</th>
<th>Tagged</th>
</tr>
<tbody> <tbody>
@for(let i = 0; i < list.length; i++) @for(let i = 0; i < list.length; i++)
<tr> <tr>
@ -47,5 +56,8 @@
</table> </table>
</div> </div>
</div> </div>
<div class="triout">
</div>
</div>
</div> </div>
@include(snippets/footer) @include(snippets/footer)