343 lines
15 KiB
CSS
343 lines
15 KiB
CSS
@font-face {
|
|
font-family: 'Noto Sans KR';
|
|
src: url('./fonts/notokr-regular.woff2') format('woff2');
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Noto Sans KR';
|
|
src: url('./fonts/notokr-medium.woff2') format('woff2');
|
|
font-weight: 500;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Noto Sans KR';
|
|
src: url('./fonts/notokr-bold.woff2') format('woff2');
|
|
font-weight: 700;
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
--navy: #173f78;
|
|
--ink: #171717;
|
|
--muted: #707070;
|
|
--line: #e5e5e5;
|
|
--soft: #f7f8fa;
|
|
--accent: #005bff;
|
|
--green: #0c7857;
|
|
--header-height: 88px;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
html { min-width: 320px; scroll-behavior: smooth; }
|
|
body {
|
|
margin: 0;
|
|
color: var(--ink);
|
|
background: #fff;
|
|
font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
|
|
font-size: 15px;
|
|
line-height: 1.55;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
a { color: inherit; text-decoration: none; }
|
|
button, input, select, textarea { font: inherit; }
|
|
button, a { -webkit-tap-highlight-color: transparent; }
|
|
button { cursor: pointer; }
|
|
|
|
.site-header {
|
|
position: relative;
|
|
z-index: 10;
|
|
height: var(--header-height);
|
|
border-bottom: 1px solid #ededed;
|
|
background: rgba(255, 255, 255, .98);
|
|
}
|
|
|
|
.header-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
max-width: 1840px;
|
|
padding: 0 32px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.brand {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
flex: 0 0 auto;
|
|
color: var(--navy);
|
|
font-size: 17px;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.brand-mark {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 36px;
|
|
height: 24px;
|
|
border: 2px solid var(--navy);
|
|
border-radius: 50%;
|
|
font-size: 14px;
|
|
font-style: italic;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.global-nav {
|
|
display: flex;
|
|
align-items: stretch;
|
|
height: 100%;
|
|
gap: clamp(22px, 2.5vw, 52px);
|
|
margin-left: auto;
|
|
margin-right: 38px;
|
|
}
|
|
|
|
.nav-item {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
color: #3d3d3d;
|
|
font-size: 16px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.nav-item.package::after {
|
|
content: '';
|
|
position: absolute;
|
|
right: -13px;
|
|
bottom: 25px;
|
|
left: -13px;
|
|
height: 2px;
|
|
background: var(--navy);
|
|
transform: scaleX(0);
|
|
transition: transform .2s ease;
|
|
}
|
|
|
|
.nav-item.package:hover::after,
|
|
.nav-item.package:focus-within::after { transform: scaleX(1); }
|
|
|
|
.mega-menu {
|
|
position: absolute;
|
|
top: calc(100% - 1px);
|
|
left: 50%;
|
|
display: grid;
|
|
grid-template-columns: 116px 1fr;
|
|
width: 360px;
|
|
padding: 22px 20px;
|
|
border-radius: 0 0 10px 10px;
|
|
background: #fff;
|
|
box-shadow: 0 15px 36px rgba(0, 0, 0, .13);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
transform: translate(-50%, -6px);
|
|
transition: opacity .2s ease, transform .2s ease;
|
|
}
|
|
|
|
.nav-item.package:hover .mega-menu,
|
|
.nav-item.package:focus-within .mega-menu {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
transform: translate(-50%, 0);
|
|
}
|
|
|
|
.mega-label { color: var(--accent); font-weight: 500; padding-top: 5px; }
|
|
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
|
|
.mega-links a { color: #555; font-size: 14px; }
|
|
.mega-links a:hover, .mega-links a[aria-current='page'] { color: var(--accent); }
|
|
|
|
.header-tools { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
|
|
.locale { font-weight: 700; }
|
|
.locale span { color: #c9c9c9; margin: 0 8px; }
|
|
.locale a:last-child { color: #9a9a9a; font-weight: 400; }
|
|
.login-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; }
|
|
.user-icon { width: 20px; height: 20px; border: 1.8px solid #111; border-radius: 50%; position: relative; margin-top: -9px; }
|
|
.user-icon::after { content: ''; position: absolute; top: 17px; left: -5px; width: 26px; height: 12px; border: 1.8px solid #111; border-bottom: 0; border-radius: 16px 16px 0 0; }
|
|
.menu-button { display: inline-flex; flex-direction: column; gap: 6px; border: 0; background: none; padding: 6px 0 6px 8px; }
|
|
.menu-button span { display: block; width: 24px; height: 1.5px; background: #111; }
|
|
|
|
.page-hero {
|
|
display: flex;
|
|
min-height: 248px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
text-align: center;
|
|
background: linear-gradient(115deg, #11342b 0%, #10221f 50%, #07110f 100%);
|
|
}
|
|
|
|
.hero-inner { padding: 42px 24px; }
|
|
.hero-kicker { display: block; color: #b9d9ca; font-size: 14px; letter-spacing: .06em; }
|
|
.page-hero h1 { margin: 5px 0 5px; font-size: 42px; letter-spacing: -.05em; }
|
|
.page-hero p { margin: 0; color: #d5dfdc; font-size: 16px; }
|
|
|
|
.sub-nav { background: rgba(8, 30, 24, .96); color: #fff; }
|
|
.sub-nav-inner { display: flex; max-width: 1280px; margin: 0 auto; }
|
|
.sub-nav a { flex: 1; padding: 17px 12px; text-align: center; color: #cbd6d2; }
|
|
.sub-nav a:hover, .sub-nav a[aria-current='page'] { color: #fff; background: #1c7056; font-weight: 700; }
|
|
|
|
.page-shell { max-width: 1280px; padding: 66px 32px 110px; margin: 0 auto; }
|
|
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
|
|
.section-heading h2 { margin: 0; font-size: 28px; letter-spacing: -.05em; }
|
|
.section-heading p { margin: 3px 0 0; color: var(--muted); }
|
|
|
|
.filter-panel { padding: 22px 24px; margin-bottom: 25px; border: 1px solid var(--line); background: var(--soft); }
|
|
.filter-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
|
|
.filter-row + .filter-row { padding-top: 17px; margin-top: 17px; border-top: 1px solid var(--line); }
|
|
.filter-label { min-width: 48px; font-weight: 700; }
|
|
.chip-group { display: flex; gap: 7px; flex-wrap: wrap; }
|
|
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 7px 13px; border: 1px solid #d7d7d7; border-radius: 3px; background: #fff; color: #666; font-size: 13px; }
|
|
.chip:has(input:checked) { border-color: var(--navy); background: var(--navy); color: #fff; }
|
|
.chip input { position: absolute; opacity: 0; pointer-events: none; }
|
|
.filter-spacer { flex: 1; }
|
|
.search-form { display: flex; gap: 8px; min-width: min(100%, 400px); }
|
|
.search-form input { width: 100%; min-width: 0; height: 40px; padding: 0 13px; border: 1px solid #d2d2d2; background: #fff; outline: 0; }
|
|
.search-form input:focus { border-color: var(--navy); }
|
|
.button { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 21px; border: 1px solid transparent; border-radius: 3px; font-weight: 500; white-space: nowrap; }
|
|
.button-primary { background: var(--navy); color: #fff; }
|
|
.button-primary:hover { background: #0e315f; }
|
|
.button-outline { border-color: #bfc5cb; background: #fff; color: #555; }
|
|
.button-outline:hover { border-color: var(--navy); color: var(--navy); }
|
|
.button-accent { background: var(--accent); color: #fff; }
|
|
.button-accent:hover { background: #0049cc; }
|
|
|
|
.table-wrap { overflow-x: auto; border-top: 2px solid #252525; }
|
|
.qa-table { width: 100%; min-width: 850px; border-collapse: collapse; table-layout: fixed; }
|
|
.qa-table th { height: 48px; padding: 0 12px; border-bottom: 1px solid #252525; font-weight: 500; }
|
|
.qa-table td { height: 62px; padding: 0 12px; border-bottom: 1px solid var(--line); color: #5c5c5c; text-align: center; }
|
|
.qa-table tbody tr { cursor: pointer; transition: background .15s ease; }
|
|
.qa-table tbody tr:hover { background: #fafafa; }
|
|
.qa-table .subject { overflow: hidden; color: #222; text-align: left; text-overflow: ellipsis; white-space: nowrap; }
|
|
.subject-link { font-weight: 500; }
|
|
.notice-row td { background: #fcfcf8; font-weight: 500; }
|
|
.category { display: inline-flex; align-items: center; justify-content: center; min-width: 66px; padding: 3px 7px; border-radius: 2px; background: #f0f4fb; color: var(--navy); font-size: 12px; }
|
|
.category.notice { background: #fff6e7; color: #9b6915; }
|
|
.lock { display: inline-block; margin-right: 6px; color: #888; font-size: 12px; }
|
|
.new-mark { margin-left: 4px; color: var(--accent); font-size: 11px; font-weight: 700; }
|
|
.status { display: inline-flex; justify-content: center; min-width: 76px; padding: 3px 7px; border: 1px solid #dadada; border-radius: 2px; color: #666; font-size: 12px; }
|
|
.status.done { border-color: #b3ddce; background: #effaf6; color: var(--green); }
|
|
.status.review { border-color: #c5d8ef; background: #f2f7fd; color: #356594; }
|
|
.table-empty { display: none; padding: 70px 20px; border-bottom: 1px solid var(--line); color: var(--muted); text-align: center; }
|
|
|
|
.table-actions { display: flex; align-items: center; justify-content: space-between; padding-top: 23px; }
|
|
.result-count { color: var(--muted); font-size: 13px; }
|
|
.pagination { display: flex; justify-content: center; gap: 5px; margin: 38px 0 0; }
|
|
.pagination button { width: 32px; height: 32px; border: 0; background: none; color: #555; }
|
|
.pagination button:hover { color: var(--navy); }
|
|
.pagination button.active { border-radius: 50%; background: var(--navy); color: #fff; }
|
|
|
|
.form-card, .detail-card { border-top: 2px solid #242424; }
|
|
.form-row { display: grid; grid-template-columns: 145px 1fr; min-height: 68px; border-bottom: 1px solid var(--line); }
|
|
.form-label { display: flex; align-items: center; padding: 17px 18px; background: #fafafa; font-weight: 500; }
|
|
.required { color: #d74444; }
|
|
.form-control { display: flex; align-items: center; min-width: 0; padding: 13px 17px; }
|
|
.form-control.column { align-items: stretch; flex-direction: column; gap: 8px; }
|
|
.input, .select, .textarea { width: 100%; padding: 10px 12px; border: 1px solid #d5d5d5; border-radius: 2px; background: #fff; outline: 0; }
|
|
.input, .select { height: 42px; }
|
|
.textarea { min-height: 260px; resize: vertical; line-height: 1.7; }
|
|
.input:focus, .select:focus, .textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(23, 63, 120, .08); }
|
|
.select { max-width: 230px; }
|
|
.check { display: inline-flex; align-items: center; gap: 8px; color: #555; }
|
|
.check input { width: 17px; height: 17px; accent-color: var(--navy); }
|
|
.help-text { color: #888; font-size: 12px; }
|
|
.file-input { padding: 8px 0; }
|
|
.form-notice { padding: 18px; margin-bottom: 22px; border: 1px solid #d9e3ef; background: #f6f9fd; color: #49617a; }
|
|
.form-notice strong { display: block; margin-bottom: 3px; color: #294867; }
|
|
.form-error { display: none; padding: 14px 16px; margin-bottom: 18px; border: 1px solid #f0b2b2; background: #fff7f7; color: #b42318; }
|
|
.form-footer { display: flex; justify-content: center; gap: 8px; padding-top: 26px; }
|
|
|
|
.detail-card { padding-bottom: 24px; }
|
|
.detail-head { padding: 23px 22px 20px; border-bottom: 1px solid var(--line); }
|
|
.detail-title-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
|
|
.detail-title-line h2 { margin: 0; font-size: 22px; letter-spacing: -.04em; }
|
|
.detail-meta { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 15px; color: #888; font-size: 13px; }
|
|
.detail-meta span + span::before { content: ''; display: inline-block; width: 1px; height: 11px; margin: 0 14px 0 0; background: #ddd; vertical-align: -1px; }
|
|
.detail-body { min-height: 260px; padding: 38px 22px 56px; white-space: pre-wrap; word-break: break-word; }
|
|
.attachments { padding: 16px 22px; border-top: 1px solid var(--line); background: #fafafa; }
|
|
.attachments h3 { margin: 0 0 8px; font-size: 14px; }
|
|
.attachments a { color: var(--navy); text-decoration: underline; }
|
|
.detail-actions { display: flex; justify-content: space-between; padding: 23px 22px 0; }
|
|
.comment-box { margin-top: 54px; }
|
|
.comment-box h3 { padding-bottom: 15px; margin: 0; border-bottom: 2px solid #222; font-size: 17px; }
|
|
.comment { padding: 19px 10px; border-bottom: 1px solid var(--line); }
|
|
.comment-meta { display: flex; justify-content: space-between; margin-bottom: 7px; color: #777; font-size: 13px; }
|
|
.comment-content { white-space: pre-wrap; }
|
|
.comment-empty { padding: 32px; border-bottom: 1px solid var(--line); color: #999; text-align: center; }
|
|
|
|
.site-footer { padding: 38px 32px; background: #111; color: #b9b9b9; }
|
|
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; max-width: 1280px; margin: 0 auto; gap: 40px; }
|
|
.footer-brand { color: #fff; }
|
|
.footer-copy { margin: 5px 0 0; color: #777; font-size: 12px; }
|
|
.footer-links { display: flex; gap: 23px; color: #d9d9d9; font-size: 13px; }
|
|
|
|
.toast { position: fixed; right: 26px; bottom: 26px; z-index: 30; padding: 14px 18px; border-radius: 4px; background: #1c1c1c; color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.2); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; }
|
|
.toast.show { opacity: 1; transform: translateY(0); }
|
|
.mobile-menu { display: none; }
|
|
|
|
@media (max-width: 1100px) {
|
|
.global-nav { gap: 18px; margin-right: 20px; }
|
|
.nav-item { font-size: 14px; }
|
|
.header-tools { gap: 12px; }
|
|
.brand { font-size: 15px; }
|
|
}
|
|
|
|
@media (max-width: 820px) {
|
|
:root { --header-height: 68px; }
|
|
.header-inner { padding: 0 18px; }
|
|
.global-nav, .locale { display: none; }
|
|
.global-nav.mobile-open { position: absolute; top: var(--header-height); right: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; height: auto; gap: 0; padding: 8px 18px 18px; margin: 0; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 12px 25px rgba(0, 0, 0, .08); }
|
|
.global-nav.mobile-open .nav-item { padding: 13px 0; }
|
|
.global-nav.mobile-open .mega-menu { position: static; display: none; width: auto; padding: 10px 0 10px 16px; box-shadow: none; opacity: 1; transform: none; }
|
|
.global-nav.mobile-open .package:focus-within .mega-menu, .global-nav.mobile-open .package:hover .mega-menu { display: grid; }
|
|
.header-tools { margin-left: auto; }
|
|
.mobile-menu { display: block; }
|
|
.page-hero { min-height: 185px; }
|
|
.page-hero h1 { font-size: 33px; }
|
|
.sub-nav-inner { overflow-x: auto; }
|
|
.sub-nav a { min-width: 130px; padding: 14px 10px; font-size: 13px; }
|
|
.page-shell { padding: 43px 18px 75px; }
|
|
.section-heading { display: block; margin-bottom: 22px; }
|
|
.section-heading h2 { font-size: 24px; }
|
|
.filter-panel { padding: 16px; }
|
|
.filter-row { gap: 13px; }
|
|
.filter-row + .filter-row { margin-top: 14px; padding-top: 14px; }
|
|
.filter-spacer { display: none; }
|
|
.search-form { width: 100%; min-width: 0; }
|
|
.table-actions { padding-top: 17px; }
|
|
.form-row { grid-template-columns: 90px 1fr; }
|
|
.form-label, .form-control { padding: 12px 10px; font-size: 13px; }
|
|
.detail-title-line { display: block; }
|
|
.detail-title-line .status { margin-top: 12px; }
|
|
.detail-head, .detail-body, .attachments, .detail-actions { padding-right: 14px; padding-left: 14px; }
|
|
.detail-actions { gap: 8px; }
|
|
.detail-actions .button { flex: 1; padding: 0 10px; }
|
|
.footer-inner { display: block; }
|
|
.footer-links { margin-top: 18px; }
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.brand-mark { width: 31px; height: 21px; font-size: 12px; }
|
|
.brand { gap: 5px; font-size: 13px; }
|
|
.login-link { font-size: 0; }
|
|
.login-link .user-icon { margin-right: 8px; }
|
|
.button { padding: 0 14px; }
|
|
.form-footer { justify-content: stretch; }
|
|
.form-footer .button { flex: 1; }
|
|
}
|