common.less 696 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .container {
  2. display: grid;
  3. margin-bottom: 15px;
  4. & > div {
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. &:nth-child(1) {
  9. background-color: #ef342a;
  10. }
  11. &:nth-child(2) {
  12. background-color: #f68f26;
  13. }
  14. &:nth-child(3) {
  15. background-color: #4ba946;
  16. }
  17. &:nth-child(4) {
  18. background-color: #0376c2;
  19. }
  20. &:nth-child(5) {
  21. background-color: #c077af;
  22. }
  23. &:nth-child(6) {
  24. background-color: #f8d29d;
  25. }
  26. &:nth-child(7) {
  27. background-color: #b5a87f;
  28. }
  29. &:nth-child(8) {
  30. background-color: #d0e4a9;
  31. }
  32. &:nth-child(9) {
  33. background-color: #4dc7ec;
  34. }
  35. }
  36. }