expression.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. body
  2. {
  3. margin:0;
  4. padding:0;
  5. font-size:12px;
  6. }
  7. .comment_div
  8. {
  9. position:absolute;
  10. background-color:#fafafa;
  11. border:1px solid #c9cfd6;
  12. width:740px;
  13. height:540px;
  14. top:50%;
  15. left:50%;
  16. margin-top:-270px;
  17. margin-left:-370px;
  18. }
  19. .top_div
  20. {
  21. height:60%;
  22. }
  23. .bottom_div
  24. {
  25. height:40%;
  26. font-size:13px;
  27. }
  28. .top_left_div
  29. {
  30. margin:5px;
  31. border:1px solid #A7D3F0;
  32. height:95%;
  33. float:left;
  34. width:75%;
  35. }
  36. .top_right_div
  37. {
  38. margin:5px;
  39. float:left;
  40. width:160px;
  41. height:95%;
  42. border:1px solid #A7D3F0;
  43. }
  44. .calTool
  45. {
  46. margin:3px;
  47. float:left;
  48. background:url(../images/calTools.png) 0 0 no-repeat;
  49. width:40px;
  50. height:40px;
  51. font-size:13px;
  52. font-weight:bold;
  53. text-align:center;
  54. line-height:38px;
  55. cursor:pointer;
  56. }
  57. .tool-hover
  58. {
  59. background-position: 0 -40px;
  60. }
  61. .title-div
  62. {
  63. line-height:27px;
  64. font-size:14px;
  65. font-weight:bold;
  66. }
  67. .expre-ul
  68. {
  69. width: 100%;
  70. height:85%;
  71. margin: 0;
  72. padding: 0;
  73. overflow:auto;
  74. }
  75. .bottom_toolbar
  76. {
  77. height:40px;
  78. margin:5px;
  79. }
  80. .toolbar_btn
  81. {
  82. background-position:0 -80px;
  83. width:80px;
  84. height:30px;
  85. font-size:13px;
  86. font-weight:bold;
  87. text-align:center;
  88. line-height:28px;
  89. cursor:pointer;
  90. margin:3px 10px;
  91. }
  92. .toolbar_btn_hover
  93. {
  94. background-position:0 -110px;
  95. }
  96. .result_table {
  97. width:100%;
  98. padding: 0;
  99. margin: 0;
  100. margin-top:8px;
  101. border-collapse:collapse;
  102. }
  103. .result_table th {
  104. width:90px;
  105. font-size: 13px;
  106. font-weight:bold;
  107. border: 1px solid #A8CFEB;
  108. background: #EDF6FC;
  109. font-size:13px;
  110. padding: 6px 6px 6px 12px;
  111. }
  112. .result_table td{
  113. border: 1px solid #A8CFEB;
  114. background: #fff;
  115. font-size:12px;
  116. padding: 6px 6px 6px 12px;
  117. }