"Common.css"의 두 판 사이의 차이
North Korea Humanities
6번째 줄: | 6번째 줄: | ||
− | + | /* 기본 컨테이너 스타일 */ | |
− | /* 기본 스타일 */ | ||
.tabs-container { | .tabs-container { | ||
font-family: Arial, sans-serif; | font-family: Arial, sans-serif; | ||
17번째 줄: | 16번째 줄: | ||
} | } | ||
− | /* 탭 | + | /* 탭 버튼들 */ |
.tabs { | .tabs { | ||
display: flex; | display: flex; | ||
justify-content: space-around; | justify-content: space-around; | ||
− | |||
margin-bottom: 10px; | margin-bottom: 10px; | ||
} | } | ||
+ | /* 기본 탭 버튼 스타일 */ | ||
.tab-link { | .tab-link { | ||
text-decoration: none; | text-decoration: none; | ||
− | padding: | + | padding: 12px 20px; |
font-size: 16px; | font-size: 16px; | ||
− | font-weight: bold; | + | font-weight: bold; |
− | color: # | + | color: #007BFF; /* 기본 탭 글씨 파란색 */ |
− | background-color: # | + | background-color: #fff; /* 탭 배경 흰색 */ |
border-radius: 5px; | border-radius: 5px; | ||
− | transition: background-color 0.3s, transform 0.3s; | + | border: 2px solid #007BFF; /* 테두리 파란색 */ |
+ | transition: background-color 0.3s, color 0.3s, transform 0.3s; | ||
+ | margin: 0 5px; | ||
} | } | ||
.tab-link:hover { | .tab-link:hover { | ||
− | background-color: # | + | background-color: #e6f1fa; /* hover 시 파란색 옅은 배경 */ |
− | |||
} | } | ||
.tab-link:focus { | .tab-link:focus { | ||
outline: none; | outline: none; | ||
+ | } | ||
+ | |||
+ | /* 클릭된 탭 스타일 */ | ||
+ | .tab-link:active, .tab-link:focus, .tab-link:target { | ||
+ | background-color: #007BFF; /* 클릭시 배경색 파란색 */ | ||
+ | color: #fff; /* 클릭시 글씨를 흰색 */ | ||
} | } | ||
52번째 줄: | 58번째 줄: | ||
} | } | ||
− | /* 각 탭의 콘텐츠 ( | + | /* 각 탭의 콘텐츠 (기본적으로 숨김 처리) */ |
.tab-pane { | .tab-pane { | ||
display: none; | display: none; | ||
padding: 15px; | padding: 15px; | ||
− | background-color: # | + | background-color: #f0f0f0; /* 회색 배경 */ |
− | border | + | border: 1px solid #ddd; /* 회색 테두리 */ |
+ | border-radius: 5px; | ||
+ | margin-top: 10px; | ||
} | } | ||
65번째 줄: | 73번째 줄: | ||
} | } | ||
+ | /* 각 탭 콘텐츠가 선택된 경우에만 보여지도록 처리 */ | ||
:target ~ .tab-content #tab1, | :target ~ .tab-content #tab1, | ||
:target ~ .tab-content #tab2, | :target ~ .tab-content #tab2, |
2024년 11월 23일 (토) 17:34 판
/* 이 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;
margin-bottom: 10px;
}
/* 기본 탭 버튼 스타일 */
.tab-link {
text-decoration: none;
padding: 12px 20px;
font-size: 16px;
font-weight: bold;
color: #007BFF; /* 기본 탭 글씨 파란색 */
background-color: #fff; /* 탭 배경 흰색 */
border-radius: 5px;
border: 2px solid #007BFF; /* 테두리 파란색 */
transition: background-color 0.3s, color 0.3s, transform 0.3s;
margin: 0 5px;
}
.tab-link:hover {
background-color: #e6f1fa; /* hover 시 파란색 옅은 배경 */
}
.tab-link:focus {
outline: none;
}
/* 클릭된 탭 스타일 */
.tab-link:active, .tab-link:focus, .tab-link:target {
background-color: #007BFF; /* 클릭시 배경색 파란색 */
color: #fff; /* 클릭시 글씨를 흰색 */
}
/* 탭 콘텐츠 영역 */
.tab-content {
display: flex;
flex-direction: column;
padding: 10px 0;
}
/* 각 탭의 콘텐츠 (기본적으로 숨김 처리) */
.tab-pane {
display: none;
padding: 15px;
background-color: #f0f0f0; /* 회색 배경 */
border: 1px solid #ddd; /* 회색 테두리 */
border-radius: 5px;
margin-top: 10px;
}
/* #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;
}