1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
| @import url('//fonts.googleapis.com/css?family=Nanum+Gothic:400,700,800');
body,h1,h2,h3,h4,h5,h6, .Markdown, .Markdown h1, .Markdown h2, .Markdown h3, .Markdown h4, .Markdown h5, .Markdown h6, .ReplyEditor__body.rte h1, .ReplyEditor__body.rte h2, .ReplyEditor__body.rte h3, .ReplyEditor__body.rte h4, .ReplyEditor__body.rte h5, .ReplyEditor__body.rte h6, .PostFull__header > h1 { font-family: "Nanum Gothic", "Source Sans Pro" !important; font-smoothing: antialiased; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.Markdown p, .ReplyEditor__body.rte p { line-height: 180% !important; }
.Markdown blockquote { border-left: 0 !important; padding-left: 35px; } .Markdown blockquote:before { content: "\201C"; font-size: 3em; font-family: Georgia; color: #bcbcbc; float: left; margin: -15px 0 0 -35px; }
.Markdown img { margin: 0 auto; display: -webkit-box; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); margin-bottom: 1rem; border: solid 4px #fefefe; border-radius: 3px; line-height: 0; max-width: calc(100% - 10px); }
.theme-light, .theme-light .Post { background-color: hsla(0, 0%, 95%, .97) !important; } .theme-light .PostFull { position: relative; background-color: #fff; border: 0; border-radius: 4px; background-clip: padding-box; -webkit-box-shadow: 0 4px 12px rgba(0,0,0,.15); box-shadow: 0 4px 12px rgba(0,0,0,.15); padding: 32px!important; overflow-x: inherit; } .theme-light .c-sidebar__module, .theme-light .articles__summary { position: relative; border: 1px solid #dddfe2; border-radius: 3px; margin-bottom: 10px; } .theme-light .articles__summary:hover { background-color: #f5f8fa; } .theme-light .articles { border: initial !important; box-shadow: initial !important; background-color: initial !important; } .theme-light .articles:hover { box-shadow: initial !important; } .articles { padding: 0.5em 0 !important; } @media only screen and (min-width: 75em) { .PostsIndex.row { width: 1190px !important; } .PostsIndex.row.layout-list { width: 1600px !important; } } .PostFull__reply a:first-child { display: inline-flex; max-width: 30px; overflow: hidden; white-space: nowrap; } .articles__hr { display: none !important; } @media print, screen and (min-width: 64em) { .PostFull__footer.row .large-5 { max-width: 46.66667% !important; flex: 0 0 46.66667% !important; } .PostFull__footer.row .large-5:first-child { max-width: 36.66667% !important; flex: 0 0 36.66667% !important; } .articles__feature-img-container { max-height: 200px; overflow: hidden; display: block; vertical-align: middle; } .articles__feature-img-container > img { width: 100%; } } @media only screen and (min-width: 47.5em) { .theme-light .layout-list .articles__summary, .theme-light .layout-compressed .articles__summary { padding: .5rem 1rem; border-bottom: initial !important; } }
|