Added ranklist

This commit is contained in:
mrfry 2020-10-23 11:59:36 +02:00
parent b2982425f1
commit ebad81a75e
5 changed files with 7936 additions and 1 deletions

View file

@ -0,0 +1,67 @@
.row,
.headerRow {
display: flex;
padding: 3px;
}
.row:hover {
background-color: #333333;
}
.row div,
.headerRow div {
flex: 1;
padding: 0px 5px;
text-align: center;
}
.headerRow div {
padding: 15px 5px;
}
.row :nth-child(1),
.headerRow :nth-child(1) {
flex: 0 30px;
}
.row :nth-child(2),
.headerRow :nth-child(2) {
flex: 0 100px;
text-align: left;
}
.table {
display: flex;
flex-direction: column;
padding: 10px;
}
.table :nth-child(1) {
color: white;
}
.clickable:hover {
background-color: #666666;
}
.selfRow {
background-color: #9999ff;
color: black;
}
.selfRow:hover {
background-color: #9999ee;
}
.infoText {
text-align: center;
font-size: 20px;
}
.selected {
color: #9999ff;
}
.clickable {
cursor: pointer;
}