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

편집 요약 없음
편집 요약 없음
4번째 줄: 4번째 줄:
     content: "";
     content: "";
     display: inline-block;
     display: inline-block;
     height: 100px; /* 너가 원하는 세로 크기 */
    width: 120px;
     background-image: url("/resources/assets/wikilogo3.png"); /* 여기! */
     height: 40px;
     background-image: url("/mediawiki/resources/assets/wikilogo3.png"); /* 여기 수정 */
     background-size: contain;
     background-size: contain;
     background-repeat: no-repeat;
     background-repeat: no-repeat;
11번째 줄: 12번째 줄:
     margin-left: 15px;
     margin-left: 15px;
     margin-right: 15px;
     margin-right: 15px;
     pointer-events: none; /* 클릭 안되게 */
     pointer-events: none;
     vertical-align: middle;
     vertical-align: middle;
}
}

2025년 4월 27일 (일) 20:04 판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */

#p-cactions::after {
    content: "";
    display: inline-block;
    width: 120px;
    height: 40px;
    background-image: url("/mediawiki/resources/assets/wikilogo3.png"); /* 여기 수정 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 15px;
    margin-right: 15px;
    pointer-events: none;
    vertical-align: middle;
}