사용자:Hsl0/common.css: 두 판 사이의 차이
< 사용자:Hsl0
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
3번째 줄: | 3번째 줄: | ||
.mw-logo { | .mw-logo { | ||
min-width: 0; | min-width: 0; | ||
} | |||
} | |||
@media screen and (min-width: 400px) { | |||
.mw-article-toolbar-container .mw-portlet-views:not(.emptyPortlet) { | |||
display: block; | |||
} | } | ||
} | } |
2023년 1월 28일 (토) 18:33 판
/* vector-2022.css */
@media screen and (max-width: 999px) {
.mw-logo {
min-width: 0;
}
}
@media screen and (min-width: 400px) {
.mw-article-toolbar-container .mw-portlet-views:not(.emptyPortlet) {
display: block;
}
}
/* 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;
}