38 lines
877 B
CSS
38 lines
877 B
CSS
/* 전역 */
|
|
body {padding-top: 5em; font-size: 0.9em;}
|
|
/* 사이드바 폭 */
|
|
.offcanvas.show,.offcanvas.showing,.offcanvas.hiding {width: 250px; }
|
|
|
|
/* 로그인 */
|
|
.container-login button {margin-top: 20px; width: 100%;}
|
|
.container-login h2 {text-align: center;}
|
|
|
|
/* viplist 전체숫자 */
|
|
.viplist_head {}
|
|
.mod-label {width:200px;}
|
|
|
|
.unused td {color:gray !important}
|
|
|
|
/* 중복체크 */
|
|
.checkdup {height: 25px; text-align: right;}
|
|
|
|
/* 베이커리용 CSS */
|
|
.bakery tfoot {
|
|
font-weight: 600;
|
|
}
|
|
.sort-icon {
|
|
margin-left: 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* 인쇄시에만 출력되도록 */
|
|
.only-print { display: none !important; }
|
|
|
|
/* 프린트 시 출력되지 않도록 */
|
|
@media print {
|
|
.no-print { display: none !important; }
|
|
header, footer { display: none; }
|
|
/* 얘는 출력되어야 함 */
|
|
.only-print { display: block !important; }
|
|
}
|