"미디어위키:Common.css"의 두 판 사이의 차이

(새 문서: →‎이 CSS 설정은 모든 스킨에 적용됩니다: * { font-family: Nanum Gothic; })
 
 
(사용자 2명의 중간 판 64개는 보이지 않습니다)
1번째 줄: 1번째 줄:
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
+
@font-face {
* {
+
    font-family: 'mainfont';
font-family: Nanum Gothic;
+
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
 +
    font-weight: normal;
 +
    font-style: normal;
 +
}
 +
 
 +
*, h1, h2, h3, h4, h5, h6, a, p, b, span, div {
 +
font-family: 'mainfont', sans-serif;
 +
}
 +
 
 +
embed {
 +
height: 1250px;
 +
}
 +
 
 +
.footer-info-copyright {
 +
font-size: 10px;
 +
}
 +
 
 +
.Liberty .nav-wrapper {
 +
box-shadow: none;
 +
}
 +
 
 +
.Liberty .content-wrapper .liberty-footer {
 +
background-color: #fff;
 +
border: none;
 +
}
 +
 
 +
@media all and (max-width: 768px){
 +
embed {
 +
height: 600px;
 +
}
 
}
 
}

2024년 1월 28일 (일) 14:26 기준 최신판

@font-face {
    font-family: 'mainfont';
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*, h1, h2, h3, h4, h5, h6, a, p, b, span, div {
	font-family: 'mainfont', sans-serif;
}

embed {
	height: 1250px;
}

.footer-info-copyright {
	font-size: 10px;
}

.Liberty .nav-wrapper {
	box-shadow: none;
}

.Liberty .content-wrapper .liberty-footer {
	background-color: #fff;
	border: none;
}

@media all and (max-width: 768px){
	embed {
		height: 600px;
	}
}