123456789101112131415161718192021222324252627282930313233 |
- .list {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 5px;
- background-color: #fff;
- height: 50px;
- margin: 0 0 4px 0;
- }
- .list .rank {
- width: 50px;
- height: 50px;
- border-radius: 50%;
- background-color: #cccccc;
- text-align: center;
- line-height: 50px;
- color: #fff;
- font-size: 18px;
- font-weight: 700;
- }
- .list .rank_1 {
- background-color: #ffc400;
- }
- .list .rank_2 {
- background-color: #db9730;
- }
- .list .rank_3 {
- background-color: #ff724f;
- }
- .list .name {
- width: 75vw;
- line-height: 50px;
- }
|