style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. }
  64. #contents {
  65. }
  66. #contents li {
  67. white-space: normal;
  68. }
  69. #right_pannal {
  70. flex: 3;
  71. max-width: 20em;
  72. }
  73. #contents_foot {
  74. margin-bottom: 70vh;
  75. }
  76. #toc_content .level_2 {
  77. padding-left: 0.5em;
  78. }
  79. #toc_content .level_3 {
  80. padding-left: 1em;
  81. }
  82. #toc_content .level_4 {
  83. padding-left: 1.5em;
  84. }
  85. #toc_content .level_5 {
  86. padding-left: 2em;
  87. }
  88. .ui-dialog-titlebar {
  89. display: flex;
  90. justify-content: space-between;
  91. background-color: var(--btn-bg-color);
  92. padding: 5px;
  93. }
  94. .ui-widget-content {
  95. background-color: var(--bg-color);
  96. }
  97. .ui-dialog {
  98. box-shadow: 8px 8px 20px var(--border-shadow);
  99. }
  100. .active {
  101. background-color: var(--btn-hover-bg-color);
  102. }
  103. .icon_btn a {
  104. color: var(--main-color);
  105. }
  106. .icon_btn:hover a {
  107. color: var(--btn-hover-color);
  108. }
  109. .active a {
  110. color: var(--btn-hover-color);
  111. }
  112. chapter {
  113. display: inline-block;
  114. }
  115. .language-para {
  116. padding: 2px 2px;
  117. position: absolute;
  118. margin-top: 0;
  119. margin-left: -60px;
  120. font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Padauk", Arial, Verdana;
  121. }
  122. .level_0 {
  123. margin-left: 0;
  124. }
  125. .level_1 {
  126. margin-left: 1em;
  127. }
  128. .level_2 {
  129. margin-left: 2em;
  130. }
  131. .level_3 {
  132. margin-left: 3em;
  133. }
  134. .level_4 {
  135. margin-left: 4em;
  136. }
  137. .level_5 {
  138. margin-left: 5em;
  139. }
  140. .level_6 {
  141. margin-left: 6em;
  142. }
  143. .channal_list {
  144. white-space: nowrap;
  145. overflow-x: hidden;
  146. }
  147. .userinfo_channal {
  148. display: none;
  149. }
  150. .userinfo_channal:hover {
  151. display: block;
  152. }
  153. #para_path chapter {
  154. color: var(--link-color);
  155. font-size: 120%;
  156. }
  157. #para_path_next_level {
  158. display: inline-block;
  159. }