편집 요약 없음 태그: 되돌려진 기여 |
편집 요약 없음 태그: 되돌려진 기여 |
||
| 11번째 줄: | 11번째 줄: | ||
body { | body { | ||
padding-top: 80px !important; /* 네비게이션 바 높이에 따라 본문 시작 위치 조정 */ | padding-top: 80px !important; /* 네비게이션 바 높이에 따라 본문 시작 위치 조정 */ | ||
} | |||
@media (min-width: 768px) { | |||
.nav-wrapper.navbar-fixed-top { | |||
height: 80px; | |||
line-height: 80px; | |||
} | |||
body { | |||
padding-top: 80px; | |||
} | |||
} | |||
@media (max-width: 767px) { | |||
.nav-wrapper.navbar-fixed-top { | |||
height: 50px; /* 모바일 기본 높이 */ | |||
line-height: 50px; | |||
} | |||
body { | |||
padding-top: 50px; | |||
} | |||
} | } | ||
2024년 12월 2일 (월) 15:39 판
/* 이 CSS 설정은 리버티 스킨을 사용하는 사용자에게 적용됩니다 */
.mw-headline-number { color: #0275d8; }
.mw-headline-number::after { content: "."; }
.nav-wrapper.navbar-fixed-top {
height: 80px !important; /* 원하는 높이로 설정 */
line-height: 80px !important; /* 텍스트 수직 정렬 */
padding: 0 20px !important; /* 내부 여백 */
}
body {
padding-top: 80px !important; /* 네비게이션 바 높이에 따라 본문 시작 위치 조정 */
}
@media (min-width: 768px) {
.nav-wrapper.navbar-fixed-top {
height: 80px;
line-height: 80px;
}
body {
padding-top: 80px;
}
}
@media (max-width: 767px) {
.nav-wrapper.navbar-fixed-top {
height: 50px; /* 모바일 기본 높이 */
line-height: 50px;
}
body {
padding-top: 50px;
}
}