미디어위키

"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 {
 
   font-family: Arial, sans-serif;
 
   font-family: Arial, sans-serif;
   border: 1px solid #ccc;
+
  margin: 20px;
 +
   border: 1px solid #ddd;
 +
  border-radius: 5px;
 
   padding: 10px;
 
   padding: 10px;
 +
  background-color: #f9f9f9;
 
}
 
}
  
/* 라디오 버튼을 숨기기 */
+
/* 탭 버튼 스타일 */
.tab-input {
+
.tabs {
   display: none;
+
   display: flex;
 +
  justify-content: space-around;
 +
  border-bottom: 2px solid #007BFF;
 +
  margin-bottom: 10px;
 
}
 
}
  
/* 탭 버튼 스타일 */
+
.tab-link {
.tab-label {
+
   text-decoration: none;
   background-color: #f8f8f8;
+
  padding: 10px 20px;
   border: 1px solid #ccc;
+
   font-size: 16px;
   padding: 10px 15px;
+
   color: #007BFF;
 
   cursor: pointer;
 
   cursor: pointer;
   font-size: 16px;
+
   transition: background-color 0.3s;
 
   border-radius: 5px;
 
   border-radius: 5px;
  display: inline-block;
 
  margin-right: 5px;
 
  transition: background-color 0.3s;
 
  user-select: none;
 
 
}
 
}
  
.tab-label:hover {
+
.tab-link:hover {
   background-color: #e2e2e2;
+
   background-color: #e6f0ff;
 +
}
 +
 
 +
.tab-link:active {
 +
  background-color: #e2e6ff;
 
}
 
}
  
/* 선택된 탭 스타일 */
+
.tab-link:focus {
.tab-input:checked + .tab-label {
+
   outline: none;
   background-color: #007BFF;
 
  color: white;
 
  border-color: #007BFF;
 
 
}
 
}
  
/* 탭 콘텐츠 영역 스타일 */
+
/* 탭 콘텐츠 영역 */
 
.tab-content {
 
.tab-content {
   margin-top: 10px;
+
   display: flex;
  border-top: 2px solid #007BFF;
+
   flex-direction: column;
  padding: 10px;
 
   background-color: #f9f9f9;
 
 
}
 
}
  
/* 콘텐츠 (숨기기 및 표시) */
+
/* 각 탭의 콘텐츠 (숨기기) */
 
.tab-pane {
 
.tab-pane {
 
   display: none;
 
   display: none;
 
   padding: 15px;
 
   padding: 15px;
 
   background-color: #f9f9f9;
 
   background-color: #f9f9f9;
   border-top: 1px solid #ccc;
+
   border-top: 1px solid #ddd;
 +
}
 +
 
 +
/* :target을 이용해 클릭된 탭만 보이게 설정 */
 +
:target {
 +
  display: block;
 
}
 
}
  
/* 각 탭에 맞는 콘텐츠 표시 */
+
/* 탭 링크 클릭 시 해당 콘텐츠를 표시 */
#tab1:checked ~ .tab-content #content1,
+
:target ~ .tab-content #tab1,
#tab2:checked ~ .tab-content #content2,
+
:target ~ .tab-content #tab2,
#tab3:checked ~ .tab-content #content3,
+
:target ~ .tab-content #tab3,
#tab4:checked ~ .tab-content #content4,
+
:target ~ .tab-content #tab4,
#tab5:checked ~ .tab-content #content5,
+
:target ~ .tab-content #tab5,
#tab6:checked ~ .tab-content #content6,
+
:target ~ .tab-content #tab6,
#tab7:checked ~ .tab-content #content7,
+
:target ~ .tab-content #tab7,
#tab8:checked ~ .tab-content #content8,
+
:target ~ .tab-content #tab8,
#tab9:checked ~ .tab-content #content9,
+
:target ~ .tab-content #tab9,
#tab10:checked ~ .tab-content #content10 {
+
:target ~ .tab-content #tab10 {
 
   display: block;
 
   display: block;
 
}
 
}

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

/* 이 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;
}

/* :target을 이용해 클릭된 탭만 보이게 설정 */
: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;
}