사용자:Hsl0/common.css: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
imported>Hsl0
편집 요약 없음
imported>Hsl0
편집 요약 없음
1번째 줄: 1번째 줄:
/* vector-2022.css */
.mw-body {
/* 본문 여백 넓히기 (가독성 향상) */
    padding-left: 0.5em;
}
.vector-sitenotice-container {
/* 공지 여백 넓히기 (가독성 향상) */
padding: 0 0.25em;
}
@media screen and (max-width: 799.9px) {
/* 작은 화면에서 화면 폭 늘리기 */
.mw-page-container {
padding-left: 0.5em;
padding-right: 0.5em;
}
/* 공지 여백 넓히기 (가독성 향상) */
.vector-sitenotice-container {
padding: 0 0.5em;
}
}
/* 공지 숨기기 버튼이 공지 내용을 침범하지 않도록 위로 올리기 */
.mw-dismissable-notice-close {
    float: none;
    text-align: right;
    margin-top: -1.75em;
    margin-right: 0.5em;
}
@media screen and (max-width: 999px) {
.mw-logo {
min-width: 0; /* 최소 너비 해제 */
}
}
/* 가능한 한 옵션 펼쳐두기 */
@media screen and (min-width: 430px) {
.mw-article-toolbar-container .mw-portlet-views:not(.emptyPortlet) {
    display: block;
}
    .mw-article-toolbar-container .vector-more-collapsible-item {
        display: none;
    }
}
/* 모바일에서 검색할 때 다른 거 치우기 */
@media screen and (max-width: 500px) {
    .vector-header-search-toggled .vector-user-links {
        display: none;
    }
}
/* linktools.css */
/* linktools.css */
@keyframes link-wait {
@keyframes link-wait {

2023년 1월 29일 (일) 23:47 판

/* linktools.css */
@keyframes link-wait {
    from {
        background-position-x: 200%;
    }
    to {
        background-position-x: 0%;
    }
}

.link-modifier-cloak a,
.event-listener-cloak[data-target="link"] a,
.event-handler-cloak[data-target="link"] a {
    pointer-events: none;
    background-image: linear-gradient(
        135deg,
        #cccccc,
        #cccccc,
        #4d4d4d,
        #4d4d4d,
        #cccccc,
        #cccccc
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    animation: 2s linear 0s infinite running link-wait;
}