2020-02-19 02:49:06 +08:00
|
|
|
.progress-bar {
|
|
|
|
margin: 5px;
|
|
|
|
}
|
2020-01-18 00:59:54 +08:00
|
|
|
.game-controller {
|
2020-02-13 13:13:05 +08:00
|
|
|
//width: calc(100% - 20px*2);
|
|
|
|
//padding: 20px;
|
|
|
|
//.el-row {
|
|
|
|
// margin-bottom: 10px;
|
|
|
|
//}
|
|
|
|
.game-controller-paper {
|
|
|
|
margin: 5px;
|
|
|
|
padding: 2px 10px;
|
2020-01-18 00:59:54 +08:00
|
|
|
}
|
2020-02-12 05:21:55 +08:00
|
|
|
|
|
|
|
.status-button {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
width: 125px;
|
|
|
|
}
|
2020-02-13 13:13:05 +08:00
|
|
|
|
|
|
|
.form-label-left {
|
|
|
|
float: left;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 11px 12px 11px 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 80px;
|
|
|
|
}
|
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;
|
2020-02-13 13:13:05 +08:00
|
|
|
|
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2020-02-10 14:22:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.probability-table {
|
|
|
|
display: table;
|
|
|
|
border-collapse: collapse;
|
2020-02-19 02:49:06 +08:00
|
|
|
|
|
|
|
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 {
|
|
|
|
-webkit-transition: background-color 0.3s ease;
|
|
|
|
-ms-transition: background-color 0.3s ease;
|
|
|
|
transition: background-color 0.3s ease;
|
|
|
|
display: table-cell;
|
|
|
|
height: 152px;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
.playingCards ul.hand {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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.2s, opacity 0.15s;
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.leduc-view-container {
|
|
|
|
width: 1000px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.leduc-gameboard-paper {
|
|
|
|
height: calc(100% - 7px*2);
|
|
|
|
margin: 5px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leduc-probability-paper {
|
|
|
|
height: calc(100% - 5px*2);
|
|
|
|
margin: 5px;
|
|
|
|
|
|
|
|
.probability-player {
|
|
|
|
height: calc(72px - 16px*2);
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.probability-table {
|
|
|
|
display: table;
|
|
|
|
border-collapse: collapse;
|
2020-02-10 14:22:57 +08:00
|
|
|
|
|
|
|
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;
|
2020-02-12 05:21:55 +08:00
|
|
|
transition: visibility 0.2s, opacity 0.15s;
|
2020-02-10 14:22:57 +08:00
|
|
|
opacity: 0;
|
|
|
|
pointer-events:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-18 00:59:54 +08:00
|
|
|
}
|