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

    CABAL WIKI
    편집 요약 없음
    편집 요약 없음
    1번째 줄: 1번째 줄:
    /* 이 CSS 설정은 모든 스킨에 적용됩니다 */
    /* ===== 커스터마이징된 목차 위치 ===== */
    /* ===== 커스터마이징된 목차 위치 ===== */
    #toc {
    #toc {
         position: fixed;
         position: fixed;
         top: 200px;               /* "위키 도구" 아래 여백 조정 */
         top: 200px;
         left: 30px;               /* 왼쪽 마진 */
         left: 30px;
         width: 250px;
         width: 250px;
         max-height: 70vh;
         max-height: 70vh;
    13번째 줄: 11번째 줄:
         border: 1px solid #ccc;
         border: 1px solid #ccc;
         border-radius: 8px;
         border-radius: 8px;
         font-size: 0.95em;
         font-size: 0.85em;   /* 글씨 더 작게 */
         z-index: 1000;
         z-index: 1000;
         box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
         box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    /* ===== 목차 글자 줄바꿈 방지 ===== */
    #toc .toctext {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 200px;  /* 필요하면 조절 */
    }
    }


    38번째 줄: 44번째 줄:
    /* ===== 링크 색상 빨강 ===== */
    /* ===== 링크 색상 빨강 ===== */
    .mw-linktitles-auto {
    .mw-linktitles-auto {
         color: #e74c3c !important;   /* 빨간색 */
         color: #e74c3c !important;
         font-weight: bold;
         font-weight: bold;
         text-decoration: underline dashed;
         text-decoration: underline dashed;
    }
    }

    2025년 7월 18일 (금) 10:41 판

    /* ===== 커스터마이징된 목차 위치 ===== */
    #toc {
        position: fixed;
        top: 200px;
        left: 30px;
        width: 250px;
        max-height: 70vh;
        overflow: auto;
        padding: 10px 15px;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 0.85em;    /* 글씨 더 작게 */
        z-index: 1000;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    /* ===== 목차 글자 줄바꿈 방지 ===== */
    #toc .toctext {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 200px;  /* 필요하면 조절 */
    }
    
    /* ===== 본문은 여백 조정 없이 중앙 정렬 유지 ===== */
    #mw-content-text {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* ===== 모바일 대응: 기본 위치로 복귀 ===== */
    @media screen and (max-width: 768px) {
        #toc {
            position: static !important;
            width: auto;
            border: none;
            box-shadow: none;
            padding: 0;
            margin-top: 1em;
        }
    }
    
    /* ===== 링크 색상 빨강 ===== */
    .mw-linktitles-auto {
        color: #e74c3c !important;
        font-weight: bold;
        text-decoration: underline dashed;
    }