미디어위키

"Common.css"의 두 판 사이의 차이

North Korea Humanities

3번째 줄: 3번째 줄:
 
   box-shadow: inset 0 -20px 0 #FAFAFA;
 
   box-shadow: inset 0 -20px 0 #FAFAFA;
 
}
 
}
 +
 +
 +
 +
 
/* 기본 스타일 */
 
/* 기본 스타일 */
 
.tabs-container {
 
.tabs-container {
57번째 줄: 61번째 줄:
 
}
 
}
  
/* :target을 이용해 클릭된 탭만 보이게 설정 */
+
/* #id를 통해 탭을 활성화할 때만 그 콘텐츠를 보여줍니다 */
 
:target {
 
:target {
 
   display: block;
 
   display: block;
 
}
 
}
  
/* 탭 링크 클릭 시 해당 콘텐츠를 표시 */
 
 
:target ~ .tab-content #tab1,
 
:target ~ .tab-content #tab1,
 
:target ~ .tab-content #tab2,
 
:target ~ .tab-content #tab2,

2024년 11월 23일 (토) 17:32 판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
cite {
  box-shadow: inset 0 -20px 0 #FAFAFA;
}




/* 기본 스타일 */
.tabs-container {
  font-family: Arial, sans-serif;
  margin: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #f9f9f9;
}

/* 탭 버튼 스타일 */
.tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #007BFF;
  margin-bottom: 10px;
}

.tab-link {
  text-decoration: none;
  padding: 10px 20px;
  font-size: 16px;
  color: #007BFF;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.tab-link:hover {
  background-color: #e6f0ff;
}

.tab-link:active {
  background-color: #e2e6ff;
}

.tab-link:focus {
  outline: none;
}

/* 탭 콘텐츠 영역 */
.tab-content {
  display: flex;
  flex-direction: column;
}

/* 각 탭의 콘텐츠 (숨기기) */
.tab-pane {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

/* #id를 통해 탭을 활성화할 때만 그 콘텐츠를 보여줍니다 */
:target {
  display: block;
}

:target ~ .tab-content #tab1,
:target ~ .tab-content #tab2,
:target ~ .tab-content #tab3,
:target ~ .tab-content #tab4,
:target ~ .tab-content #tab5,
:target ~ .tab-content #tab6,
:target ~ .tab-content #tab7,
:target ~ .tab-content #tab8,
:target ~ .tab-content #tab9,
:target ~ .tab-content #tab10 {
  display: block;
}