| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- @charset "UTF-8";
- /* 최근 게시글 */
- #latest {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- #latest table {
- margin-left: auto;
- margin-right: auto;
- border: 1px solid #222c36;
- }
- > #latest table:not(:first-child) {
- border-top: none;
- }
- #latest table tbody tr td {
- vertical-align: middle;
- }
- #latest table tbody tr td p {
- margin-bottom: 5px;
- }
- #latest table tbody tr td p label {
- margin-right: 5px;
- }
- #latest table tbody tr td p label a {
- color: #cbd5e0;
- }
- #latest table tbody tr td p del, #latest table tbody tr td p a {
- font-size: 0.875rem;
- font-weight: normal;
- }
- #latest table tbody tr td p var {
- color: #aa0000;
- font-style: normal;
- margin-left: 3px;
- letter-spacing: -1px;
- vertical-align: middle;
- }
- #latest table tbody tr td p i {
- color: #cbd5e0;
- margin-left: 3px;
- vertical-align: -1px;
- }
- #latest table tbody tr td p span {
- font-size: 0.625rem;
- margin-left: 3px;
- vertical-align: middle;
- }
- #latest table tbody tr td ul {
- margin: 0;
- padding: 0;
- }
- #latest table tbody tr td ul li {
- display: inline-block;
- font-size: 0.75rem;
- }
- #latest table tbody tr td ul li:after {
- content: "·";
- padding: 0 3px 0 7px;
- }
- #latest table tbody tr td ul li:last-child:after {
- content: "";
- padding: 0;
- }
- #latest table tbody tr td .thumbnail {
- display: block;
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- min-height: 50px;
- }
- #latest table tbody tr td .thumbnail > img {
- position: absolute;
- width: 100%;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- }
- #latest > section {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -ms-flex-pack: distribute;
- justify-content: space-around;
- }
- #latest > section figure {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- text-align: center;
- -ms-flex-preferred-size: auto;
- flex-basis: auto;
- }
- #latest > section figure > a {
- position: relative;
- display: block;
- }
- #latest > section figure > a img {
- position: absolute;
- width: 100%;
- top: 0;
- left: 0;
- }
- #latest > section figure > a img:hover {
- -webkit-filter: drop-shadow(2px 2px 4px #969696);
- filter: drop-shadow(2px 2px 4px #969696);
- }
- #latest > section figure figcaption {
- margin: 5px 0;
- }
- #latest > section figure figcaption p {
- margin-bottom: 0.125rem;
- }
- #latest > section figure figcaption > a {
- display: initial;
- }
- #latest > section figure figcaption label {
- margin-right: 5px;
- }
- #latest > section figure figcaption label a {
- color: #cbd5e0;
- }
- #latest > section figure figcaption del, #latest > section figure figcaption a {
- font-size: 14px;
- font-weight: normal;
- color: #b3b3b3;
- }
- #latest > section figure figcaption var {
- color: #aa0000;
- font-style: normal;
- margin-left: 3px;
- letter-spacing: -1px;
- vertical-align: middle;
- }
- #latest > section figure figcaption i {
- color: #cbd5e0;
- margin-left: 3px;
- vertical-align: -1px;
- }
- #latest > section figure figcaption span {
- font-size: 10px;
- margin-left: 3px;
- vertical-align: middle;
- }
- #latest > section figure strong {
- display: block;
- font-size: 0.813rem;
- margin-bottom: 3px;
- }
- #latest > section figure small {
- font-size: 0.688rem;
- }
- #latest > section figure ul {
- list-style: none;
- padding-left: 0;
- margin: 0;
- }
- #latest > section figure ul li {
- display: inline-block;
- font-size: 13px;
- }
- #latest > section figure ul li:first-child::before {
- display: none;
- }
- #latest > section figure ul li::before {
- content: "";
- display: inline-block;
- width: 2px;
- height: 2px;
- margin: 0 5px 4px 2px;
- border-radius: 2px;
- background-color: #616670;
- }
|