본문으로 이동

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

K Design Media Wiki
새 문서: p { font-size: 110%; font-family: garamond, sans-serif; } h2 { color: red; background: white; } .highlight { color: red; background: yellow; font-weight: bold; } #test_id { color: blue; background: white; }
 
편집 요약 없음
1번째 줄: 1번째 줄:
p {
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');
     font-size: 110%;
 
     font-family: garamond, sans-serif;
body {
     background-color: #f5f5f5;
     font-family: 'Noto Sans KR', sans-serif;
    color: #333;
    margin: 0;
}
}
h2 {
 
     color: red;
/* 콘텐츠 박스 */
     background: white;
#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);
}
}
.highlight {
 
     color: red;
/* 문서 제목 */
     background: yellow;
#firstHeading {
     font-weight: bold;
     font-size: 2rem;
    font-weight: 700;
    text-align: center;
     color: #2a6496;
     margin-bottom: 20px;
}
}
#test_id {
 
     color: blue;
/* 사이드바 최소화 스타일 */
     background: white;
#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;
}
}

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

@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;
}