temp: save local progress before merge

This commit is contained in:
2026-06-02 10:23:18 +09:00
parent bf7fb0ffe6
commit bb859dddfc
21 changed files with 13296 additions and 171 deletions

View File

@@ -91,7 +91,7 @@ body {
color: var(--text-main);
background-color: var(--bg-color);
line-height: 1.5;
font-size: 14px;
font-size: 19px;
overflow: hidden;
}
@@ -287,7 +287,7 @@ body {
/* --- Footer --- */
.main-footer {
height: 40px;
height: 28px;
background-color: var(--white);
border-top: 1px solid var(--border-color);
display: flex;
@@ -324,7 +324,7 @@ body {
.badge {
padding: 2px 6px;
border-radius: 4px;
font-size: 11px;
font-size: 16px;
font-weight: 700;
white-space: nowrap;
}
@@ -341,7 +341,7 @@ body {
.text-tag {
color: var(--text-muted);
font-size: 11px;
font-size: 16px;
padding: 1px 5px;
border: 1px solid var(--border-color);
border-radius: 3px;

View File

@@ -1,39 +1,36 @@
/* --- Dashboard View Specific Styles --- */
/* --- Premium Executive Dashboard View Specific Styles --- */
.dashboard-section-title {
padding: 0 0 1rem 0;
font-size: 1.1rem;
font-weight: 700;
font-size: 1.55rem;
font-weight: 800;
color: var(--text-main);
letter-spacing: -0.02em;
}
.dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.stat-card {
background-color: var(--white);
/* Premium Glassmorphism Card Style */
.dashboard-card, .stat-card {
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
border-radius: 12px;
padding: 1.5rem;
border: 1px solid var(--border-color);
border-radius: 8px;
display: flex;
flex-direction: column;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card .title {
font-size: 0.875rem;
color: var(--text-muted);
font-weight: 600;
}
.stat-card .value {
font-size: 2.2rem;
font-weight: 800;
color: var(--primary-color);
margin-top: 0.5rem;
.dashboard-card:hover, .stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(31, 38, 135, 0.12);
}
.dashboard-layout-2col {
@@ -42,14 +39,14 @@
gap: 1.5rem;
}
.dashboard-layout-3col {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.dashboard-card {
background-color: var(--white);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1.5rem;
display: flex;
flex-direction: column;
min-height: 360px;
min-height: 380px;
}
.dashboard-card canvas {
@@ -57,3 +54,142 @@
width: 100% !important;
max-height: 280px;
}
/* Premium KPI Value Styling */
.stat-value {
font-size: 2.2rem;
font-weight: 800;
background: linear-gradient(135deg, #1E5149 0%, #3B82F6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-top: 0.5rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.stat-value-danger {
background: linear-gradient(135deg, #E11D48 0%, #F59E0B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.stat-label {
font-size: 1.15rem;
color: var(--text-muted);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.stat-icon {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}
.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.icon-green { background: rgba(30, 81, 73, 0.1); color: #1E5149; }
.icon-red { background: rgba(225, 29, 72, 0.1); color: #E11D48; }
.icon-yellow { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.table-premium {
background: white;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
overflow: hidden;
}
.table-premium table {
width: 100%;
border-collapse: collapse;
}
.table-premium th {
background: #F8FAFC;
color: #475569;
font-weight: 700;
padding: 1rem;
text-transform: uppercase;
font-size: 0.75rem;
letter-spacing: 0.05em;
}
.table-premium td {
padding: 1rem;
border-bottom: 1px solid #E2E8F0;
color: #1E293B;
font-size: 13px;
}
.table-premium tr:hover td {
background: #F1F5F9;
}
/* --- Slider/Carousel Specific Styles --- */
.dashboard-header-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.slider-controls {
display: flex;
align-items: center;
gap: 1rem;
}
.slider-nav-btn {
background: white;
border: 1px solid var(--border-color);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
border-radius: 50%;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--text-main);
transition: all 0.2s;
}
.slider-nav-btn:hover {
background: var(--primary-color);
color: white;
border-color: var(--primary-color);
}
.slider-nav-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.slider-indicator {
font-weight: 700;
color: var(--text-muted);
font-size: 1.2rem;
}
.dashboard-slider-viewport {
width: 100%;
overflow: hidden;
padding: 0.5rem 0;
}
.dashboard-slider-track {
display: flex;
transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
width: 200%; /* For 2 pages */
}
.dashboard-slide {
width: 50%; /* 100% / 2 pages */
flex-shrink: 0;
padding: 0 2px; /* Slight padding to avoid cutting off box-shadows */
}

View File

@@ -19,7 +19,7 @@
.guide-tab {
padding: 0.75rem 1.25rem;
font-size: 13px;
font-size: 18px;
font-weight: 600;
color: var(--text-muted);
cursor: pointer;
@@ -72,7 +72,7 @@
}
.guide-section h3 {
font-size: 1rem;
font-size: 1.3rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--primary-color);
color: var(--primary-color);
@@ -83,7 +83,7 @@
}
.guide-text {
font-size: 13px;
font-size: 18px;
color: var(--text-main);
line-height: 1.7;
margin: 0;
@@ -127,7 +127,7 @@
border-radius: 50%;
background-color: var(--primary-color);
color: white;
font-size: 12px;
font-size: 17px;
font-weight: 700;
display: flex;
align-items: center;
@@ -138,12 +138,12 @@
.flow-step .step-label {
font-weight: 700;
color: var(--text-main);
font-size: 13px;
font-size: 18px;
display: block;
}
.flow-step .step-desc {
font-size: 12px;
font-size: 17px;
color: var(--text-muted);
line-height: 1.5;
margin-top: 4px;
@@ -159,7 +159,7 @@
.guide-info-table {
width: 100%;
border-collapse: collapse;
font-size: 13px;
font-size: 18px;
}
.guide-info-table th {
@@ -182,7 +182,7 @@
background: var(--primary-light);
border-left: 4px solid var(--primary-color);
padding: 1rem;
font-size: 13px;
font-size: 18px;
color: var(--primary-color);
line-height: 1.6;
}

View File

@@ -41,7 +41,7 @@
}
.modal-header h2 {
font-size: 1.125rem;
font-size: 1.4rem;
font-weight: 600;
letter-spacing: -0.02em;
}
@@ -94,7 +94,7 @@
/* Section Title for Grouping */
.form-section-title {
grid-column: span 2;
font-size: 0.875rem;
font-size: 1.15rem;
font-weight: 700;
color: var(--primary-color);
padding: 1.5rem 0 0.5rem 0; /* 패딩 조정 */
@@ -169,7 +169,7 @@
}
.form-group label {
font-size: 0.8125rem;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-muted);
}
@@ -181,7 +181,7 @@
border: 1px solid var(--border-color);
border-radius: 4px;
font-family: inherit;
font-size: 0.875rem;
font-size: 1.15rem;
outline: none;
transition: all 0.2s;
background-color: var(--white);
@@ -238,7 +238,7 @@
padding: 0.75rem 1rem;
border-radius: 8px;
cursor: pointer;
font-size: 13px;
font-size: 18px;
font-weight: 500;
display: flex;
justify-content: space-between;
@@ -295,7 +295,7 @@
.preview-table th {
padding: 0.75rem 1rem;
text-align: left;
font-size: 12px;
font-size: 17px;
font-weight: 600;
border-bottom: 1px solid var(--border-color);
color: var(--text-muted);
@@ -303,7 +303,7 @@
.preview-table td {
padding: 0.75rem 1rem;
font-size: 13px;
font-size: 18px;
border-bottom: 1px solid #f1f5f9;
color: var(--text-main);
}
@@ -338,7 +338,7 @@
}
.history-header h3 {
font-size: 0.9375rem;
font-size: 1.25rem;
font-weight: 600;
display: flex;
align-items: center;
@@ -406,21 +406,21 @@
}
.history-date {
font-size: 0.75rem;
font-size: 1.05rem;
color: var(--text-muted);
font-weight: 500;
margin-bottom: 0.25rem;
}
.history-user {
font-size: 0.75rem;
font-size: 1.05rem;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 0.25rem;
}
.history-details {
font-size: 0.8125rem;
font-size: 1.1rem;
color: var(--text-main);
line-height: 1.4;
white-space: pre-wrap;
@@ -431,7 +431,7 @@
padding: 2rem 0;
text-align: center;
color: var(--text-muted);
font-size: 0.8125rem;
font-size: 1.1rem;
}
/* Dashboard Detail Modal Table Fixed Header */
@@ -464,7 +464,7 @@
border-bottom: 2px solid var(--border-color);
box-shadow: none;
padding: 0.75rem 1rem;
font-size: 0.8125rem;
font-size: 1.1rem;
font-weight: 600;
color: var(--text-main);
text-align: left;
@@ -474,7 +474,7 @@
#dashboard-detail-modal tbody td {
padding: 0.75rem 1rem;
border-bottom: 1px solid var(--border-color);
font-size: 0.8125rem;
font-size: 1.1rem;
color: var(--text-main);
white-space: nowrap;
}
@@ -492,7 +492,7 @@
display: inline-block;
padding: 0.125rem 0.5rem;
border-radius: 4px;
font-size: 0.75rem;
font-size: 1.05rem;
font-weight: 500;
line-height: 1.5;
}

View File

@@ -10,7 +10,7 @@
}
.page-title {
font-size: 16px;
font-size: 21px;
font-weight: 700;
color: var(--primary-color);
display: flex;
@@ -30,7 +30,7 @@
}
.page-description {
font-size: 12px;
font-size: 17px;
color: var(--text-muted);
margin: 0;
line-height: 1.4;
@@ -72,7 +72,7 @@
}
.search-item label {
font-size: 11px;
font-size: 16px;
font-weight: 700;
color: var(--text-muted);
}
@@ -83,7 +83,7 @@
padding: 0 1rem;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 14px;
font-size: 19px;
outline: none;
background-color: var(--white);
}
@@ -141,7 +141,7 @@ thead {
th {
background-color: #FAFAFA !important;
font-size: 13px;
font-size: 18px;
font-weight: 600;
color: var(--text-muted);
position: sticky;
@@ -152,7 +152,7 @@ th {
}
td {
font-size: 13px;
font-size: 18px;
color: var(--text-main);
font-weight: 400;
}