Jump to content
메뉴 여닫기
환경 설정 메뉴 여닫기
개인 메뉴 여닫기
로그인하지 않음
지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

틀:정보상자/styles.css: 두 판 사이의 차이

HamWiki
햄린이 (토론 | 기여)
햄린이님이 틀:정보상자/styles.css 문서의 콘텐츠 모델을 "위키텍스트"에서 "세니타이즈드 CSS"(으)로 바꾸었습니다
편집 요약 없음
 
1번째 줄: 1번째 줄:
.infobox[style*="solid"] th, .infobox[style*="solid"] td {
/* Citizen 정보상자 - solid 테두리 처리 */
border-right:none !important;
 
border-left:none !important;
.infobox[style*="solid"] {
border-radius: 0.75rem;
overflow: hidden;
}
 
/* 내부 셀의 좌우 테두리 제거 */
.infobox[style*="solid"] th,
.infobox[style*="solid"] td {
border-right: none !important;
border-left: none !important;
}
 
/* 첫 번째 행 */
.infobox[style*="solid"] tr:first-child th,
.infobox[style*="solid"] tr:first-child td {
border-top: none !important;
}
 
/* 마지막 행 */
.infobox[style*="solid"] tr:last-child th,
.infobox[style*="solid"] tr:last-child td {
border-bottom: none !important;
}
}


.infobox[style*="solid"] tr:first-child th {
/* 첫 번째 행의 상단 모서리 */
border-top:none !important;
.infobox[style*="solid"] tr:first-child th:first-child {
border-radius: 3px 3px 0 0 !important;
border-radius: 0.75rem 0.75rem 0 0 !important;
}
}


.infobox[style*="solid"] tr:last-child th, .infobox[style*="solid"] tr:last-child td {
/* 마지막 행의 하단 모서리 */
border-bottom:none !important;
.infobox[style*="solid"] tr:last-child th:first-child {
border-radius: 0 0 0 0.75rem !important;
}
}


.infobox[style*="solid"] tr:last-child th {
.infobox[style*="solid"] tr:last-child td:last-child {
border-radius: 0 0 0 4px !important;
border-radius: 0 0 0.75rem 0 !important;
}
}

2026년 8월 10일 (월) 21:36 기준 최신판

/* Citizen 정보상자 - solid 테두리 처리 */

.infobox[style*="solid"] {
border-radius: 0.75rem;
overflow: hidden;
}

/* 내부 셀의 좌우 테두리 제거 */
.infobox[style*="solid"] th,
.infobox[style*="solid"] td {
border-right: none !important;
border-left: none !important;
}

/* 첫 번째 행 */
.infobox[style*="solid"] tr:first-child th,
.infobox[style*="solid"] tr:first-child td {
border-top: none !important;
}

/* 마지막 행 */
.infobox[style*="solid"] tr:last-child th,
.infobox[style*="solid"] tr:last-child td {
border-bottom: none !important;
}

/* 첫 번째 행의 상단 모서리 */
.infobox[style*="solid"] tr:first-child th:first-child {
border-radius: 0.75rem 0.75rem 0 0 !important;
}

/* 마지막 행의 하단 모서리 */
.infobox[style*="solid"] tr:last-child th:first-child {
border-radius: 0 0 0 0.75rem !important;
}

.infobox[style*="solid"] tr:last-child td:last-child {
border-radius: 0 0 0.75rem 0 !important;
}