2015-05-08 08:07:38 +00:00
|
|
|
#arena.chess{
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
left:0;
|
|
|
|
top:0;
|
|
|
|
transition:all 0s !important;
|
|
|
|
}
|
|
|
|
#arena.chess>#me,
|
|
|
|
#arena.chess>#mebg{
|
|
|
|
bottom:0;
|
|
|
|
top:auto;
|
|
|
|
border-radius:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chess-container{
|
|
|
|
width:100%;
|
|
|
|
height :calc(100% - 120px);
|
|
|
|
left:0;
|
|
|
|
top:0;
|
|
|
|
overflow:scroll;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
#chess{
|
|
|
|
margin-top:36px;
|
2015-05-10 05:34:37 +00:00
|
|
|
margin-bottom:36px;
|
2015-05-08 08:07:38 +00:00
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
#arena .card.thrown{
|
|
|
|
z-index:4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#handcards1{
|
|
|
|
height:120px;
|
|
|
|
padding:0;
|
|
|
|
top:calc(100% - 120px);
|
|
|
|
width:calc(100% - 240px);
|
|
|
|
left:120px;
|
|
|
|
}
|
|
|
|
#handcards2{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
#mebg,#me{
|
|
|
|
height:120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#system{
|
|
|
|
z-index:5;
|
|
|
|
}
|
|
|
|
#arena>.dialog{
|
|
|
|
width:400px;
|
|
|
|
height:240px;
|
|
|
|
left:calc(50% - 200px);
|
|
|
|
top:calc(50% - 120px);
|
|
|
|
background: rgba(0,0,0,0.2);
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px;
|
|
|
|
border-radius:8px;
|
|
|
|
}
|
2015-05-09 02:56:55 +00:00
|
|
|
#arena>.dialog.slim:not(.center){
|
|
|
|
top:40px;
|
|
|
|
}
|
2015-05-08 08:07:38 +00:00
|
|
|
#control{
|
|
|
|
top:calc(100% - 155px);
|
|
|
|
}
|
|
|
|
.fakeme{
|
|
|
|
width:120px;
|
|
|
|
height:120px;
|
|
|
|
border-radius:0px;
|
|
|
|
top:0;
|
|
|
|
}
|
|
|
|
.fakeme.avatar{
|
|
|
|
left:0;
|
|
|
|
background-size:cover;
|
|
|
|
}
|
|
|
|
.fakeme.player{
|
|
|
|
left:calc(100% - 120px);
|
|
|
|
overflow:scroll;
|
|
|
|
text-align:center;
|
|
|
|
}
|
|
|
|
.fakeme.player>div{
|
|
|
|
width:45px;
|
|
|
|
height:45px;
|
|
|
|
background-size:cover;
|
|
|
|
border-radius:4px;
|
|
|
|
position:relative;
|
|
|
|
left:0;
|
|
|
|
top:8px;
|
|
|
|
margin-left: 4px;
|
|
|
|
margin-right: 4px;
|
|
|
|
margin-bottom: 8px;
|
2015-05-11 11:57:44 +00:00
|
|
|
transition:box-shadow 0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fakeme.player>.selectable{
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(0, 133, 255, 1) 0 0 5px, rgba(0, 133, 255, 1) 0 0 10px;
|
|
|
|
}
|
|
|
|
.fakeme.player>.selected{
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px, rgba(255, 0, 0, 1) 0 0 5px, rgba(255, 0, 0, 1) 0 0 10px !important;
|
2015-05-08 08:07:38 +00:00
|
|
|
}
|
|
|
|
.fakeme.player>.dead{
|
|
|
|
-webkit-filter:grayscale(1);
|
|
|
|
opacity:0.5;
|
|
|
|
}
|
|
|
|
.card.drawing{
|
|
|
|
-webkit-animation: drawing2 1s;
|
|
|
|
-webkit-animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
|
|
|
|
.player.playergrid{
|
|
|
|
background: rgba(0,0,0,0.2);
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.3) 0 0 0 1px;
|
|
|
|
border-radius:8px;
|
|
|
|
}
|
2015-05-08 13:37:34 +00:00
|
|
|
.playergrid.temp{
|
|
|
|
opacity:0.3;
|
|
|
|
}
|
2015-05-09 02:56:55 +00:00
|
|
|
.chessscroll{
|
|
|
|
height:calc(100% - 162px);
|
|
|
|
width:20px;
|
|
|
|
top:42px;
|
|
|
|
z-index:1;
|
|
|
|
position:fixed;
|
|
|
|
}
|
|
|
|
.chessscroll.left{
|
|
|
|
left:0;
|
|
|
|
}
|
|
|
|
.chessscroll.right{
|
|
|
|
right:0;
|
|
|
|
}
|