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

청소년정책위키
편집 요약 없음
태그: 되돌려진 기여
편집 요약 없음
 
(같은 사용자의 중간 판 24개는 보이지 않습니다)
1번째 줄: 1번째 줄:
/* 여기의 모든 CSS는 벡터 스킨을 사용하는 사용자에게 로드됩니다 */
/* 여기의 모든 CSS는 벡터 스킨을 사용하는 사용자에게 로드됩니다 */


/* 폰트 설정 */
/* Vector 폰트 설정 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
:root {
--font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html, body, button {
html, body, button {
font-family: Pretendard, sans-serif;
font-family: var(--font-family);
}
}
.mw-body h1:lang(ja),.mw-body-content h1:lang(ja),.mw-body-content h2:lang(ja),.mw-body h1:lang(he),.mw-body-content h1:lang(he),.mw-body-content h2:lang(he),.mw-body h1:lang(ko),.mw-body-content h1:lang(ko),.mw-body-content h2:lang(ko) {
.mw-body h1:lang(ja),.mw-body-content h1:lang(ja),.mw-body-content h2:lang(ja),.mw-body h1:lang(he),.mw-body-content h1:lang(he),.mw-body-content h2:lang(he),.mw-body h1:lang(ko),.mw-body-content h1:lang(ko),.mw-body-content h2:lang(ko) {
font-family: Pretendard, sans-serif;
font-family: var(--font-family);
}
}
.vector-sticky-header-context-bar-primary {
.vector-sticky-header-context-bar-primary {
font-family: Pretendard, sans-serif;
font-family: var(--font-family);
}
}
.mw-editsection, .mw-editsection-like {
.mw-editsection, .mw-editsection-like {
font-family: Pretendard, sans-serif;
font-family: var(--font-family);
}
 
/* h2 문단 제목 강조 */
h2 {
    font-weight: bold;
}
}


26번째 줄: 33번째 줄:
}
}


/* CodeEditor 편집기 폰트 오류 수정 */
/* 축약된 URL 얻기 레이아웃 오버플로 수정 */
.wikiEditor-ui .ace_editor {
.vector-unpinned-container #t-urlshortener input {
font: 12px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
    width: 85%;
    transform: translateX(7.5%);
}
.vector-pinned-container #t-urlshortener input {
    width: 85%;
    transform: translateY(0.25em);
}
}


/* [[분류:위키 인터페이스 문서]] */
/* [[분류:위키 인터페이스 스타일시트]] */

2024년 2월 13일 (화) 19:14 기준 최신판

/* 여기의 모든 CSS는 벡터 스킨을 사용하는 사용자에게 로드됩니다 */

/* Vector 폰트 설정 */
:root {
	--font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html, body, button {
	font-family: var(--font-family);
}
.mw-body h1:lang(ja),.mw-body-content h1:lang(ja),.mw-body-content h2:lang(ja),.mw-body h1:lang(he),.mw-body-content h1:lang(he),.mw-body-content h2:lang(he),.mw-body h1:lang(ko),.mw-body-content h1:lang(ko),.mw-body-content h2:lang(ko) {
	font-family: var(--font-family);
}
.vector-sticky-header-context-bar-primary {
	font-family: var(--font-family);
}
.mw-editsection, .mw-editsection-like {
	font-family: var(--font-family);
}

/* h2 문단 제목 강조 */
h2 {
    font-weight: bold;
}

/* 레거시 스킨 로고 설정 */
.mw-wiki-logo {
	background-image: url(/logo.svg);
}

/* 사이드바 '이전 스타일' 버튼 제거 */
.vector-main-menu-action-opt-out {
    display: none;
}

/* 축약된 URL 얻기 레이아웃 오버플로 수정 */
.vector-unpinned-container #t-urlshortener input {
    width: 85%;
    transform: translateX(7.5%);
}
.vector-pinned-container #t-urlshortener input {
    width: 85%;
    transform: translateY(0.25em);
}

/* [[분류:위키 인터페이스 스타일시트]] */