티스토리 Tistory

[티스토리] 북클럽 스킨 - 리스트 줄 간격, 글자 크기 변경

GERONIMO:) 2022. 2. 11. 02:47

 

[블로그 관리] - [꾸미기] - [스킨 편집] - [html 편집] - [CSS]

 

 


1469라인 : 리스트 줄 간격, 글자 크기

  • ctrl+F : entry-content ul li
  • 변경 : font-size: 0.9375em;  font-size: 1em;
    변경 : line-height: 1.5714;  line-height: 2;

 

▼ 변경 전

.entry-content ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 0.9375em;
	line-height: 1.5714;
	color: #666;
	list-style: inherit;
}

 

 

▼ 변경 후

.entry-content ul li {
	position: relative;
	margin-bottom: 10px;
	font-size: 1em;
	line-height: 2;
	color: #666;
	list-style: inherit;
}

 

 


1465라인 : 리스트 아래 공간

  • ctrl+F : entry-content ul
  • 변경 : margin-bottom: 22px;  margin-bottom: 0px;

 

▼ 변경 전

.entry-content ul {
	list-style: disc;
	margin-bottom: 22px;
	padding: revert;
}

 

 

▼ 변경 후

.entry-content ul {
	list-style: disc;
	margin-bottom: 0px;
	padding: revert;
}

 

 

 

리스트를 변경하고 나니, 기본 텍스트의 글자 크기가 작아보여서 추가로 변경함.

 

 

 


1440라인 : 기본 텍스트 글자 크기

  • ctrl+F : entry-content p
  • 변경 : font-size: 0.9375em;  font-size: 1em;

▼ 변경 전

.entry-content p {
	margin-bottom: 32px;
	word-break: break-all;
	font-size: 0.9375em;
	line-height: 2;
	color: #555;
}

 

 

▼ 변경 후

.entry-content p {
	margin-bottom: 32px;
	word-break: break-all;
	font-size: 1em;
	line-height: 2;
	color: #555;
}

 

 

 

 

 

 

 

반응형