数据可视化大屏
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

74 lines
1.3KB

  1. .sys-status-title{
  2. font-size: 18px;
  3. font-weight: 600;
  4. color: #94DDF3;
  5. text-align: center;
  6. }
  7. .ag-theme-datav {
  8. --ag-border-color: #74FAFB;
  9. --ag-foreground-color: #74FAFB;
  10. --ag-background-color: #0A1632;
  11. --ag-header-foreground-color: #74FAFB;
  12. --ag-header-background-color: #0A1632;
  13. --ag-odd-row-background-color: #0A1632;
  14. --ag-header-column-resize-handle-color: rgb(126 46 132);
  15. --ag-font-size: 17px;
  16. --ag-font-family: monospace;
  17. height: 6rem;
  18. }
  19. .centered-element {
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. height: 100%; /* 如果需要垂直居中,可以设置高度为 100% */
  24. }
  25. .status-container {
  26. display: flex;
  27. align-items: center;
  28. padding: 0.5rem;
  29. }
  30. .status-circle {
  31. width: 24px;
  32. height: 24px;
  33. border-radius: 50%;
  34. &.red{
  35. background-color: red;
  36. }
  37. &.green{
  38. background-color:green;
  39. }
  40. }
  41. .status-text {
  42. margin-left: 10px; /* 调整文字与圆形之间的间距 */
  43. font-size: 18px;
  44. font-weight: 600;
  45. color: #74FAFB;
  46. }
  47. .progress-container{
  48. display: flex;
  49. color: white;
  50. }
  51. .progress-display{
  52. color: white;
  53. text-align: right;
  54. }
  55. .statistic-item-container{
  56. display: flex;
  57. padding: 1rem 0;
  58. color: white;
  59. }
  60. .white-color-theme{
  61. color: #74FAFB;
  62. }