main.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /* 기본 전체 옵션 */
  2. body, html, video, table, iframe, input, textarea, img, hr, blockquote, pre, iframe, .table_safe {
  3. max-width: 100%;
  4. }
  5. body {
  6. word-break: break-all;
  7. overflow: auto;
  8. }
  9. /* 텍스트 필드 */
  10. textarea, input {
  11. width: 100%;
  12. }
  13. input {
  14. box-sizing: border-box;
  15. }
  16. input[type="checkbox"], input[type="radio"] {
  17. width: auto;
  18. }
  19. /* 테이블 */
  20. table {
  21. border-collapse: collapse;
  22. }
  23. td {
  24. border: 1px solid gainsboro;
  25. padding: 5px 10px;
  26. }
  27. /* 링크 */
  28. a {
  29. color: dodgerblue;
  30. text-decoration: none;
  31. }
  32. #not_thing {
  33. color: red;
  34. }
  35. #inside, #out_link, #out_link::before, .opennamuLinkOut {
  36. color: green;
  37. }
  38. #out_link::before, .opennamuLinkOut::before {
  39. content: '🅴';
  40. font-weight: lighter;
  41. background: transparent;
  42. }
  43. #include_link {
  44. display: none;
  45. }
  46. .hidden_link {
  47. filter: blur(3px);
  48. }
  49. .hidden_link:hover {
  50. filter: none;
  51. }
  52. /* 리스트 */
  53. .inside_ul li {
  54. margin-left: 20px;
  55. }
  56. /* 토론 관련 */
  57. #toron, .opennamu_comment {
  58. width: 100%;
  59. }
  60. #toron_color_green, .opennamu_comment_color_green {
  61. background: palegreen;
  62. }
  63. #toron_color_blue, .opennamu_comment_color_blue {
  64. background: paleturquoise;
  65. }
  66. #toron_color_red, .opennamu_comment_color_red {
  67. background: palevioletred;
  68. }
  69. #toron_color_normal, .opennamu_comment_color_default {
  70. background: palegoldenrod;
  71. }
  72. #toron_color_grey, .opennamu_comment_color_gray {
  73. background: gainsboro;
  74. }
  75. #toron_color_not, .opennamu_comment_blind {
  76. display: none;
  77. }
  78. #topic_scroll, .opennamu_comment_scroll {
  79. max-height: 500px;
  80. overflow: scroll;
  81. -ms-overflow-style: none;
  82. scrollbar-width: none;
  83. }
  84. #topic_scroll::-webkit-scrollbar, .opennamu_comment_scroll::-webkit-scrollbar {
  85. display: none;
  86. }
  87. .topic_content {
  88. height: 200px;
  89. }
  90. /* 위키 내용 관련 */
  91. #toc, .opennamu_TOC {
  92. border: 1px solid gainsboro;
  93. padding: 20px;
  94. width: fit-content;
  95. width: -moz-fit-content;
  96. clear: both;
  97. margin-top: 10px;
  98. }
  99. #cate, pre, #redirect {
  100. border: 1px solid gainsboro;
  101. padding: 10px;
  102. }
  103. #cate {
  104. margin-top: 20px;
  105. }
  106. pre {
  107. white-space: pre-wrap;
  108. }
  109. #toc_title, .opennamu_TOC_title {
  110. font-size: 1.2rem;
  111. }
  112. @media (max-width: 768px) {
  113. table {
  114. min-width: 100%;
  115. }
  116. .table_safe {
  117. min-width: 100%;
  118. }
  119. }
  120. .content {
  121. height: 500px;
  122. }
  123. .spead_footnote {
  124. color: #555;
  125. background-color: #efefef;
  126. border: 1px solid #cecece;
  127. }
  128. #footnote_data {
  129. border-top: 1px solid gainsboro;
  130. padding-top: 10px;
  131. }
  132. hr {
  133. border: 0;
  134. border-top: 1px solid gainsboro;
  135. }
  136. .render_content_load, .render_content {
  137. white-space: pre-wrap;
  138. line-break: anywhere;
  139. }
  140. blockquote {
  141. padding: 15px 40px 15px 15px;
  142. margin: 15px 0 0;
  143. display: table;
  144. border: 2px solid #ccc;
  145. border-left: 5px solid black;
  146. background-image: url('/views/main_css/file/quote.png');
  147. background-position: calc(100% - 10px) 10px;
  148. background-repeat: no-repeat;
  149. background-size: 25px;
  150. }
  151. /* 취소선 */
  152. s, strike, del {
  153. color: gray;
  154. }
  155. s:hover, strike:hover, del:hover {
  156. color: gray;
  157. background-color: gainsboro;
  158. text-decoration: none;
  159. }
  160. /* 최근 변경 관련 테이블 */
  161. #main_table_set {
  162. width: 100%;
  163. text-align: center;
  164. }
  165. #main_table_width {
  166. width: 33.3%;
  167. }
  168. #main_table_width_half {
  169. width: 50%;
  170. }
  171. #main_table_width_quarter {
  172. width: 25%;
  173. }
  174. #main_table_top_tr {
  175. background: aquamarine;
  176. }
  177. /* 기타 */
  178. .main_hr {
  179. border: none;
  180. margin-top: 8px;
  181. margin-bottom: 8px;
  182. }
  183. #admin_log_search {
  184. width: 100px;
  185. }
  186. .change_space {
  187. white-space: pre-line;
  188. }