사용자:Hsl0/common.css: 두 판 사이의 차이
< 사용자:Hsl0
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
/* vector-2022.css */ | /* vector-2022.css */ | ||
.mw-body { | |||
/* 본문 여백 넓히기 (가독성 향상) */ | |||
padding-left: 0.5em; | |||
} | |||
/* 작은 화면에서 화면 폭 늘리기 */ | |||
@media screen and (max-width: 700px) { | |||
.mw-page-container { | |||
padding-left: 0.5em; | |||
padding-right: 0.5em; | |||
} | |||
} | |||
/* 공지 숨기기 버튼이 공지 내용을 침범하지 않도록 위로 올리기 */ | /* 공지 숨기기 버튼이 공지 내용을 침범하지 않도록 위로 올리기 */ | ||
.mw-dismissable-notice-close { | .mw-dismissable-notice-close { |
2023년 1월 29일 (일) 00:59 판
/* vector-2022.css */
.mw-body {
/* 본문 여백 넓히기 (가독성 향상) */
padding-left: 0.5em;
}
/* 작은 화면에서 화면 폭 늘리기 */
@media screen and (max-width: 700px) {
.mw-page-container {
padding-left: 0.5em;
padding-right: 0.5em;
}
}
/* 공지 숨기기 버튼이 공지 내용을 침범하지 않도록 위로 올리기 */
.mw-dismissable-notice-close {
float: none;
text-align: right;
margin-top: -1.75em;
}
@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 */
@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;
}