틀:변화의 시대/관련 기사/styles.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
 
(같은 사용자의 중간 판 24개는 보이지 않습니다)
3번째 줄: 3번째 줄:
background: none;
background: none;
}
}
.text style {
.mw-parser-output a.external.text {
font-size: 11pt;
font-size: 12pt;
font-family: "ChosunGu";
}
.mw-parser-output a.external.text:hover {
font-size: 12pt;
}
.mw-parser-output a.external.text:active {
font-size: 12pt;
}
}


/* 768px 이하 */
/* 768px 이하일 때 */
@media screen and (max-width: 768px) {
@media screen and (max-width: 768px) {
.text style {
  .mw-parser-output a.external.text {
font-size: 9.5pt;
font-size: 9.5pt;
}
font-family: "ChosunGu";
}
  .mw-parser-output a.external.text:hover {
font-size: 9.5pt;
}
  .mw-parser-output a.external.text:active {
font-size: 9.5pt;
}
}
}

2024년 3월 29일 (금) 20:39 기준 최신판

/* 흰색 배경 방지 */
.mw-parser-output .text {
	background: none;
}
.mw-parser-output a.external.text {
	font-size: 12pt;
	font-family: "ChosunGu";
}
.mw-parser-output a.external.text:hover {
	font-size: 12pt;
}
.mw-parser-output a.external.text:active {
	font-size: 12pt;
}

/* 768px 이하일 때 */
@media screen and (max-width: 768px) {
   .mw-parser-output a.external.text {
	font-size: 9.5pt;
	font-family: "ChosunGu";
}
   .mw-parser-output a.external.text:hover {
	font-size: 9.5pt;
}
   .mw-parser-output a.external.text:active {
	font-size: 9.5pt;
}
}