| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- /* 기본 전체 옵션 */
- body, html, video, table, iframe, input, textarea, img, hr, blockquote, pre, iframe, .table_safe {
- max-width: 100%;
- }
- body {
- word-break: break-all;
-
- overflow: auto;
- }
- /* 텍스트 필드 */
- textarea, input {
- width: 100%;
- }
- input {
- box-sizing: border-box;
- }
- input[type="checkbox"], input[type="radio"] {
- width: auto;
- }
- /* 테이블 */
- table {
- border-collapse: collapse;
- }
- td {
- border: 1px solid gainsboro;
-
- padding: 5px 10px;
- }
- /* 링크 */
- a {
- color: dodgerblue;
-
- text-decoration: none;
- }
- #not_thing {
- color: red;
- }
- #inside, #out_link, #out_link::before, .opennamu_link_out {
- color: green;
- }
- #out_link::before, .opennamu_link_out::before {
- content: '🅴';
-
- font-weight: lighter;
-
- background: transparent;
- }
- #include_link {
- display: none;
- }
- .hidden_link {
- filter: blur(3px);
- }
- .hidden_link:hover {
- filter: none;
- }
- /* 리스트 */
- .inside_ul li {
- margin-left: 20px;
- margin-top: 5px;
- margin-bottom: 5px;
- }
- /* 토론 관련 */
- .opennamu_comment {
- width: 100%;
- }
- .opennamu_comment_color_green {
- background: palegreen;
- }
- .opennamu_comment_color_blue {
- background: paleturquoise;
- }
- .opennamu_comment_color_red {
- background: palevioletred;
- }
- .opennamu_comment_color_default {
- background: palegoldenrod;
- }
- .opennamu_comment_color_gray {
- background: gainsboro;
- }
- .opennamu_comment_blind {
- display: none;
- }
- .opennamu_comment_scroll {
- max-height: 500px;
-
- overflow: scroll;
- -ms-overflow-style: none;
- scrollbar-width: none;
- }
- .opennamu_comment_scroll::-webkit-scrollbar {
- display: none;
- }
- .opennamu_comment_textarea {
- height: 200px;
- }
- /* 위키 내용 관련 */
- #toc, .opennamu_TOC {
- border: 1px solid gainsboro;
- padding: 20px;
-
- width: fit-content;
- width: -moz-fit-content;
-
- clear: both;
-
- margin-top: 10px;
- }
- #cate, pre, #redirect {
- border: 1px solid gainsboro;
-
- padding: 10px;
- }
- #cate {
- margin-top: 20px;
- }
- pre {
- white-space: pre-wrap;
- }
- #toc_title, .opennamu_TOC_title {
- font-size: 1.2rem;
- }
- @media (max-width: 768px) {
- table {
- min-width: 100%;
- }
-
- .table_safe {
- min-width: 100%;
- }
- }
- .content {
- height: 500px;
- }
- .spead_footnote {
- color: #555;
- background-color: #efefef;
-
- border: 1px solid #cecece;
- }
- #footnote_data {
- border-top: 1px solid gainsboro;
-
- padding-top: 10px;
- }
- hr {
- border: 0;
- border-top: 1px solid gainsboro;
- }
- .render_content_load, .render_content {
- white-space: pre-wrap;
-
- line-break: anywhere;
- }
- blockquote {
- padding: 15px 40px 15px 15px;
- margin: 15px 0 0;
- display: table;
- border: 2px solid #ccc;
- border-left: 5px solid black;
- background-image: url('/views/main_css/file/quote.png');
- background-position: calc(100% - 10px) 10px;
- background-repeat: no-repeat;
- background-size: 25px;
- }
- /* 취소선 */
- s, strike, del {
- color: gray;
- }
- s:hover, strike:hover, del:hover {
- color: gray;
- background-color: gainsboro;
-
- text-decoration: none;
- }
- /* 최근 변경 관련 테이블 */
- #main_table_set {
- width: 100%;
-
- text-align: center;
- }
- #main_table_width {
- width: 33.3%;
- }
- #main_table_width_half {
- width: 50%;
- }
- #main_table_width_quarter {
- width: 25%;
- }
- #main_table_top_tr {
- background: aquamarine;
- }
- /* 기타 */
- .main_hr {
- border: none;
-
- margin-top: 8px;
- margin-bottom: 8px;
- }
- #admin_log_search {
- width: 100px;
- }
- .change_space {
- white-space: pre-line;
- }
|