사용자:Hsl0/common.css: 두 판 사이의 차이
< 사용자:Hsl0
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
2번째 줄: | 2번째 줄: | ||
@media screen and (max-width: 999px) { | @media screen and (max-width: 999px) { | ||
.mw-logo { | .mw-logo { | ||
min-width: 0; | min-width: 0; /* 최소 너비 해제 */ | ||
} | } | ||
} | } | ||
/* 가능한 한 옵션 펼쳐두기 */ | |||
@media screen and (min-width: 390px) { | @media screen and (min-width: 390px) { | ||
.mw-article-toolbar-container .mw-portlet-views:not(.emptyPortlet) { | .mw-article-toolbar-container .mw-portlet-views:not(.emptyPortlet) { | ||
display: block; | display: block; | ||
} | } | ||
} | |||
/* 모바일에서 검색할 때 다른 거 치우기 */ | |||
@media screen and (max-width: 500px) { | |||
.vector-header-search-toggled .vector-user-links { | |||
display: none; | |||
} | |||
} | } | ||
2023년 1월 28일 (토) 18:40 판
/* vector-2022.css */
@media screen and (max-width: 999px) {
.mw-logo {
min-width: 0; /* 최소 너비 해제 */
}
}
/* 가능한 한 옵션 펼쳐두기 */
@media screen and (min-width: 390px) {
.mw-article-toolbar-container .mw-portlet-views:not(.emptyPortlet) {
display: block;
}
}
/* 모바일에서 검색할 때 다른 거 치우기 */
@media screen and (max-width: 500px) {
.vector-header-search-toggled .vector-user-links {
display: none;
}
}
/* 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;
}