드레그 색상
/* 드레그 색상 css 추가 */
::selection {
background-color: #FB5E54;
color: white;
}
글자
/* 굵게 */
font-feature-settings: normal;
font-weight: bold;
/* 크기 */
.article-view p {
font-size: 17px;
본문 볼드체 형광펜
/* 본문 볼드체 to 형광펜 스타일 */
.tt_article_useless_p_margin > p > b {
padding: 1px 3px;
border-radius: 8px; /* 라운딩 */
color: rgba(0, 0, 0, 0.8); /*폰트 색상*/
background: linear-gradient(to top, rgba(233, 106, 121, 0.33) 33%, transparent 33%);
}
댓글 없애기
<s_rp>
<div id="group"></div>
</s_rp>
제목 색상
/* 스킨 타이틀 수정 */
.hgroup h1 {
font-weight: 600;
font-size: 1.5em;
line-height: 1.4444em;
color: #49aec1;
}
본문 폰트 가독성
/* 본문 폰트 */
.entry-content p {
margin-bottom: 24px;
font-size: 1.15em;
line-height: 1.7;
color: #666; }