티스토리 버튼 색상 변경 기록
본문 바로가기

컴퓨터공부

티스토리 버튼 색상 변경 기록

by Life & study 2023. 5. 18.
반응형

 티스토리 버튼 색상 변경 기록

 

변경전
.cover-thumbnail-3 button {
	position: absolute;
	top: -1px;
	width: 24px;
	height: 24px;
	border: 1px solid #FF8C00;
	border-radius: 50%;
	background: url(./images/ico_package.png) no-repeat 0 -50px;
	text-indent: -999em;
	outline: none;
}
	
    
변경후
.cover-thumbnail-3 button {
	position: absolute;
	top: -1px;
	width: 24px;
	height: 24px;
	border: 1px solid #FF8C00; <------------
	border-radius: 50%;
	background: url(./images/ico_package.png) no-repeat 0 -50px;
	text-indent: -999em;
	outline: none;
}

 

 변경전

 

.cover-thumbnail-3 button {
  position: absolute;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid #FF8C00;
  border-radius: 50%;
  background: url(./images/ico_package.png) no-repeat 0 -50px;
  text-indent: -999em;
  outline: none;
}
 

 변경후

 
.cover-thumbnail-3 button {
  position: absolute;
  top: -20px;
  width: 24px;
  height: 24px;
  border: 1px solid #FF8C00;
  border-radius: 50%;
  background: url(./images/ico_package.png) no-repeat 0 -50px;
  text-indent: -999em;
  outline: none;
}

 

반응형

댓글