Common.css
North Korea Humanities
참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: 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;
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;
}