DashBoard.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. .box2_1920_1080 {
  37. width: 1920px;
  38. height: 1080px;
  39. background-image: url('/Img/bg04_1920x1080.png');
  40. background-repeat: no-repeat;
  41. background-position: center;
  42. }
  43. .box_title {
  44. margin-left: 10px;
  45. padding: 10px;
  46. color: #38dcff;
  47. font-size: 45px;
  48. font-weight: 600;
  49. }
  50. .box_title_arrow {
  51. color: rgba(255, 159, 64, .9);
  52. }
  53. .box_title_loading {
  54. padding-top:10px;
  55. padding-right: 220px;
  56. float: right;
  57. color: rgba(255, 255, 255, .2);
  58. font-size: 2.0rem;
  59. font-weight: normal;
  60. }
  61. .box_body {
  62. margin: 20px 40px 20px 40px;
  63. height: 960px;
  64. /*background-color:red;*/
  65. }
  66. .tr_title {
  67. height: 40px;
  68. color: #38dcff;
  69. font-size: 20px;
  70. font-weight: 700;
  71. background: rgba(25, 52, 90,.5);
  72. }
  73. .tr_bg_dark {
  74. height: 40px;
  75. color: #38dcff;
  76. font-size: 20px;
  77. font-weight: 100;
  78. background: rgba(25, 52, 90,.5);
  79. }
  80. .tr_bg_light {
  81. height: 40px;
  82. color: white;
  83. font-size: 20px;
  84. font-weight: 100;
  85. background: rgba(54, 162, 250,.2);
  86. }
  87. .tr_title_warning {
  88. height: 40px;
  89. /*color: rgb(255, 159, 64);*/
  90. color: #38dcff;
  91. font-size: 20px;
  92. font-weight: 700;
  93. background: rgba(25, 52, 90,.5);
  94. }
  95. .tr_bg_dark_warning {
  96. height: 40px;
  97. color: #38dcff;
  98. font-size: 20px;
  99. font-weight: 100;
  100. background: rgba(25, 52, 90,.5);
  101. }
  102. .tr_bg_light_warning {
  103. height: 40px;
  104. color: white;
  105. font-size: 20px;
  106. font-weight: 100;
  107. background: rgba(54, 162, 250,.3);
  108. }
  109. .tr_title_orange {
  110. height: 40px;
  111. /*color: rgb(255, 159, 64);*/
  112. color: #38dcff;
  113. font-size: 20px;
  114. font-weight: 700;
  115. background: rgba(25, 52, 90,.5);
  116. }
  117. .tr_bg_light_orange {
  118. height: 40px;
  119. color: white;
  120. font-size: 20px;
  121. font-weight: 100;
  122. background: rgba(54, 162, 250,.2);
  123. }
  124. td {
  125. padding: 10px;
  126. text-align: center;
  127. border-bottom: 1px solid #0b1929;
  128. border-right: 1px dashed #38dcff;
  129. }
  130. @keyframes blink {
  131. 0% {
  132. opacity: 1;
  133. }
  134. 100% {
  135. opacity: 0;
  136. }
  137. }
  138. @-webkit-keyframes blink {
  139. 0% {
  140. opacity: 1;
  141. }
  142. 100% {
  143. opacity: 0;
  144. }
  145. }
  146. @-moz-keyframes blink {
  147. 0% {
  148. opacity: 1;
  149. }
  150. 100% {
  151. opacity: 0;
  152. }
  153. }
  154. @-ms-keyframes blink {
  155. 0% {
  156. opacity: 1;
  157. }
  158. 100% {
  159. opacity: 0;
  160. }
  161. }
  162. @-o-keyframes blink {
  163. 0% {
  164. opacity: 1;
  165. }
  166. 100% {
  167. opacity: 0;
  168. }
  169. }
  170. .status_green {
  171. /*color:limegreen;*/
  172. color: #5de27c;
  173. animation: blink 1s linear infinite;
  174. -webkit-animation: blink 1s linear infinite;
  175. -moz-animation: blink 1s linear infinite;
  176. -ms-animation: blink 1s linear infinite;
  177. -o-animation: blink 1s linear infinite;
  178. }
  179. .status_yellow {
  180. /*color: yellow;*/
  181. /*color: rgb(54, 162, 250);*/
  182. color: rgb(54, 162, 250);
  183. }
  184. .status_red {
  185. /*color: orangered;*/
  186. color: rgb(255, 99, 132);
  187. animation: blink 1s linear infinite;
  188. -webkit-animation: blink 1s linear infinite;
  189. -moz-animation: blink 1s linear infinite;
  190. -ms-animation: blink 1s linear infinite;
  191. -o-animation: blink 1s linear infinite;
  192. }
  193. .status_blue {
  194. /*color: orangered;*/
  195. color: rgb(54, 162, 250);
  196. }
  197. .status_grey {
  198. color: grey;
  199. }
  200. .warning {
  201. /*color: rgba(255, 159, 64, .9);*/
  202. background-color: rgba(255, 159, 64, .2);
  203. padding: 8px;
  204. border: 2px solid rgba(255, 159, 64, .9);
  205. border-radius: 10px;
  206. }
  207. .danger {
  208. /*color: rgba(255, 159, 64, .9);*/
  209. background-color: rgba(255, 99, 132, .2);
  210. padding: 8px;
  211. border: 2px dashed rgba(255, 99, 132, .9);
  212. border-radius: 10px;
  213. }