add.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:last-child {
  8. margin: 0;
  9. }
  10. .one {
  11. width: 96vw;
  12. text-align: center;
  13. .race {
  14. display: flex;
  15. flex-direction: column;
  16. height: 88.8vh;
  17. .button {
  18. display: flex;
  19. flex-direction: row;
  20. justify-content: space-around;
  21. padding: 5px 0;
  22. }
  23. .list {
  24. flex-grow: 1;
  25. position: relative;
  26. margin: 0 0 2vw 0;
  27. .scroll-view {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. right: 0;
  32. bottom: 0;
  33. .list-scroll-view {
  34. display: flex;
  35. flex-direction: column;
  36. .name {
  37. text-align: center;
  38. margin: 2vw 0;
  39. }
  40. }
  41. }
  42. }
  43. }
  44. }
  45. }