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;
background-color: #fff; /* 컨테이너 배경 흰색 */
}
/* 탭 버튼들 */
.tabs {
display: flex;
justify-content: space-between; /* 탭 버튼들 사이에 여백을 넣습니다 */
margin-bottom: 10px;
background-color: #007BFF; /* 탭 버튼 배경 파란색 */
border-radius: 5px 5px 0 0; /* 탭 버튼 위쪽 둥글게 */
}
/* 기본 탭 버튼 스타일 */
.tab-link {
text-decoration: none;
padding: 12px 20px;
font-size: 16px;
font-weight: bold;
color: #fff; /* 기본 탭 글씨 흰색 */
background-color: #007BFF; /* 탭 배경 파란색 */
border-radius: 5px 5px 0 0; /* 탭 버튼 위쪽 둥글게 */
border: 2px solid #007BFF; /* 테두리 파란색 */
transition: background-color 0.3s, color 0.3s, transform 0.3s;
margin: 0 8px; /* 탭 버튼 사이에 여백 추가 */
flex-grow: 1;
text-align: center; /* 탭 텍스트 중앙 정렬 */
}
/* 탭 버튼의 hover 효과 */
.tab-link:hover {
background-color: #0062cc; /* hover 시 배경색 진한 파란색 */
}
/* 클릭된 탭 스타일 */
.tab-link:active, .tab-link:focus, .tab-link:target {
background-color: #fff; /* 클릭시 배경색 흰색 */
color: #007BFF; /* 클릭시 글씨 색 파란색 */
border-color: #007BFF; /* 테두리 파란색 */
}
/* 탭 콘텐츠 영역 */
.tab-content {
display: flex;
flex-direction: column;
padding: 10px 0;
}
/* 각 탭의 콘텐츠 (기본적으로 숨김 처리) */
.tab-pane {
display: none;
padding: 15px;
background-color: #f7f7f7; /* 회색 배경 */
border: 1px solid #ddd; /* 회색 테두리 */
border-radius: 5px;
margin-top: 10px;
}
/* 선택된 탭 콘텐츠만 보이도록 처리 */
: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;
}