미디어위키:Common.css
CABAL WIKI
참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
- 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
- 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
- 오페라: Ctrl-F5를 입력.
@media screen and (max-width: 768px) {
/* === 본문 영역 여백 줄이기 === */
.mw-body, .mw-body-content, .mw-parser-output {
padding: 10px !important;
margin: 0 !important;
}
/* === 목차(Toc) 겹침 제거 및 줄바꿈 === */
#toc, .toc {
float: none !important;
position: relative !important;
width: 100% !important;
max-width: 100% !important;
margin: 1em 0 !important;
box-sizing: border-box;
background: #f9f9f9;
}
/* === 이미지 박스/카드/테이블 폭 조정 === */
.thumb, .navbox, .wikitable, table {
width: 100% !important;
overflow-x: auto !important;
display: block !important;
box-sizing: border-box;
}
/* === 리스트 항목 줄바꿈 및 간격 조정 === */
ul, ol {
padding-left: 1.2em;
}
li {
line-height: 1.6em;
word-break: break-word;
}
/* === 번역 확장 등에서 겹치는 텍스트 박스 강제 정리 === */
div[style*="position:absolute"], div[style*="left:"], div[style*="top:"] {
position: static !important;
width: 100% !important;
}
/* === 제목 간격, 폰트 크기 조정 === */
h1, h2, h3, h4, h5 {
font-size: 1.2em;
margin-top: 1.2em;
margin-bottom: 0.5em;
}
/* === 전체 폰트 크기 약간 축소 === */
body {
font-size: 14px !important;
}
/* === 사이드 패널 모바일에서 숨기기 (원하면) === */
#mw-panel, #site-navigation, .sidebar {
display: none !important;
}
}