본문으로 이동
메뉴 여닫기
  • 33 문서
  • 239 파일
  • 1 사용자
  • 928 편집
에이펙스 한국어 위키
환경 설정 메뉴 여닫기
개인 메뉴 여닫기
로그인하지 않음
지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

미디어위키:Common.css: 두 판 사이의 차이

에이펙스 한국어 위키
잔글편집 요약 없음
너프 색상 변경
 
(같은 사용자의 중간 판 9개는 보이지 않습니다)
1번째 줄: 1번째 줄:
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 큰 이미지를 반응형 100%로 만드는 클래스 */
/* 큰 이미지를 반응형 100%로 만드는 클래스 */
.responsive-big-img pre {
margin: 0;
    padding: 0;
}
.responsive-big-img img {
.responsive-big-img img {
     width: 99% !important;
     width: 99% !important;
     max-width: 99% !important;
     max-width: 99% !important;
     height: auto !important;
     height: auto !important;
    object-fit: cover;
}
}


47번째 줄: 44번째 줄:
aspect-ratio: 4 / 3;
aspect-ratio: 4 / 3;
border: solid 1px #777;
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;
}
}

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;
}