数据可视化大屏
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

42 řádky
821B

  1. .chart-card {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: space-around; /* 或者使用 space-between 根据您的喜好 */
  6. text-align: center;
  7. }
  8. .chart-text {
  9. margin: 0;
  10. font-size: 1.02rem;
  11. color: rgb(126 221 243 / 100%);
  12. }
  13. .chart-button {
  14. width: 12rem;
  15. height: 3rem;
  16. margin: 5px;
  17. font-size: 1.75rem;
  18. line-height: 1.02rem;
  19. color: rgb(255 0 0 / 100%);
  20. text-align: center;
  21. background-color: rgb(6 70 120 / 0%);
  22. background-image: url('/assets/dashboardButtonBg.png');
  23. background-repeat: no-repeat;
  24. background-position: center;
  25. background-size: contain; /* 或者可以使用 'contain' 根据你的需要 */
  26. border-width: 0;
  27. }
  28. .chart-container {
  29. width: 12rem;
  30. height: 12rem;
  31. }