style.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. #search_result {
  2. position: absolute;
  3. background: wheat;
  4. max-width: 95%;
  5. width: 24em;
  6. }
  7. .icon {
  8. width: 15px;
  9. height: 15px;
  10. }
  11. .submenu_title {
  12. font-size: 120%;
  13. font-weight: 700;
  14. }
  15. #head_bar {
  16. display: flex;
  17. justify-content: space-between;
  18. /*height: 5em;*/
  19. background-color: var(--tool-bg-color1);
  20. border-bottom: 1px solid var(--tool-line-color);
  21. padding: 10px;
  22. margin-top: 50px;
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. width: 100%;
  27. z-index: 100;
  28. }
  29. .main_view {
  30. padding: 0 1em;
  31. padding-top: 7em;
  32. max-width: 1280px;
  33. margin-left: auto;
  34. margin-right: auto;
  35. }
  36. .fun_frame {
  37. border-bottom: 1px solid gray;
  38. margin-right: 10px;
  39. margin-bottom: 10px;
  40. }
  41. .fun_frame .title {
  42. padding: 6px;
  43. font-weight: 700;
  44. }
  45. .fun_frame > .content {
  46. padding: 6px;
  47. max-height: 6em;
  48. overflow-y: scroll;
  49. }
  50. .fixed {
  51. position: fixed;
  52. right: 0;
  53. top: 0;
  54. }
  55. .when_right_fixed {
  56. padding-right: 20em;
  57. }
  58. #contents_view {
  59. display: flex;
  60. }
  61. #contents_div {
  62. flex: 7;
  63. padding: 0 1em 0 30px;
  64. width: 70vw;
  65. }
  66. #contents {
  67. }
  68. #contents li {
  69. white-space: normal;
  70. }
  71. #right_pannal {
  72. flex: 3;
  73. max-width: 20em;
  74. }
  75. #contents_foot {
  76. margin-bottom: 70vh;
  77. }
  78. #toc_content .level_2 {
  79. padding-left: 0.5em;
  80. }
  81. #toc_content .level_3 {
  82. padding-left: 1em;
  83. }
  84. #toc_content .level_4 {
  85. padding-left: 1.5em;
  86. }
  87. #toc_content .level_5 {
  88. padding-left: 2em;
  89. }
  90. .ui-dialog-titlebar {
  91. display: flex;
  92. justify-content: space-between;
  93. background-color: var(--btn-bg-color);
  94. padding: 5px;
  95. }
  96. .ui-widget-content {
  97. background-color: var(--bg-color);
  98. }
  99. .ui-dialog {
  100. box-shadow: 8px 8px 20px var(--border-shadow);
  101. }
  102. .active {
  103. background-color: var(--btn-hover-bg-color);
  104. }
  105. .icon_btn a {
  106. color: var(--main-color);
  107. }
  108. .icon_btn:hover a {
  109. color: var(--btn-hover-color);
  110. }
  111. .active a {
  112. color: var(--btn-hover-color);
  113. }
  114. note:hover chapter {
  115. display: inline-block;
  116. }
  117. .language-para {
  118. padding: 2px 2px;
  119. position: absolute;
  120. margin-top: 0;
  121. margin-left: -60px;
  122. font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Noto Sans Myanmar", Arial, Verdana;
  123. color: var(--main-color1);
  124. font-size: 80%;
  125. }
  126. .level_0 {
  127. margin-left: 0;
  128. }
  129. .level_1 {
  130. margin-left: 1em;
  131. }
  132. .level_2 {
  133. margin-left: 2em;
  134. }
  135. .level_3 {
  136. margin-left: 3em;
  137. }
  138. .level_4 {
  139. margin-left: 4em;
  140. }
  141. .level_5 {
  142. margin-left: 5em;
  143. }
  144. .level_6 {
  145. margin-left: 6em;
  146. }
  147. .channal_list {
  148. white-space: nowrap;
  149. overflow-x: hidden;
  150. }
  151. .userinfo_channal {
  152. display: none;
  153. }
  154. .userinfo_channal:hover {
  155. display: block;
  156. }
  157. #para_path chapter {
  158. color: var(--link-color);
  159. font-size: 120%;
  160. }
  161. #para_path_next_level {
  162. display: inline-block;
  163. }
  164. #path_div chapter {
  165. display: inline-block;
  166. }