charts.css 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. margin: 0;
  5. padding: 0;
  6. overflow-x: hidden;
  7. }
  8. .main {
  9. width: 100%;
  10. overflow: hidden;
  11. }
  12. .table-view {
  13. height: 100%;
  14. float: left;
  15. margin: 20px;
  16. width: 40%;
  17. }
  18. .table-view .table-container {
  19. width: 100%;
  20. margin-bottom: 50px;
  21. overflow: scroll;
  22. }
  23. .table-view th {
  24. padding: 5px 10px;
  25. background-color: #F7F7F7;
  26. }
  27. .table-view td {
  28. width: 50px;
  29. text-align: center;
  30. padding:0;
  31. }
  32. .table-container input {
  33. width: 40px;
  34. padding: 5px;
  35. border: none;
  36. outline: none;
  37. }
  38. .table-view caption {
  39. font-size: 18px;
  40. text-align: left;
  41. }
  42. .charts-view {
  43. /*margin-left: 49%!important;*/
  44. width: 50%;
  45. margin-left: 49%;
  46. height: 400px;
  47. }
  48. .charts-container {
  49. border-left: 1px solid #c3c3c3;
  50. }
  51. .charts-format fieldset {
  52. padding-left: 20px;
  53. margin-bottom: 50px;
  54. }
  55. .charts-format legend {
  56. padding-left: 10px;
  57. padding-right: 10px;
  58. }
  59. .format-item-container {
  60. padding: 20px;
  61. }
  62. .format-item-container label {
  63. display: block;
  64. margin: 10px 0;
  65. }
  66. .charts-format .data-item {
  67. border: 1px solid black;
  68. outline: none;
  69. padding: 2px 3px;
  70. }
  71. /* 图表类型 */
  72. .charts-type {
  73. margin-top: 50px;
  74. height: 300px;
  75. }
  76. .scroll-view {
  77. border: 1px solid #c3c3c3;
  78. border-left: none;
  79. border-right: none;
  80. overflow: hidden;
  81. }
  82. .scroll-container {
  83. margin: 20px;
  84. width: 100%;
  85. overflow: hidden;
  86. }
  87. .scroll-bed {
  88. width: 10000px;
  89. _margin-top: 20px;
  90. -webkit-transition: margin-left .5s ease;
  91. -moz-transition: margin-left .5s ease;
  92. transition: margin-left .5s ease;
  93. }
  94. .view-box {
  95. display: inline-block;
  96. *display: inline;
  97. *zoom: 1;
  98. margin-right: 20px;
  99. border: 2px solid white;
  100. line-height: 0;
  101. overflow: hidden;
  102. cursor: pointer;
  103. }
  104. .view-box img {
  105. border: 1px solid #cecece;
  106. }
  107. .view-box.selected {
  108. border-color: #7274A7;
  109. }
  110. .button-container {
  111. margin-bottom: 20px;
  112. text-align: center;
  113. }
  114. .button-container a {
  115. display: inline-block;
  116. width: 100px;
  117. height: 25px;
  118. line-height: 25px;
  119. border: 1px solid #c2ccd1;
  120. margin-right: 30px;
  121. text-decoration: none;
  122. color: black;
  123. -webkit-border-radius: 2px;
  124. -moz-border-radius: 2px;
  125. border-radius: 2px;
  126. }
  127. .button-container a:HOVER {
  128. background: #fcfcfc;
  129. }
  130. .button-container a:ACTIVE {
  131. border-top-color: #c2ccd1;
  132. box-shadow:inset 0 5px 4px -4px rgba(49, 49, 64, 0.1);
  133. }
  134. .edui-charts-not-data {
  135. height: 100px;
  136. line-height: 100px;
  137. text-align: center;
  138. }