미디어위키:Common.css
보이기
참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
- 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
- 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');
body {
background-color: #f5f5f5;
font-family: 'Noto Sans KR', sans-serif;
color: #333;
margin: 0;
}
/* 콘텐츠 박스 */
#content {
background: #000000;
padding: 40px;
border-radius: 12px;
max-width: 960px;
margin: 50px auto;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
/* 문서 제목 */
#firstHeading {
font-size: 2rem;
font-weight: 700;
text-align: center;
color: #2a6496;
margin-bottom: 20px;
}
/* 사이드바 최소화 스타일 */
#mw-panel {
background-color: #222;
color: white;
width: 180px;
}
#mw-panel a {
color: #ccc !important;
text-decoration: none;
}
#mw-panel a:hover {
color: #ffffff !important;
}
/* 링크 스타일 */
a {
color: #2a6496;
}
a:hover {
color: #007acc;
text-decoration: underline;
}
/* 푸터 제거 */
#footer {
display: none;
}