demo.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  2. margin: 0;
  3. padding: 0;
  4. border: 0;
  5. outline: 0;
  6. font-weight: inherit;
  7. font-style: inherit;
  8. font-size: 100%;
  9. font-family: inherit;
  10. vertical-align: baseline;
  11. }
  12. body {
  13. color: #2f332a;
  14. font: 15px/21px Arial, Helvetica, simsun, sans-serif;
  15. background: #f0f6e4 \9;
  16. }
  17. h1, h2, h3, h4, h5, h6 {
  18. color: #2f332a;
  19. font-weight: bold;
  20. font-family: Helvetica, Arial, sans-serif;
  21. padding-bottom: 5px;
  22. }
  23. h1 {
  24. font-size: 24px;
  25. line-height: 34px;
  26. text-align: center;
  27. }
  28. h2 {
  29. font-size: 14px;
  30. line-height: 24px;
  31. padding-top: 5px;
  32. }
  33. h6 {
  34. font-weight: normal;
  35. font-size: 12px;
  36. letter-spacing: 1px;
  37. line-height: 24px;
  38. text-align: center;
  39. }
  40. a {
  41. color: #3C6E31;
  42. text-decoration: underline;
  43. }
  44. a:hover {
  45. background-color: #3C6E31;
  46. color: white;
  47. }
  48. input.radio {
  49. margin: 0 2px 0 8px;
  50. }
  51. input.radio.first {
  52. margin-left: 0;
  53. }
  54. input.empty {
  55. color: lightgray;
  56. }
  57. code {
  58. color: #2f332a;
  59. }
  60. .highlight_red {
  61. color: #A60000;
  62. }
  63. .highlight_green {
  64. color: #A7F43D;
  65. }
  66. li {
  67. list-style: circle;
  68. font-size: 12px;
  69. }
  70. li.title {
  71. list-style: none;
  72. }
  73. ul.list {
  74. margin-left: 17px;
  75. }
  76. div.content_wrap {
  77. width: 600px;
  78. height: 380px;
  79. }
  80. div.content_wrap div.left {
  81. float: left;
  82. width: 250px;
  83. }
  84. div.content_wrap div.right {
  85. float: right;
  86. width: 340px;
  87. }
  88. div.zTreeDemoBackground {
  89. width: 250px;
  90. height: 362px;
  91. text-align: left;
  92. }
  93. ul.ztree {
  94. margin-top: 10px;
  95. border: 1px solid #617775;
  96. background: #f0f6e4;
  97. width: 220px;
  98. height: 360px;
  99. overflow-y: scroll;
  100. overflow-x: auto;
  101. }
  102. ul.log {
  103. border: 1px solid #617775;
  104. background: #f0f6e4;
  105. width: 300px;
  106. height: 170px;
  107. overflow: hidden;
  108. }
  109. ul.log.small {
  110. height: 45px;
  111. }
  112. ul.log li {
  113. color: #666666;
  114. list-style: none;
  115. padding-left: 10px;
  116. }
  117. ul.log li.dark {
  118. background-color: #E3E3E3;
  119. }
  120. /* ruler */
  121. div.ruler {
  122. height: 20px;
  123. width: 220px;
  124. background-color: #f0f6e4;
  125. border: 1px solid #333;
  126. margin-bottom: 5px;
  127. cursor: pointer
  128. }
  129. div.ruler div.cursor {
  130. height: 20px;
  131. width: 30px;
  132. background-color: #3C6E31;
  133. color: white;
  134. text-align: right;
  135. padding-right: 5px;
  136. cursor: pointer
  137. }