| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- h1 {
- font-size: 1.5em;
- }
- h2 {
- font-size: 1.12em;
- }
- .scoreboard {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- width: 250px;
- border-right: 1px solid @border-color;
- z-index: -1;
- header {
- text-align: center;
- }
- }
- .scoreboard-players {
- display: flex;
- flex-direction: column;
- padding: 0;
- & > li {
- display: flex;
- padding: 10px;
- &.player-self .player-name {
- font-weight: 900;
- }
- &::before {
- display: inline-block;
- height: 0.75em;
- width: 0.75em;
- margin-top: (1em - @bullet-size) /2;
- margin-right: 5px;
- border-radius: 0.75em;
- content: " ";
- background: currentColor;
- }
- .player-name {
- flex: 1;
- }
- .player-score {
- margin-left: auto;
- }
- }
- }
|