charts.css 2.6 KB

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