DashBoard.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. 
  2. @media screen and (min-width: 1900px) {
  3. html {
  4. overflow-x: hidden;
  5. overflow-y: hidden;
  6. }
  7. }
  8. body {
  9. margin: 0px;
  10. padding: 0px;
  11. background-color: transparent;
  12. }
  13. iframe {
  14. margin: 0px;
  15. padding: 0px;
  16. border: 0px solid black;
  17. overflow-x: hidden;
  18. overflow-y: hidden;
  19. }
  20. .col_1 {
  21. margin: 0px;
  22. padding: 0px;
  23. display: flex;
  24. flex-direction: column;
  25. width: 1920px;
  26. }
  27. .iframe_1920_1080 {
  28. width: 1920px;
  29. height: 1080px;
  30. border: 0px solid black;
  31. }
  32. .box_1920_1080 {
  33. width: 1920px;
  34. height: 1080px;
  35. background-image: url('/Img/bg04_1920x1080.png');
  36. background-repeat: no-repeat;
  37. background-position:center;
  38. }
  39. .box_title {
  40. margin-left:10px;
  41. padding:10px;
  42. color: #38dcff;
  43. font-size: 2.3rem;
  44. font-weight:700;
  45. }
  46. .box_title_arrow {
  47. color: rgba(255, 159, 64, .9);
  48. }
  49. .box_title_loading {
  50. padding-right: 120px;
  51. float: right;
  52. color: rgba(255, 255, 255, .2);
  53. font-size: 2.3rem;
  54. font-weight: normal;
  55. }
  56. .box_body {
  57. margin:20px 40px 20px 40px;
  58. height:960px;
  59. /*background-color:red;*/
  60. }
  61. .tr_title {
  62. height: 40px;
  63. color: #38dcff;
  64. font-size: 20px;
  65. font-weight: 700;
  66. background: rgba(25, 52, 90,.5);
  67. }
  68. .tr_bg_dark {
  69. height: 40px;
  70. color: #38dcff;
  71. font-size: 20px;
  72. font-weight: 100;
  73. background: rgba(25, 52, 90,.5);
  74. }
  75. .tr_bg_light {
  76. height: 40px;
  77. color: white;
  78. font-size: 20px;
  79. font-weight: 100;
  80. background: rgba(54, 162, 250,.2);
  81. }
  82. .tr_title_warning {
  83. height: 40px;
  84. /*color: rgb(255, 159, 64);*/
  85. color: #38dcff;
  86. font-size: 20px;
  87. font-weight: 700;
  88. background: rgba(25, 52, 90,.5);
  89. }
  90. .tr_bg_dark_warning {
  91. height: 40px;
  92. color: #38dcff;
  93. font-size: 20px;
  94. font-weight: 100;
  95. background: rgba(25, 52, 90,.5);
  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. }