연습장:구면: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
{{css|구면}}
<onlyinclude><div style="display:none"><style>
    /* 배경 색상 */
    .Liberty .content-wrapper .liberty-content .liberty-content-main {
        background-color: #{{{배경|000}}} !important;
    }
 
    /* 일반 글씨 색상 */
    .mw-parser-output {
        color: #{{{글씨|FFF}}} !important;
    }
 
    /* 링크 색상 */
    .mw-parser-output a {
        color: #{{{링크|FFF}}} !important;
        transition: color 0.3s ease-in-out;
    }
 
    /* 링크 마우스 오버 시 효과 */
    .mw-parser-output a:hover {
        color: #FFF;
        background: linear-gradient(to right, #FFF, transparent);
        text-decoration: underline;
    }
 
    /* 테두리 및 목차 선 */
    .liberty-content {
        border: 2px solid #{{{테두리|222}}} !important;
    }
 
    .mw-parser-output .toc {
        background-color: #{{{목차배경|000}}} !important;
        border: 2px solid #{{{테두리|222}}} !important;
    }
 
    /* 목차 상단 색상 */
    .liberty-content-header {
        background-color: #{{{목차상단|444}}} !important;
        border-bottom: 2px solid #{{{테두리|222}}} !important;
    }
</style></div></onlyinclude>

2025년 3월 22일 (토) 21:38 판

<style>
   /* 배경 색상 */
   .Liberty .content-wrapper .liberty-content .liberty-content-main {
       background-color: #000 !important;
   }
   /* 일반 글씨 색상 */
   .mw-parser-output {
       color: #FFF !important;
   }
   /* 링크 색상 */
   .mw-parser-output a {
       color: #FFF !important;
       transition: color 0.3s ease-in-out;
   }
   /* 링크 마우스 오버 시 효과 */
   .mw-parser-output a:hover {
       color: #FFF;
       background: linear-gradient(to right, #FFF, transparent);
       text-decoration: underline;
   }
   /* 테두리 및 목차 선 */
   .liberty-content {
       border: 2px solid #222 !important;
   }
   .mw-parser-output .toc {
       background-color: #000 !important;
       border: 2px solid #222 !important;
   }
   /* 목차 상단 색상 */
   .liberty-content-header {
       background-color: #444 !important;
       border-bottom: 2px solid #222 !important;
   }
</style>