style.css 619 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .root {
  2. display: flex;
  3. justify-content: center;
  4. align-items: flex-end;
  5. margin-top: 20px;
  6. }
  7. .axY {
  8. display: flex;
  9. position: relative;
  10. flex-direction: column-reverse;
  11. align-items: flex-end;
  12. width: 1px;
  13. background-color:black;
  14. }
  15. .axY span {
  16. margin-right: 5px;
  17. margin-bottom: 1px;
  18. }
  19. .axY span::after {
  20. position: absolute;
  21. content:'';
  22. width: 5px;
  23. height: 5px;
  24. border-radius: 100%;
  25. left: -2px;
  26. background-color: rgb(5, 3, 3);
  27. }
  28. .bar {
  29. width: 20px;
  30. border:1px solid black;
  31. margin-left: 1px;
  32. }
  33. .line {
  34. height: 0;
  35. width: 0;
  36. }