미디어위키:Common.css: 두 판 사이의 차이
에이펙스 한국어 위키
더 많은 작업
잔글편집 요약 없음 태그: 되돌려진 기여 |
너프 색상 변경 |
||
| (같은 사용자의 중간 판 24개는 보이지 않습니다) | |||
| 2번째 줄: | 2번째 줄: | ||
/* 큰 이미지를 반응형 100%로 만드는 클래스 */ | /* 큰 이미지를 반응형 100%로 만드는 클래스 */ | ||
.responsive-big-img img { | .responsive-big-img img { | ||
width: | width: 99% !important; | ||
max-width: | max-width: 99% !important; | ||
height: auto !important; | height: auto !important; | ||
object-fit: cover; | |||
} | } | ||
| 35번째 줄: | 31번째 줄: | ||
} | } | ||
/* | /* 달력 사이즈 설정 */ | ||
.google-calendar { | |||
max-width: 800px; | |||
width: auto; | |||
} | |||
.google-calendar iframe { | |||
display: block; | |||
width: 100%; | |||
height: auto; | |||
min-height: 500px; | |||
aspect-ratio: 4 / 3; | |||
border: solid 1px #777; | |||
} | } | ||
/* | /* 유튜브 임베드 사이즈 조절 */ | ||
iframe[data-extension="youtube"] { | |||
width: | width: 100%; | ||
max-width: 600px; | |||
aspect-ratio: 16 / 9; | |||
height: auto; | |||
} | } | ||
/* | /* 무기 정보상자 컨테이너 */ | ||
. | .weapon-infobox-wrapper { | ||
width: | float: none; | ||
} | |||
@media (min-width: 720px) { | |||
.weapon-infobox-wrapper { | |||
float: right; | |||
} | |||
} | } | ||
. | /* 등급 색상 */ | ||
.lv1-color { | |||
color: #a8a8a8; | |||
} | |||
.lv2-color { | |||
color: #51a8d6; | |||
} | |||
.lv3-color { | |||
color: #b237c8; | |||
} | } | ||
.lv4-color { | |||
. | color: #cead21; | ||
} | } | ||
. | .lv5-color { | ||
color: #ff4e1d; | |||
} | } | ||
.bold { | |||
font-weight: 700; | |||
} | } | ||
. | |||
/* 너프 버프 표시 */ | |||
.nerf { | |||
color: #c42212; | |||
} | } | ||
. | .buff { | ||
color: #2ECC71; | |||
} | } | ||
2026년 9월 5일 (토) 07:31 기준 최신판
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 큰 이미지를 반응형 100%로 만드는 클래스 */
.responsive-big-img img {
width: 99% !important;
max-width: 99% !important;
height: auto !important;
object-fit: cover;
}
/* 위키 안내 상자 */
.wiki-notice {
border: 1px solid #a2a9b1;
padding: 12px;
margin: 10px 0;
}
.wiki-notice-orange {
border-top: 5px solid #f28c28;
}
.wiki-notice-red {
border-top: 5px solid #d33;
}
.wiki-notice-blue {
border-top: 5px solid #36c;
}
.wiki-notice-green {
border-top: 5px solid #14866d;
}
/* 달력 사이즈 설정 */
.google-calendar {
max-width: 800px;
width: auto;
}
.google-calendar iframe {
display: block;
width: 100%;
height: auto;
min-height: 500px;
aspect-ratio: 4 / 3;
border: solid 1px #777;
}
/* 유튜브 임베드 사이즈 조절 */
iframe[data-extension="youtube"] {
width: 100%;
max-width: 600px;
aspect-ratio: 16 / 9;
height: auto;
}
/* 무기 정보상자 컨테이너 */
.weapon-infobox-wrapper {
float: none;
}
@media (min-width: 720px) {
.weapon-infobox-wrapper {
float: right;
}
}
/* 등급 색상 */
.lv1-color {
color: #a8a8a8;
}
.lv2-color {
color: #51a8d6;
}
.lv3-color {
color: #b237c8;
}
.lv4-color {
color: #cead21;
}
.lv5-color {
color: #ff4e1d;
}
.bold {
font-weight: 700;
}
/* 너프 버프 표시 */
.nerf {
color: #c42212;
}
.buff {
color: #2ECC71;
}