틀:구면/styles.css: 두 판 사이의 차이

(새 문서: →‎1. 문서 전체 바탕 색: body { background-color: #000 !important; color: #fff !important; →‎기본 글씨 색상 (2번과 같은 색): } →‎2. 일반 글씨 색상: .mw-body { color: #fff !important; } →‎3. 링크된 글씨 색상: .mw-body a { color: #fff !important; } .mw-body a:visited { color: #fff !important; } .mw-body a:hover { color: #fff !important; } →‎4. 테두리 및 목차 선 색상: .mw-body, .toc, .toc ul, .toc li,...)
 
편집 요약 없음
2번째 줄: 2번째 줄:
body {
body {
     background-color: #000 !important;
     background-color: #000 !important;
     color: #fff !important; /* 기본 글씨 색상 (2번과 같은 색) */
     color: #fff !important; /* 기본 글씨 색상 */
}
}


11번째 줄: 11번째 줄:


/* 3. 링크된 글씨 색상 */
/* 3. 링크된 글씨 색상 */
.mw-body a {
.mw-body a,
    color: #fff !important;
.mw-body a:visited,
}
.mw-body a:visited {
    color: #fff !important;
}
.mw-body a:hover {
.mw-body a:hover {
     color: #fff !important;
     color: #fff !important;
    text-decoration: none;
}
}


29번째 줄: 26번째 줄:
.toc {
.toc {
     background-color: #444 !important;
     background-color: #444 !important;
}
/* 6. 표 스타일 개선 */
.mw-body table {
    border: 1px solid #444 !important;
    background-color: #222 !important;
    color: #fff !important;
}
.mw-body th {
    background-color: #333 !important;
    border-bottom: 2px solid #555 !important;
}
.mw-body td {
    border-bottom: 1px solid #555 !important;
}
/* 7. 버튼 스타일 */
button, .mw-ui-button {
    background-color: #555 !important;
    color: #fff !important;
    border: 1px solid #777 !important;
}
button:hover, .mw-ui-button:hover {
    background-color: #777 !important;
}
}

2025년 3월 22일 (토) 18:55 판

/* 1. 문서 전체 바탕 색 */
body {
    background-color: #000 !important;
    color: #fff !important; /* 기본 글씨 색상 */
}

/* 2. 일반 글씨 색상 */
.mw-body {
    color: #fff !important;
}

/* 3. 링크된 글씨 색상 */
.mw-body a,
.mw-body a:visited,
.mw-body a:hover {
    color: #fff !important;
    text-decoration: none;
}

/* 4. 테두리 및 목차 선 색상 */
.mw-body, .toc, .toc ul, .toc li, .toc a {
    border-color: #333 !important;
}

/* 5. 목차 상단 배경 색 */
.toc {
    background-color: #444 !important;
}

/* 6. 표 스타일 개선 */
.mw-body table {
    border: 1px solid #444 !important;
    background-color: #222 !important;
    color: #fff !important;
}

.mw-body th {
    background-color: #333 !important;
    border-bottom: 2px solid #555 !important;
}

.mw-body td {
    border-bottom: 1px solid #555 !important;
}

/* 7. 버튼 스타일 */
button, .mw-ui-button {
    background-color: #555 !important;
    color: #fff !important;
    border: 1px solid #777 !important;
}

button:hover, .mw-ui-button:hover {
    background-color: #777 !important;
}