"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 # | + | margin: 20px; |
+ | border: 1px solid #ddd; | ||
+ | border-radius: 5px; | ||
padding: 10px; | padding: 10px; | ||
+ | background-color: #f9f9f9; | ||
} | } | ||
− | /* | + | /* 탭 버튼 스타일 */ |
− | . | + | .tabs { |
− | display: | + | display: flex; |
+ | justify-content: space-around; | ||
+ | border-bottom: 2px solid #007BFF; | ||
+ | margin-bottom: 10px; | ||
} | } | ||
− | + | .tab-link { | |
− | .tab- | + | text-decoration: none; |
− | + | padding: 10px 20px; | |
− | + | font-size: 16px; | |
− | + | color: #007BFF; | |
cursor: pointer; | cursor: pointer; | ||
− | + | transition: background-color 0.3s; | |
border-radius: 5px; | border-radius: 5px; | ||
− | |||
− | |||
− | |||
− | |||
} | } | ||
− | .tab- | + | .tab-link:hover { |
− | background-color: # | + | background-color: #e6f0ff; |
+ | } | ||
+ | |||
+ | .tab-link:active { | ||
+ | background-color: #e2e6ff; | ||
} | } | ||
− | + | .tab-link:focus { | |
− | .tab- | + | outline: none; |
− | |||
− | |||
− | |||
} | } | ||
− | /* 탭 콘텐츠 영역 | + | /* 탭 콘텐츠 영역 */ |
.tab-content { | .tab-content { | ||
− | + | display: flex; | |
− | + | flex-direction: column; | |
− | |||
− | |||
} | } | ||
− | /* | + | /* 각 탭의 콘텐츠 (숨기기) */ |
.tab-pane { | .tab-pane { | ||
display: none; | display: none; | ||
padding: 15px; | padding: 15px; | ||
background-color: #f9f9f9; | background-color: #f9f9f9; | ||
− | border-top: 1px solid # | + | 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; | 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;
}