scoreboard.less 922 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. h1 {
  2. font-size: 1.5em;
  3. }
  4. h2 {
  5. font-size: 1.12em;
  6. }
  7. .scoreboard {
  8. position: absolute;
  9. top: 0;
  10. bottom: 0;
  11. left: 0;
  12. width: 250px;
  13. border-right: 1px solid @border-color;
  14. z-index: -1;
  15. header {
  16. text-align: center;
  17. }
  18. }
  19. .scoreboard-players {
  20. display: flex;
  21. flex-direction: column;
  22. padding: 0;
  23. & > li {
  24. display: flex;
  25. padding: 10px;
  26. &.player-self .player-name {
  27. font-weight: 900;
  28. }
  29. &::before {
  30. display: inline-block;
  31. height: 0.75em;
  32. width: 0.75em;
  33. margin-top: (1em - @bullet-size) /2;
  34. margin-right: 5px;
  35. border-radius: 0.75em;
  36. content: " ";
  37. background: currentColor;
  38. }
  39. .player-name {
  40. flex: 1;
  41. }
  42. .player-score {
  43. margin-left: auto;
  44. }
  45. }
  46. }