미디어위키

Common.css

North Korea Humanities

김지선 (토론 | 기여)님의 2024년 11월 23일 (토) 17:26 판

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: 메뉴 → 설정(맥의 경우 오페라 → 환경 설정)으로 이동한 다음 개인 정보 보호 및 보안 → 검색 데이터 지우기 → 캐시한 영상 및 파일을 누름.
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
cite {
  box-shadow: inset 0 -20px 0 #FAFAFA;
}


/* 기본 스타일 */
.tabs-container {
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  padding: 10px;
}

.tab-input {
  display: none; /* 라디오 버튼 숨기기 */
}

.tab-label {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: inline-block;
  margin-right: 5px;
}

.tab-label:hover {
  background-color: #e2e2e2;
}

.tab-input:checked + .tab-label {
  background-color: #007BFF;
  color: white;
  border-color: #007BFF;
}

.tab-content {
  margin-top: 10px;
}

.tab-pane {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
}

.tab-input:checked + .tab-label + .tab-content .tab-pane {
  display: block;
}

/* 선택된 탭에 대한 콘텐츠만 표시 */
#tab1:checked ~ .tab-content #content1,
#tab2:checked ~ .tab-content #content2,
#tab3:checked ~ .tab-content #content3,
#tab4:checked ~ .tab-content #content4,
#tab5:checked ~ .tab-content #content5,
#tab6:checked ~ .tab-content #content6,
#tab7:checked ~ .tab-content #content7,
#tab8:checked ~ .tab-content #content8,
#tab9:checked ~ .tab-content #content9,
#tab10:checked ~ .tab-content #content10 {
  display: block;
}