54 lines
1.3 KiB
CSS
54 lines
1.3 KiB
CSS
|
|
/** 컨텐츠 기본 상자 **/
|
|
#frame_contents .content-main {
|
|
display: flex;
|
|
|
|
border-radius: 10px;
|
|
background: var(--frame_bgcolor_contents);
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
#frame_contents .content-box {
|
|
background: var(--bgcolor_frame);
|
|
padding: var(--padding_base);
|
|
border-radius: var(--radius_base);
|
|
}
|
|
|
|
|
|
/* 기본테이블 */
|
|
.basetable {
|
|
width: 100%;
|
|
border-collapse: separate;
|
|
border-bottom: 1px solid var(--color_border_table_bottom);
|
|
}
|
|
.basetable th {
|
|
text-align: center;
|
|
background-color: var(--color_bg_table_title);
|
|
border-top: 1px solid var(--color_border_table_top);
|
|
border-bottom: 1px solid var(--color_border_table_hbottom);
|
|
color: var(--color_text_dsub); font-weight: normal;
|
|
height: 26px;
|
|
}
|
|
.basetable th:not(:first-child) {
|
|
border-left: 1px solid var(--color_border_table_hright);
|
|
}
|
|
.basetable td {
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
border-bottom: 1px solid var(--color_border_table_bline);
|
|
height: 26px;
|
|
}
|
|
.basetable td:not(:last-child:first-child) {
|
|
border-left: 1px solid var(--color_border_table_rline);
|
|
}
|
|
.basetable td:last-child:first-child {
|
|
border-right: 1px solid var(--color_border_table_rline);
|
|
}
|
|
.basetable thead.top_sticky, .basetable thead.top_sticky th {
|
|
position: sticky;
|
|
top:0;
|
|
left:0;
|
|
} |