Ranking: Display players gear
This commit is contained in:
parent
b5c9be6b87
commit
bd7c49a65d
2 changed files with 79 additions and 6 deletions
|
|
@ -270,10 +270,46 @@ body {
|
|||
left: 510px;
|
||||
top: 95px;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
gap: 12px;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.gear-wrapper {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.gear-wrapper.main {
|
||||
width: 130px;
|
||||
height: 112px;
|
||||
}
|
||||
|
||||
.gear-wrapper.sub {
|
||||
width: 84px;
|
||||
height: 73px;
|
||||
}
|
||||
|
||||
.gear-bg {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.gear-icon {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
width: 85%;
|
||||
height: 85%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.gear-main { width: 130px; height: 112px; }
|
||||
.gear-sub { width: 84px; height: 73px; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue