|
|
| 1번째 줄: |
1번째 줄: |
| @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: #fff;
| |
| 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;
| |
| }
| |