사용자:Hsl0/common.css: 두 판 사이의 차이
< 사용자:Hsl0
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
/* vector-2022.css */ | |||
@media screen and (max-width: 999px) { | |||
.mw-logo { | |||
min-width: 0; | |||
} | |||
} | |||
/* linktools.css */ | |||
@keyframes link-wait { | @keyframes link-wait { | ||
from { | from { |
2023년 1월 28일 (토) 18:06 판
/* vector-2022.css */
@media screen and (max-width: 999px) {
.mw-logo {
min-width: 0;
}
}
/* 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;
}