kline.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. blockquote,
  2. q {
  3. quotes: none;
  4. }
  5. blockquote:before,
  6. blockquote:after,
  7. q:before,
  8. q:after {
  9. content: '';
  10. content: none;
  11. }
  12. table {
  13. border-collapse: collapse;
  14. border-spacing: 0;
  15. }
  16. canvas {
  17. display: block;
  18. display: none
  19. }
  20. #loading {
  21. background-image: url(./img/loading.gif);
  22. z-index: 9999;
  23. position: absolute;
  24. top: 200px;
  25. width: 100px;
  26. height: 100px;
  27. display: none
  28. }
  29. .canvas_group {
  30. position: relative
  31. }
  32. .canvas_group canvas {
  33. left: 0;
  34. position: absolute;
  35. top: 0;
  36. }
  37. /* Box Model */
  38. *,
  39. *:before,
  40. *:after {
  41. -moz-box-sizing: border-box;
  42. -webkit-box-sizing: border-box;
  43. box-sizing: border-box;
  44. }
  45. .plot_container {
  46. /*min-width: 100%;*/
  47. width: 100%;
  48. height:100px;
  49. position: inherit;
  50. display: inline-block;
  51. top: 0px;
  52. left: 0px;
  53. right: 0px;
  54. bottom: 3px;
  55. overflow-x: none ;
  56. align-content: center;
  57. }
  58. #background{
  59. position:absolute;
  60. // width: 100%;
  61. // height:100px;
  62. background: url(./img/Klogo.png) 10% no-repeat;
  63. opacity: 0.3;
  64. background-size:100%;
  65. width: 440px;
  66. height: 170px;
  67. line-height: 170px;
  68. vertical-align: middle;
  69. text-align: center;
  70. }