2020-01-18 00:59:54 +08:00
|
|
|
.game-controller {
|
|
|
|
width: 500px;
|
|
|
|
padding: 20px;
|
|
|
|
.el-row {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2020-02-10 14:22:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.doudizhu-view-container {
|
|
|
|
width: 1000px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.doudizhu-gameboard-paper {
|
|
|
|
height: calc(100% - 7px*2);
|
|
|
|
margin: 5px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.doudizhu-probability-paper {
|
|
|
|
height: calc(100% - 5px*2);
|
|
|
|
margin: 5px;
|
|
|
|
|
|
|
|
.probability-player {
|
|
|
|
height: calc(72px - 16px*2);
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.probability-table {
|
|
|
|
display: table;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100% - 72px);
|
|
|
|
|
|
|
|
.probability-item {
|
|
|
|
display: table-row;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
|
|
|
}
|
|
|
|
.waiting {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.playing {
|
2020-02-11 13:40:31 +08:00
|
|
|
-webkit-transition: background-color 0.3s ease;
|
|
|
|
-ms-transition: background-color 0.3s ease;
|
|
|
|
transition: background-color 0.3s ease;
|
2020-02-10 14:22:57 +08:00
|
|
|
display: table-cell;
|
|
|
|
height: 152px;
|
|
|
|
vertical-align: middle;
|
2020-02-11 13:40:31 +08:00
|
|
|
|
|
|
|
.playingCards ul.hand {
|
2020-02-10 14:22:57 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2020-02-11 13:40:31 +08:00
|
|
|
|
2020-02-10 14:22:57 +08:00
|
|
|
.probability-move {
|
|
|
|
font-size: 10px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.non-card {
|
|
|
|
visibility: visible;
|
|
|
|
transition: visibility 0s, opacity 0.5s;
|
|
|
|
opacity: 1;
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 5%;
|
|
|
|
height: 25px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.non-card.hide {
|
|
|
|
visibility: hidden;
|
|
|
|
transition: visibility 0.1s, opacity 0.05s;
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-18 00:59:54 +08:00
|
|
|
}
|