본문으로 이동

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

K Design Media Wiki
편집 요약 없음
태그: 되돌려진 기여
편집 요약 없음
태그: 수동 되돌리기
10번째 줄: 10번째 줄:
/* 콘텐츠 박스 */
/* 콘텐츠 박스 */
#content {
#content {
     background: #ffffff;
     background: #fff;
     padding: 40px;
     padding: 40px;
     border-radius: 12px;
     border-radius: 12px;

2025년 7월 14일 (월) 12:20 판

@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: #fff;
    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;
}