[블로그] style.css
블로그 구성요소들의 넓이들과 폰트등을 결정한다. 대부분의 블로그 스킨은 굴림이나 바탕체를 사용하고 있으므로 gulim, batang등을 찾아내어 원하는 폰트가 있다면 바꾸어준다. 맑은 고딕의 경우에는 “맑은 고딕”이라고 따옴표 안에 넣어준다.
링크의 경우에는 본문과 별도로 폰트를 사용하고 있으므로 다음 부분을 수정해 준다. text-decoration:none부분이 생략되면 밑에 줄이 나타난다.
a:link { font:12px "맑은 고딕" ; text-decoration:none}
a:visited { font:12px "맑은 고딕" ; text-decoration:none}
a:active { text-decoration:none; }
a:hover { text-decoration:underline; }
http://armishel.tistory.com/309
http://www.tistory.com/forum/viewtopic.php?id=4660
http://www.tistory.com/forum/viewtopic.php?id=4543
http://funfungirl.tistory.com/22
http://www.tistory.com/forum/viewtopic.php?id=4405
블로그 모양이 깨진다면 css가 사라졌는지 의심할 것.
/*공통*/
h2 {font-size: 19px; color: #003366}
h3 {font-size: 14px}
/*본문과 링크*/
.article {
width: /*@post-width=-42*/760px/*@*/;
overflow: hidden;
word-break: break-all;
color: /*@post-body-color=*/#939494/*@*/;
font: normal /*@post-body-font-size=*/10pt/*@*/ /*@post-body-font-family=*/malgun/*@*/, "맑은 고딕", malgun;
padding: 20px 0 0 0;
line-height: 1.5;
}
.article a:link, .article a:visited, .article a:hover, .article a:active {
color: #6600ff;
}