index.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. @font-face {
  2. font-family: 'inconsolata';
  3. src: url('files/inconsolata.woff') format('woff');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. *{
  8. box-sizing: border-box;
  9. }
  10. html {
  11. height: 100%;
  12. }
  13. body {
  14. background-color: #ffffff;
  15. margin: 0px;
  16. height: 100%;
  17. color: #555;
  18. font-family: 'inconsolata';
  19. font-size: 15px;
  20. line-height: 18px;
  21. overflow: hidden;
  22. }
  23. h1 {
  24. margin-top: 30px;
  25. margin-bottom: 40px;
  26. margin-left: 20px;
  27. font-size: 25px;
  28. font-weight: normal;
  29. }
  30. h2 {
  31. color: #454545;
  32. font-size: 18px;
  33. font-weight: normal;
  34. margin-top: 20px;
  35. margin-left: 20px;
  36. }
  37. h3 {
  38. color: #666;
  39. font-size: 16px;
  40. font-weight: normal;
  41. margin-top: 20px;
  42. margin-left: 20px;
  43. }
  44. a, li span {
  45. color: #2194CE;
  46. }
  47. a {
  48. text-decoration: none;
  49. }
  50. li span {
  51. cursor: pointer;
  52. }
  53. #panel {
  54. position: fixed;
  55. left: 0px;
  56. width: 260px;
  57. height: 100%;
  58. overflow: auto;
  59. background: #fafafa;
  60. }
  61. #panel ul {
  62. list-style-type: none;
  63. padding: 0px;
  64. margin-left: 20px;
  65. }
  66. iframe {
  67. position: absolute;
  68. border: 0px;
  69. left: 260px;
  70. width: calc(100% - 260px);
  71. height: 100%;
  72. overflow: auto;
  73. }
  74. .filterBlock{
  75. margin: 20px;
  76. position: relative;
  77. }
  78. .filterBlock p {
  79. margin: 0;
  80. }
  81. #filterInput {
  82. width: 100%;
  83. padding: 5px;
  84. font-family: inherit;
  85. font-size: 15px;
  86. outline: none;
  87. border: 1px solid #dedede;
  88. }
  89. #filterInput:focus{
  90. border: 1px solid #2194CE;
  91. }
  92. #clearFilterButton {
  93. position: absolute;
  94. right: 6px;
  95. top: 50%;
  96. margin-top: -8px;
  97. width: 16px;
  98. height: 16px;
  99. font-size: 14px;
  100. color: grey;
  101. text-align: center;
  102. line-height: 0;
  103. padding-top: 7px;
  104. opacity: .5;
  105. }
  106. #clearFilterButton:hover {
  107. opacity: 1;
  108. }
  109. .hidden {
  110. display: none;
  111. }
  112. #panel li b {
  113. font-weight: bold;
  114. }
  115. /* mobile */
  116. #expandButton {
  117. display: none;
  118. position: absolute;
  119. right: 20px;
  120. top: 12px;
  121. width: 32px;
  122. height: 32px;
  123. }
  124. #expandButton span {
  125. height: 2px;
  126. background-color: #2194CE;
  127. width: 16px;
  128. position: absolute;
  129. left: 8px;
  130. top: 10px;
  131. }
  132. #expandButton span:nth-child(1) {
  133. top: 16px;
  134. }
  135. #expandButton span:nth-child(2) {
  136. top: 22px;
  137. }
  138. @media all and ( max-width: 640px ) {
  139. h1{
  140. margin-top: 20px;
  141. margin-bottom: 20px;
  142. }
  143. #panel{
  144. position: absolute;
  145. left: 0;
  146. top: 0;
  147. height: 480px;
  148. width: 100%;
  149. right: 0;
  150. z-index: 100;
  151. overflow: hidden;
  152. border-bottom: 1px solid #dedede;
  153. }
  154. #navigation{
  155. position: absolute;
  156. left: 0;
  157. top: 90px;
  158. right: 0;
  159. bottom: 0;
  160. font-size: 17px;
  161. line-height: 22px;
  162. overflow: auto;
  163. }
  164. iframe{
  165. position: absolute;
  166. left: 0;
  167. top: 56px;
  168. width: 100%;
  169. height: calc(100% - 56px);
  170. }
  171. #expandButton{
  172. display: block;
  173. }
  174. #panel.collapsed{
  175. height: 56px;
  176. }
  177. }
粤ICP备19079148号