과금 페이지, 스타일 추가

This commit is contained in:
현성필
2025-11-16 19:42:08 +09:00
parent 4e390962ba
commit 65f038340a
8 changed files with 976 additions and 3 deletions
+252
View File
@@ -11910,6 +11910,258 @@ select.form-control {
font-size: 16px;
}
.wrap {
max-width: 1400px;
margin: 0 auto;
background: #FFFFFF;
padding: 24px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(75, 155, 255, 0.1);
}
.searchInfo {
display: inline-block;
margin-right: 8px;
margin-bottom: 16px;
}
.searchBox {
background: #F8FAFC;
padding: 24px;
border-radius: 8px;
margin-bottom: 24px;
}
.searchBox.row-two {
display: flex;
align-items: center;
gap: 24px;
flex-wrap: wrap;
}
.searchBox label {
font-weight: 500;
color: #64748B;
min-width: 80px;
}
.searchBox .form-control {
padding: 6px 12px;
border: 1px solid #E2E8F0;
border-radius: 6px;
font-size: 14px;
}
.form-inline {
display: flex;
align-items: center;
gap: 8px;
}
.btnBox {
margin-left: auto;
}
.voffset3 {
margin-top: 30px;
}
.color_red {
color: #FF6B6B;
}
.color_blue {
color: #4B9BFF;
}
.color_darkRed {
color: #8b0000;
}
.table-responsive {
overflow-x: auto;
margin-top: 48px;
}
.table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
.table th {
background: #F8FAFC;
font-weight: 500;
color: #1A1A2E;
padding: 16px;
text-align: center;
border: 1px solid #E2E8F0;
}
.table td {
padding: 16px;
text-align: center;
border: 1px solid #E2E8F0;
}
.table-bordered {
border: 1px solid #E2E8F0;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #E2E8F0;
}
.border-type {
border: 2px solid #E2E8F0;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left;
}
.bg-warning {
background-color: #fff3cd !important;
}
.glyphicon-search::before {
content: "🔍";
}
.info-table {
border-top: 10px solid #64748B;
width: 100%;
border-bottom: 2px solid #1A1A2E;
margin-bottom: 40px;
}
.info-table th {
text-align: left;
padding: 16px 24px;
font-weight: 600;
background: none;
border: none;
}
.info-table td {
padding: 16px 24px;
border: none;
}
.commission-table {
width: 100%;
margin-top: 40px;
}
.commission-table th,
.commission-table td {
border: 1px solid #999 !important;
padding: 16px 24px;
}
.commission-table td {
text-align: right;
}
.bg_ygreen {
background-color: aquamarine;
text-align: center;
}
.bg_skyBlue {
background-color: skyblue;
text-align: center;
}
.bg_yellow {
background-color: yellow;
text-align: center;
}
@media print {
body {
padding: 0;
background: #FFFFFF;
}
.searchBox,
.searchInfo,
#printButton,
#backButton,
#printBtn {
display: none !important;
}
@page {
size: auto;
margin: 0 0cm;
}
html {
margin: 0 0cm;
}
}
@media screen and (max-width: 1024px) {
.wrap {
padding: 16px;
}
.searchBox {
padding: 16px;
}
.searchBox.row-two {
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.form-inline {
width: 100%;
flex-direction: column;
align-items: flex-start;
}
.form-inline label {
min-width: auto;
}
.form-inline .form-control {
width: 100%;
}
.btnBox {
margin-left: 0;
width: 100%;
}
.btnBox .btn {
width: 100%;
}
.table-responsive {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
}
}
.commission-print-page {
font-size: 12px;
}
.commission-print-page body {
width: 600px;
margin: 90px;
}
.commission-print-page table {
border-collapse: collapse;
}
.commission-print-page table th,
.commission-print-page table td {
padding: 5px 10px;
}
.commission-print-page table tr {
font-size: 12px;
}
.commission-print-page h1 {
text-align: center;
}
.commission-print-page h1 img {
width: 300px;
}
.commission-print-page h2 {
margin-top: 40px;
}
.commission-print-page p {
line-height: 1.6;
}
.container {
max-width: 1280px;
margin: 0 auto;
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long