DashBoard.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. html {
  2. overflow-x: hidden;
  3. overflow-y: hidden;
  4. }
  5. body {
  6. margin: 0px;
  7. padding: 0px;
  8. background-color: transparent;
  9. }
  10. iframe {
  11. margin: 0px;
  12. padding: 0px;
  13. border: 0px solid black;
  14. overflow-x: hidden;
  15. overflow-y: hidden;
  16. }
  17. .col_1 {
  18. margin: 0px;
  19. padding: 0px;
  20. display: flex;
  21. flex-direction: column;
  22. width: 1920px;
  23. }
  24. .iframe_1920_1080 {
  25. width: 1920px;
  26. height: 1080px;
  27. border: 0px solid black;
  28. }
  29. .box_1920_1080 {
  30. width: 1920px;
  31. height: 1080px;
  32. background-image: url('/Img/bg03_1920x1080.png');
  33. background-repeat: no-repeat;
  34. background-position:center;
  35. }
  36. .box_title {
  37. margin-left:10px;
  38. padding:10px;
  39. color: #38dcff;
  40. font-size: 2.3rem;
  41. font-weight:700;
  42. }
  43. .box_title_arrow {
  44. color: rgba(255, 159, 64, .9);
  45. }
  46. .box_title_loading {
  47. padding-right: 120px;
  48. float: right;
  49. color: rgba(255, 255, 255, .2);
  50. font-size: 2.3rem;
  51. font-weight: normal;
  52. }
  53. .box_body {
  54. margin:20px 40px 20px 40px;
  55. height:960px;
  56. /*background-color:red;*/
  57. }
  58. .tr_title {
  59. height: 40px;
  60. color: #38dcff;
  61. font-size: 20px;
  62. font-weight: 700;
  63. background: rgba(25, 52, 90,.5);
  64. }
  65. .tr_bg_dark {
  66. height: 40px;
  67. color: #38dcff;
  68. font-size: 20px;
  69. font-weight: 100;
  70. background: rgba(25, 52, 90,.5);
  71. }
  72. .tr_bg_light {
  73. height: 40px;
  74. color: white;
  75. font-size: 20px;
  76. font-weight: 100;
  77. background: rgba(54, 162, 250,.2);
  78. }
  79. .tr_title_warning {
  80. height: 40px;
  81. /*color: rgb(255, 159, 64);*/
  82. color: #38dcff;
  83. font-size: 20px;
  84. font-weight: 700;
  85. background: rgba(25, 52, 90,.5);
  86. }
  87. .tr_bg_dark_warning {
  88. height: 40px;
  89. border: none;
  90. color: #38dcff;
  91. font-size: 20px;
  92. background: rgba(25, 52, 90,.5);
  93. }
  94. .table_broder_None {
  95. border-collapse: collapse;
  96. }
  97. .tr_bg_light_warning {
  98. height: 40px;
  99. color: white;
  100. font-size: 20px;
  101. font-weight: 100;
  102. background: rgba(54, 162, 250,.2);
  103. }
  104. td {
  105. padding: 10px;
  106. text-align: center;
  107. border-bottom: 1px solid #0b1929;
  108. border-right: 1px dashed #38dcff;
  109. }
  110. @keyframes blink {
  111. 0% {
  112. opacity: 1;
  113. }
  114. 100% {
  115. opacity: 0;
  116. }
  117. }
  118. @-webkit-keyframes blink {
  119. 0% {
  120. opacity: 1;
  121. }
  122. 100% {
  123. opacity: 0;
  124. }
  125. }
  126. @-moz-keyframes blink {
  127. 0% {
  128. opacity: 1;
  129. }
  130. 100% {
  131. opacity: 0;
  132. }
  133. }
  134. @-ms-keyframes blink {
  135. 0% {
  136. opacity: 1;
  137. }
  138. 100% {
  139. opacity: 0;
  140. }
  141. }
  142. @-o-keyframes blink {
  143. 0% {
  144. opacity: 1;
  145. }
  146. 100% {
  147. opacity: 0;
  148. }
  149. }
  150. .status_green {
  151. /*color:limegreen;*/
  152. color: #5de27c;
  153. animation: blink 1s linear infinite;
  154. -webkit-animation: blink 1s linear infinite;
  155. -moz-animation: blink 1s linear infinite;
  156. -ms-animation: blink 1s linear infinite;
  157. -o-animation: blink 1s linear infinite;
  158. }
  159. .status_yellow {
  160. /*color: yellow;*/
  161. /*color: rgb(54, 162, 250);*/
  162. color: rgb(54, 162, 250);
  163. }
  164. .status_red {
  165. /*color: orangered;*/
  166. color: rgb(255, 99, 132);
  167. animation: blink 1s linear infinite;
  168. -webkit-animation: blink 1s linear infinite;
  169. -moz-animation: blink 1s linear infinite;
  170. -ms-animation: blink 1s linear infinite;
  171. -o-animation: blink 1s linear infinite;
  172. }
  173. .status_blue {
  174. /*color: orangered;*/
  175. color: rgb(54, 162, 250);
  176. }
  177. .status_grey {
  178. color: grey;
  179. }
  180. .warning {
  181. /*color: rgba(255, 159, 64, .9);*/
  182. background-color: rgba(255, 159, 64, .2);
  183. padding: 8px;
  184. border: 2px solid rgba(255, 159, 64, .9);
  185. border-radius: 10px;
  186. }
  187. .danger {
  188. /*color: rgba(255, 159, 64, .9);*/
  189. background-color: rgba(255, 99, 132, .2);
  190. padding: 8px;
  191. border: 2px dashed rgba(255, 99, 132, .9);
  192. border-radius: 10px;
  193. }