index.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. body {
  2. max-width: 1100px;
  3. margin: 0 auto;
  4. padding: 20px;
  5. background: black;
  6. }
  7. .title {
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: flex-end;
  11. padding: 10px;
  12. color: #9799a1;
  13. }
  14. button{
  15. max-height:35px;
  16. color: #9799a1;
  17. background-color: black;
  18. }
  19. table {
  20. width: 100%;
  21. color: #9799a1;
  22. background: black;
  23. border-collapse: collapse;
  24. }
  25. table, th, td {
  26. border: 1px solid black;
  27. }
  28. th, td {
  29. text-align: center;
  30. padding: 8px;
  31. border: 1px solid #9799a1;
  32. }
  33. td.proxy{
  34. text-align: left;
  35. }
  36. th {
  37. text-align: center;
  38. background-color: black;
  39. }
  40. .status-0 {
  41. color: red;
  42. }
  43. .status-1 {
  44. color: orange;
  45. }
  46. .status-2 {
  47. color: green;
  48. }
  49. .status-3 {
  50. color: blue;
  51. }
  52. /* CSS styles for the modal */
  53. .modal {
  54. display: none;
  55. position: fixed;
  56. z-index: 1;
  57. left: 0;
  58. top: 0;
  59. width: 100%;
  60. height: 100%;
  61. overflow: auto;
  62. background-color: rgba(0,0,0,0.4);
  63. }
  64. .modal-content {
  65. color: #9799a1;
  66. background-color: black;
  67. margin: 15% auto;
  68. padding: 20px;
  69. border: 1px solid #888;
  70. width: 80%;
  71. }
  72. .close {
  73. color: #aaa;
  74. float: right;
  75. font-size: 28px;
  76. font-weight: bold;
  77. }
  78. .close:hover,
  79. .close:focus {
  80. color: black;
  81. text-decoration: none;
  82. cursor: pointer;
  83. }
  84. /* Loading 样式 */
  85. .loading {
  86. display: none;
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. width: 100%;
  91. height: 100%;
  92. background: rgba(0, 0, 0, 0.5);
  93. color: #9799a1;
  94. text-align: center;
  95. padding-top: 20%;
  96. z-index: 9999;
  97. }
  98. /* Loading 文本样式 */
  99. .loading-text {
  100. border-radius: 20px;
  101. color: #3f3f3e;
  102. background: #ffffff;
  103. padding: 35px;
  104. display: inline-block;
  105. font-size: 24px;
  106. }