58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
/* 탭 모듈 전체 */
|
|
.rb-tab-module {
|
|
border: 1px solid #e9e9e9;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
background: #fff;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* 탭 네비게이션 */
|
|
.rb-tab-nav {
|
|
display: flex;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-bottom: 1px solid #e9e9e9;
|
|
background-color: #f9f9f9;
|
|
}
|
|
.rb-tab-nav a {
|
|
display: block;
|
|
padding: 12px 20px;
|
|
text-decoration: none;
|
|
color: #555;
|
|
font-weight: 500;
|
|
border-bottom: 3px solid transparent;
|
|
transition: all 0.2s ease-in-out;
|
|
}
|
|
.rb-tab-nav a.active {
|
|
color: #0056b3;
|
|
font-weight: 700;
|
|
border-bottom-color: #0056b3;
|
|
background-color: #fff;
|
|
}
|
|
|
|
/* 탭 콘텐츠 */
|
|
.rb-tab-content-wrapper {
|
|
padding: 15px;
|
|
position: relative;
|
|
}
|
|
.rb-tab-content {
|
|
display: none;
|
|
}
|
|
.rb-tab-content.active {
|
|
display: block;
|
|
}
|
|
.rb-tab-content .no-posts {
|
|
color: #999;
|
|
padding: 30px 0;
|
|
text-align: center;
|
|
}
|
|
/* latest 스킨(basic)을 탭 내부에 맞게 스타일 조정 */
|
|
.rb-tab-content .lat {
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
.rb-tab-content .lat ul {
|
|
margin: 0;
|
|
} |