| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- @charset "UTF-8";
- /* 게시판 보기 */
- #boardView {
- box-sizing: border-box;
- padding: calc(var(--bs-gutter-x) * 0.5);
- }
- #boardView .head h5 {
- font-weight: bold;
- margin-bottom: 0;
- }
- #boardView .body {
- margin: 20px 0;
- }
- #boardView .body table {
- border: 1px solid #222c36;
- margin-bottom: 6px;
- }
- > #boardView .body table:not(:first-child) {
- border-top: none;
- }
- #boardView .body table tr th, #boardView .body table tr td {
- text-align: left;
- vertical-align: middle;
- word-break: break-all;
- }
- #boardView .body table thead tr th {
- background: #090a0b;
- border-bottom: 1px solid #222c36;
- }
- #boardView .body table thead tr th h5 {
- margin-bottom: 0;
- padding: 5px 0;
- }
- #boardView .body table thead tr td img {
- width: 100%;
- max-width: 82px;
- }
- #boardView .body table thead tr td strong {
- font-size: 0.813rem;
- color: #56889a;
- }
- #boardView .body table thead tr td small {
- font-size: 0.688rem;
- vertical-align: baseline;
- margin-left: 10px;
- padding-left: 10px;
- border-left: 1px solid #2c3946;
- }
- #boardView .body table thead tr td p {
- font-size: 0.75rem;
- margin-bottom: 0;
- }
- #boardView .body table thead tr td ul {
- display: inline-block;
- list-style: none;
- margin: 0;
- padding: 0;
- }
- #boardView .body table thead tr td ul > li {
- display: inline-block;
- }
- #boardView .body table thead tr td ul > li::after {
- display: inline-block;
- content: "";
- width: 1px;
- height: 11px;
- background: #2c3946;
- vertical-align: inherit;
- margin: 0;
- }
- #boardView .body table thead tr td ul > li span {
- font-size: 0.75rem;
- padding: 0 10px;
- }
- #boardView .body table thead tr td ul > li span var {
- font-style: inherit;
- }
- #boardView .body table thead tr td ul > li span i {
- margin-right: 5px;
- }
- #boardView .body table thead tr td ul > li:first-child span {
- padding-left: 0;
- }
- #boardView .body table thead tr td ul > li:last-child span {
- padding-right: 0;
- }
- #boardView .body table thead tr td ul > li:last-child::after {
- display: none;
- width: 0;
- }
- #boardView .body table thead tr td ol {
- min-width: auto;
- margin-left: 20px;
- border-radius: 0;
- border-color: #cfcfcf #999 #666 #999;
- border-width: 1px 1px 1px 0;
- border-style: solid;
- box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
- -webkit-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
- }
- #boardView .body table thead tr td ol > li {
- line-height: initial;
- padding: 0.4rem 1.2rem;
- cursor: pointer;
- }
- #boardView .body table thead tr td ol > li:hover, #boardView .body table thead tr td ol > li:focus, #boardView .body table thead tr td ol > li:active {
- background: #eaeaea;
- color: #000;
- }
- #boardView .body table thead tr td ol > li i {
- margin-right: 3px;
- }
- #boardView .body table thead tr:last-child {
- border-bottom: 1px solid #222c36;
- }
- #boardView .body table tbody tr td ol {
- margin: 0;
- padding: 2px 10px;
- list-style: none;
- }
- #boardView .body table tbody tr td ol > li {
- margin-bottom: 6px;
- }
- #boardView .body table tbody tr td ol > li i {
- vertical-align: -2px;
- }
- #boardView .body table tbody tr td ol > li:last-child {
- margin-bottom: 0;
- }
- #boardView .body table tbody tr td blockquote {
- min-height: 50px;
- padding: 5px;
- margin: 0;
- }
- #boardView .body table tbody tr td blockquote img {
- -o-object-fit: cover;
- object-fit: cover;
- max-width: 100%;
- height: auto;
- }
- #boardView .body table tbody tr td blockquote iframe {
- width: 100%;
- }
- @supports (-webkit-touch-callout: none) {
- #boardView .body table tbody tr td blockquote iframe {
- width: -webkit-fill-available;
- }
- }
- #boardView .body table tbody tr td blockquote pre[class*=language-],
- #boardView .body table tbody tr td blockquote code[class*=language-] {
- overflow: auto;
- white-space: break-spaces;
- word-break: break-word;
- }
- #boardView .body table tfoot tr td {
- text-align: center;
- }
- #boardView .body table tfoot tr td button {
- margin: 0 2px 0 2px;
- }
- #boardView .body table tfoot tr:last-child td {
- text-align: left;
- padding: 10px 18px 18px 18px;
- }
- #boardView .body nav .dropdown-menu {
- min-width: auto;
- border-radius: 0;
- border-color: #cfcfcf #999 #666 #999;
- border-width: 1px 1px 1px 0;
- border-style: solid;
- box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
- -moz-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
- -webkit-box-shadow: 2px 0 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.2), -2px 2px 2px rgba(0, 0, 0, 0.1);
- }
- #boardView .body nav .dropdown-menu .dropdown-item {
- line-height: initial;
- padding: 0.4rem 1.2rem;
- cursor: pointer;
- }
- #boardView .body nav .dropdown-menu .dropdown-item:hover, #boardView .body nav .dropdown-menu .dropdown-item:focus, #boardView .body nav .dropdown-menu .dropdown-item:active {
- background: #eaeaea;
- color: #000;
- }
- #boardView .foot {
- box-sizing: content-box;
- }
- #boardView .foot table {
- border: 1px solid #222c36;
- margin-bottom: 0;
- }
- #boardView .foot table tr th, #boardView .foot table tr td {
- text-align: initial;
- vertical-align: middle;
- word-break: break-all;
- }
- #boardView .foot table thead tr th {
- background: transparent;
- border-bottom: 1px solid #222c36;
- }
- #boardView .foot table thead tr th h5 {
- font-size: 0.938rem;
- font-weight: normal;
- margin-bottom: 0;
- padding: 5px 0;
- }
- #boardView .foot table tbody tr td {
- border-top: 0;
- }/*# sourceMappingURL=view.css.map */
|