184 lines
6.9 KiB
CSS
184 lines
6.9 KiB
CSS
:root {
|
|
/* 1. Core Colors */
|
|
--primary-color: #1E5149;
|
|
--primary-hover: #163b36;
|
|
--primary-lv-0: #f0f7f4;
|
|
--primary-lv-1: #e1eee9;
|
|
--primary-lv-8: #193833;
|
|
|
|
--bg-default: #FFFFFF;
|
|
--bg-muted: #F9FAFB;
|
|
--hover-bg: #F7FAFC;
|
|
|
|
--text-main: #111827;
|
|
--text-sub: #6B7280;
|
|
--error-color: #F21D0D;
|
|
--border-color: #E2E8F0;
|
|
|
|
/* 2. Gradients */
|
|
--header-gradient: linear-gradient(90deg, #193833 0%, #1e5149 100%);
|
|
--ai-gradient: linear-gradient(180deg, #da8cf1 0%, #8bb1f2 100%);
|
|
|
|
/* 3. Spacing & Radius */
|
|
--space-xs: 4px;
|
|
--space-sm: 8px;
|
|
--space-md: 16px;
|
|
--space-lg: 32px;
|
|
--radius-sm: 4px;
|
|
--radius-md: 6px;
|
|
--radius-lg: 8px;
|
|
--radius-xl: 12px;
|
|
|
|
/* 4. Typography */
|
|
--fz-h1: 20px;
|
|
--fz-h2: 16px;
|
|
--fz-body: 13px;
|
|
--fz-small: 11px;
|
|
|
|
/* 5. Shadows */
|
|
--box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
|
|
--box-shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
--box-shadow-modal: 0 25px 50px -12px rgba(0,0,0,0.5);
|
|
|
|
/* 6. Layout Constants */
|
|
--topbar-h: 36px;
|
|
}
|
|
|
|
/* Base Reset */
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: 'Pretendard', -apple-system, sans-serif;
|
|
font-size: var(--fz-body);
|
|
color: var(--text-main);
|
|
background: var(--bg-default);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Page Specific Overrides */
|
|
body:has(.mail-wrapper) { height: 100vh; overflow: hidden; }
|
|
|
|
input, select, textarea, button { font-family: inherit; }
|
|
a { text-decoration: none; color: inherit; }
|
|
button { cursor: pointer; border: none; transition: all 0.2s ease; }
|
|
|
|
/* Utilities */
|
|
.flex-center { display: flex; align-items: center; justify-content: center; }
|
|
.flex-between { display: flex; align-items: center; justify-content: space-between; }
|
|
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
|
|
/* Components: Topbar */
|
|
.topbar {
|
|
width: 100%;
|
|
background: var(--header-gradient);
|
|
color: #fff;
|
|
padding: 0 var(--space-lg);
|
|
position: fixed;
|
|
top: 0;
|
|
height: var(--topbar-h);
|
|
display: flex;
|
|
align-items: center;
|
|
z-index: 2000;
|
|
}
|
|
.topbar-header h2 { font-size: 16px; color: white; margin-right: 60px; font-weight: 700; }
|
|
.nav-list { display: flex; list-style: none; gap: var(--space-sm); }
|
|
.nav-item {
|
|
padding: 4px 12px; border-radius: var(--radius-sm);
|
|
color: rgba(255, 255, 255, 0.8); font-size: 14px;
|
|
}
|
|
.nav-item:hover { background: var(--primary-lv-8); color: #fff; }
|
|
.nav-item.active { background: var(--primary-lv-0); color: var(--primary-color) !important; font-weight: 700; }
|
|
|
|
/* Components: Modals */
|
|
.modal-overlay {
|
|
display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
|
|
background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
|
|
z-index: 3000; justify-content: center; align-items: center;
|
|
}
|
|
.modal-content {
|
|
background: white; padding: 24px; border-radius: var(--radius-xl);
|
|
width: 90%; max-width: 500px; box-shadow: var(--box-shadow-modal);
|
|
}
|
|
.modal-header {
|
|
display: flex; justify-content: space-between; align-items: center;
|
|
margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px;
|
|
}
|
|
.modal-header h3 { margin: 0; font-size: 16px; color: var(--primary-color); font-weight: 700; }
|
|
.modal-close { cursor: pointer; font-size: 24px; color: var(--text-sub); line-height: 1; }
|
|
.modal-close:hover { color: var(--text-main); }
|
|
|
|
/* Components: Data Tables */
|
|
.data-table { width: 100%; border-collapse: collapse; font-size: 12px; }
|
|
.data-table th, .data-table td { padding: 10px 8px; border-bottom: 1px solid var(--border-color); text-align: left; }
|
|
.data-table th { color: var(--text-sub); font-weight: 600; background: var(--bg-muted); }
|
|
.data-table tr:hover { background: var(--hover-bg); }
|
|
|
|
/* Components: Buttons (Unified) */
|
|
.btn {
|
|
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
|
|
padding: 8px 16px; border-radius: var(--radius-lg); font-weight: 600; font-size: 13px;
|
|
}
|
|
.btn-primary { background: var(--primary-color); color: #fff; }
|
|
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
|
|
.btn-secondary { background: #f1f3f5; color: #495057; }
|
|
.btn-secondary:hover { background: #e9ecef; }
|
|
.btn-danger { background: #fee2e2; color: #dc2626; }
|
|
.btn-danger:hover { background: #fecaca; }
|
|
|
|
/* Existing Utils - Compatibility */
|
|
._button-xsmall {
|
|
display: inline-flex; align-items: center; justify-content: center;
|
|
padding: 4px 10px; font-size: 11px; font-weight: 600; border-radius: 4px; border: 1px solid var(--border-color);
|
|
background: #fff; color: var(--text-main); cursor: pointer; transition: 0.2s;
|
|
}
|
|
._button-xsmall:hover { background: var(--bg-muted); border-color: var(--primary-color); color: var(--primary-color); }
|
|
|
|
._button-small {
|
|
display: inline-flex; align-items: center; justify-content: center;
|
|
padding: 6px 14px; font-size: 12px; background: var(--primary-color); color: #fff; border-radius: 6px; border: none; cursor: pointer;
|
|
}
|
|
._button-medium {
|
|
display: inline-flex; align-items: center; justify-content: center;
|
|
padding: 10px 20px; background: var(--primary-color); color: #fff; border-radius: 6px; font-weight: 700; border: none; cursor: pointer;
|
|
}
|
|
.sync-btn { background: var(--primary-color); color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; }
|
|
|
|
/* Badges */
|
|
.badge { padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 700; display: inline-block; background: #eee; }
|
|
|
|
/* Status Colors (Common) */
|
|
.bg-success { background: #e8f5e9; color: #2e7d32; }
|
|
.bg-warning { background: #fff8e1; color: #FFBF00; }
|
|
.bg-danger { background: #ffebee; color: #dc2626; }
|
|
.bg-info { background: #e3f2fd; color: #1565c0; }
|
|
|
|
.status-error { background: #fee9e7; }
|
|
.status-warning { background: #fff9e6; }
|
|
|
|
.warning-text { color: #FFBF00; font-weight: 600; }
|
|
.error-text { color: #F21D0D !important; font-weight: 700; }
|
|
|
|
/* Spinner */
|
|
.spinner {
|
|
display: none; width: 16px; height: 16px; border: 2px solid rgba(255, 255, 255, .3);
|
|
border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite;
|
|
}
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
|
|
/* Modals (Refined) */
|
|
.modal-overlay {
|
|
display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
|
|
background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px);
|
|
z-index: 3000; justify-content: center; align-items: center;
|
|
}
|
|
.modal-content {
|
|
background: white; padding: 24px; border-radius: var(--radius-xl);
|
|
width: 90%; max-width: 500px; box-shadow: var(--box-shadow-modal);
|
|
}
|
|
.modal-header {
|
|
display: flex; justify-content: space-between; align-items: center;
|
|
margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px;
|
|
}
|
|
.modal-header h3 { margin: 0; font-size: 16px; color: var(--primary-color); font-weight: 700; }
|
|
.modal-close { cursor: pointer; font-size: 24px; color: var(--text-sub); line-height: 1; transition: 0.2s; }
|
|
.modal-close:hover { color: var(--text-main); }
|