미디어위키

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

North Korea Humanities

29번째 줄: 29번째 줄:
 
   padding: 10px 20px;
 
   padding: 10px 20px;
 
   font-size: 16px;
 
   font-size: 16px;
   color: #007BFF;
+
   font-weight: bold; /* 글씨 굵게 */
   cursor: pointer;
+
   color: #fff; /* 글씨 색을 흰색으로 */
   transition: background-color 0.3s;
+
   background-color: #007BFF; /* 파란색 배경 */
 
   border-radius: 5px;
 
   border-radius: 5px;
 +
  transition: background-color 0.3s, transform 0.3s;
 
}
 
}
  
 
.tab-link:hover {
 
.tab-link:hover {
   background-color: #e6f0ff;
+
   background-color: #0056b3; /* hover시 조금 더 어두운 파랑 */
}
+
   transform: scale(1.05); /* 탭을 누를 때 살짝 커지는 효과 */
 
 
.tab-link:active {
 
   background-color: #e2e6ff;
 
 
}
 
}
  
51번째 줄: 49번째 줄:
 
   display: flex;
 
   display: flex;
 
   flex-direction: column;
 
   flex-direction: column;
 +
  padding: 10px 0;
 
}
 
}
  

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

/* 이 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;
  font-weight: bold;  /* 글씨 굵게 */
  color: #fff;  /* 글씨 색을 흰색으로 */
  background-color: #007BFF;  /* 파란색 배경 */
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.tab-link:hover {
  background-color: #0056b3;  /* hover시 조금 더 어두운 파랑 */
  transform: scale(1.05);  /* 탭을 누를 때 살짝 커지는 효과 */
}

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

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

/* 각 탭의 콘텐츠 (숨기기) */
.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;
}