50 lines
627 B
CSS
50 lines
627 B
CSS
.scoreStats {
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin-right: 5px;
|
|
min-width: 135px;
|
|
|
|
display: flex;
|
|
justify-content: right;
|
|
flex-direction: column;
|
|
align-items: right;
|
|
}
|
|
|
|
.scoreStats p {
|
|
font-size: 38px;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
.scoreStatsLeft {
|
|
text-align: right;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.scoreStatsRight {
|
|
text-align: left;
|
|
}
|
|
|
|
.scoreStatsAverageCut {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.scoreStatsHands {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.scoreStatsHands p {
|
|
min-width: 68px;
|
|
}
|
|
|
|
.scoreStatsHands div {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.scoreStatsInfo {
|
|
margin-right: 10px;
|
|
text-align: right;
|
|
}
|