ranking.less 692 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .list {
  2. display: flex;
  3. flex-direction: row;
  4. justify-content: space-between;
  5. padding: 5px;
  6. background-color: #fff;
  7. height: 50px;
  8. margin: 0 0 4px 0;
  9. .rank {
  10. width: 50px;
  11. height: 50px;
  12. border-radius: 50%;
  13. background-color: #cccccc;
  14. text-align: center;
  15. line-height: 50px;
  16. color: #fff;
  17. font-size: 18px;
  18. font-weight: 700;
  19. }
  20. .rank_1 {
  21. background-color: rgb(255, 196, 0);
  22. }
  23. .rank_2 {
  24. background-color: rgb(219, 151, 48);
  25. }
  26. .rank_3 {
  27. background-color: rgb(255, 114, 79);
  28. }
  29. .name {
  30. width: 75vw;
  31. line-height: 50px;
  32. }
  33. }