main.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. body, html, video, table, div, iframe, input, textarea, img, hr, blockquote, pre {
  2. max-width: 100%;
  3. }
  4. textarea {
  5. width: 100%;
  6. }
  7. input {
  8. width: 100%;
  9. box-sizing: border-box;
  10. }
  11. #last {
  12. margin-top: 30px;
  13. }
  14. #toc {
  15. border: 1px solid;
  16. padding: 20px;
  17. width: fit-content;
  18. width: -moz-fit-content;
  19. clear: both;
  20. margin-top: 10px;
  21. }
  22. table {
  23. border-collapse: collapse;
  24. }
  25. td {
  26. border: 1px solid;
  27. padding: 5px;
  28. }
  29. a {
  30. text-decoration: none;
  31. }
  32. .inside_ul li {
  33. margin-left: 20px;
  34. }
  35. #not_thing {
  36. color: red;
  37. }
  38. #inside, #out_link, #open {
  39. color: green;
  40. }
  41. #out_link::before {
  42. background: green;
  43. color: white;
  44. content: "E";
  45. margin-right: 2px;
  46. }
  47. input[type="checkbox"], input[type="radio"] {
  48. width: auto;
  49. }
  50. #list {
  51. padding: 10px;
  52. }
  53. #toron {
  54. width: 100%;
  55. }
  56. #toron_color_green {
  57. background: #99ffcd;
  58. }
  59. #toron_color_blue {
  60. background: #ffcbf9;
  61. }
  62. #toron_color_red {
  63. background: #fecabf;
  64. }
  65. #toron_color_grey {
  66. background: gainsboro;
  67. }
  68. #toron_color_not {
  69. display: none;
  70. }
  71. #cate {
  72. border: 1px solid;
  73. padding: 5px;
  74. margin-top: 20px;
  75. }
  76. img, iframe {
  77. max-width: 100%;
  78. }
  79. pre {
  80. border: 1px solid;
  81. padding: 10px;
  82. white-space: pre-wrap;
  83. }
  84. #in {
  85. margin-left: 20px;
  86. }
  87. #out {
  88. margin-left: 5px;
  89. }
  90. s, strike, del {
  91. color: gray;
  92. }
  93. s:hover, strike:hover, del:hover {
  94. color: gray;
  95. background-color: gainsboro;
  96. text-decoration: none;
  97. }
  98. #main_table_set {
  99. width: 100%;
  100. text-align: center;
  101. }
  102. #main_table_width {
  103. width: 33.3%;
  104. }
  105. #main_table_width_half {
  106. width: 50%;
  107. }
  108. #main_table_width_quarter {
  109. width: 25%;
  110. }
  111. #redirect {
  112. border: 1px solid;
  113. padding: 10px;
  114. }
  115. body {
  116. word-break: break-all;
  117. overflow: auto;
  118. }
  119. .main_hr {
  120. border: none;
  121. margin-top: 8px;
  122. margin-bottom: 8px;
  123. }
  124. #include_link {
  125. display: none;
  126. }
  127. #toc_title {
  128. font-size: 1.2rem;
  129. }
  130. #admin_log_search {
  131. width: 100px;
  132. }
  133. @media (max-width: 768px) {
  134. table {
  135. min-width: 100%;
  136. }
  137. .table_safe {
  138. min-width: 100%;
  139. }
  140. }
  141. .all_in_data {
  142. display: block;
  143. width: 100%;
  144. white-space: pre-wrap;
  145. }
  146. .table_safe {
  147. max-width: 100%;
  148. }
  149. .change_space {
  150. white-space: pre-line;
  151. }
  152. #topic_scroll {
  153. max-height: 500px;
  154. overflow: scroll;
  155. -ms-overflow-style: none;
  156. scrollbar-width: none;
  157. }
  158. #topic_scroll::-webkit-scrollbar {
  159. display: none;
  160. }
  161. .hidden_link {
  162. filter: blur(3px);
  163. }
  164. .hidden_link:hover {
  165. filter: none;
  166. }
  167. .content {
  168. height: 500px;
  169. }
  170. .topic_content {
  171. height: 200px;
  172. }
  173. .spead_footnote {
  174. background-color: #efefef;
  175. color: #555;
  176. border: 1px solid #cecece;
  177. }
  178. #footnote_data {
  179. border-top: 1px solid gainsboro;
  180. padding-top: 10px;
  181. }
  182. a {
  183. color: dodgerblue;
  184. }
  185. blockquote {
  186. padding: 15px 40px 15px 15px;
  187. margin: 15px 0 0;
  188. display: table;
  189. border: 2px solid #ccc;
  190. border-left: 5px solid black;
  191. background-image: url('/views/main_css/file/quote.png');
  192. background-position: calc(100% - 10px) 10px;
  193. background-repeat: no-repeat;
  194. background-size: 25px;
  195. }
  196. hr {
  197. border-top: 1px solid lightgray;
  198. }
  199. .render_content {
  200. white-space: pre-wrap;
  201. }