2015-10-31 10:14:14 +00:00
|
|
|
.player .equips{
|
|
|
|
width:120px;
|
|
|
|
height:auto;
|
|
|
|
top:auto;
|
|
|
|
right:auto;
|
|
|
|
bottom:18px;
|
2015-11-06 10:05:08 +00:00
|
|
|
left:10px;
|
2015-10-31 10:14:14 +00:00
|
|
|
text-align:left;
|
|
|
|
}
|
2015-11-30 13:08:29 +00:00
|
|
|
#arena.slim_player .player .equips{
|
|
|
|
left: 7px;
|
|
|
|
}
|
2017-01-21 07:34:31 +00:00
|
|
|
#arena.uslim_player .player .equips{
|
|
|
|
left: 3px;
|
|
|
|
}
|
2015-10-31 10:14:14 +00:00
|
|
|
.player.minskin .equips{
|
2015-11-05 02:34:35 +00:00
|
|
|
transform:scale(0.73);
|
|
|
|
transform-origin:bottom left;
|
2015-10-31 10:14:14 +00:00
|
|
|
}
|
|
|
|
.player .equips>.card{
|
|
|
|
position:relative;
|
|
|
|
width:100%;
|
|
|
|
height:22px;
|
|
|
|
line-height:22px;
|
|
|
|
margin-top:0;
|
|
|
|
margin-bottom:0;
|
|
|
|
background:linear-gradient(to right,rgba(0,0,0,0.3),transparent),
|
2016-05-12 13:11:22 +00:00
|
|
|
linear-gradient(135deg,rgba(0,0,0,0.5) ,transparent 80%,transparent) !important;
|
2015-10-31 10:14:14 +00:00
|
|
|
box-shadow:none;
|
|
|
|
color:white;
|
|
|
|
text-shadow:black 0 0 2px;
|
2015-11-05 02:34:35 +00:00
|
|
|
animation: card_start2x 0.5s;
|
2015-10-31 10:14:14 +00:00
|
|
|
-webkit-animation: card_start2x 0.5s;
|
|
|
|
display:block;
|
|
|
|
left:0;
|
|
|
|
top:0;
|
|
|
|
transition:all 0.5s;
|
|
|
|
|
|
|
|
border-radius:0;
|
|
|
|
border-width: 1px 0 0;
|
|
|
|
border-style:solid;
|
|
|
|
border-image:linear-gradient(to right, rgba(0, 0, 0,0.4) 70%,transparent) 100% 0 0;
|
|
|
|
}
|
|
|
|
.player .equips>.card>.image{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.player.unseen .equips>.card{
|
|
|
|
background:none;
|
|
|
|
/*border-image:linear-gradient(to right, transparent,rgba(0,0,0,0.4) 10%,rgba(0, 0, 0,0.4) 70%,transparent) 100% 0 0;*/
|
|
|
|
}
|
|
|
|
.player.unseen .equips>.card{
|
|
|
|
border-image:linear-gradient(to right, transparent,rgba(0,0,0,0.4) 10%,rgba(0, 0, 0,0.4) 70%,transparent) 100% 0 0;
|
|
|
|
}
|
|
|
|
.player.unseen .equips>.card:first-child{
|
|
|
|
border-image:linear-gradient(transparent,transparent);
|
|
|
|
}
|
|
|
|
.player .equips>.card.selected{
|
|
|
|
background:linear-gradient(to right,rgba(0, 133, 255,0.3),transparent),
|
2016-05-15 02:32:58 +00:00
|
|
|
linear-gradient(135deg,rgba(0, 133, 255,0.5) ,transparent 80%,transparent) !important;
|
2015-10-31 10:14:14 +00:00
|
|
|
box-shadow:none !important;
|
|
|
|
border-width: 1px 0 0;
|
|
|
|
border-style:solid;
|
|
|
|
border-image:linear-gradient(to right, rgba(0, 103, 205,0.4) 70%,transparent) 100% 0 0;
|
|
|
|
}
|
|
|
|
.player .equips>.card.fire{
|
|
|
|
color: rgb(255,119,63);
|
|
|
|
}
|
|
|
|
.player .equips>.card.thunder{
|
|
|
|
color: rgb(117,186,255);
|
|
|
|
}
|
|
|
|
.player .equips>.card.poison{
|
|
|
|
color: rgb(104,221,127);
|
|
|
|
}
|
|
|
|
.player .equips>.card.brown{
|
|
|
|
color: rgb(195,161,223);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.equips>.card>.background{
|
|
|
|
display:none !important;
|
|
|
|
}
|
|
|
|
.equips>.card>.name2{
|
|
|
|
display:block;
|
|
|
|
margin-left:5px;
|
|
|
|
}
|
|
|
|
.equips>.card>div{
|
2015-11-05 02:34:35 +00:00
|
|
|
animation:none !important;
|
2015-10-31 10:14:14 +00:00
|
|
|
-webkit-animation:none !important;
|
|
|
|
}
|
|
|
|
.equips>.card>.name,
|
|
|
|
.equips>.card>.info{
|
|
|
|
display:none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.equips>.removing{
|
|
|
|
margin-top:-12px !important;
|
|
|
|
margin-bottom:-11px !important;
|
2015-11-05 02:34:35 +00:00
|
|
|
transform:scale(1);
|
2015-10-31 10:14:14 +00:00
|
|
|
}
|
|
|
|
.equips>.removing+.removing{
|
|
|
|
margin-top:-23px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.player.linked .equips{
|
2015-11-06 10:05:08 +00:00
|
|
|
transform:rotate(90deg) translate(-152px,-6px);
|
2015-11-05 02:34:35 +00:00
|
|
|
transform-origin:bottom left;
|
2015-10-31 10:14:14 +00:00
|
|
|
}
|
2015-11-30 13:08:29 +00:00
|
|
|
#arena.slim_player .player.linked .equips{
|
|
|
|
transform:rotate(90deg) translate(-155px,-6px);
|
|
|
|
}
|
2017-01-21 07:34:31 +00:00
|
|
|
#arena.uslim_player .player.linked .equips{
|
|
|
|
transform:rotate(90deg) translate(-159px,-6px);
|
|
|
|
}
|
2015-10-31 10:14:14 +00:00
|
|
|
.player.minskin.linked .equips{
|
2015-11-09 03:15:16 +00:00
|
|
|
transform:rotate(90deg) translate(-92px,-6px) scale(0.73);
|
2015-10-31 10:14:14 +00:00
|
|
|
}
|
2015-11-30 13:08:29 +00:00
|
|
|
#arena.slim_player .player.minskin.linked .equips{
|
|
|
|
transform:rotate(90deg) translate(-95px,-6px) scale(0.73);
|
|
|
|
}
|
2017-01-21 07:34:31 +00:00
|
|
|
#arena.uslim_player .player.minskin.linked .equips{
|
|
|
|
transform:rotate(90deg) translate(-99px,-6px) scale(0.73);
|
|
|
|
}
|
2015-10-31 10:14:14 +00:00
|
|
|
.player.linked .identity{
|
2015-11-05 02:34:35 +00:00
|
|
|
transform:rotate(90deg);
|
2015-10-31 10:14:14 +00:00
|
|
|
}
|