공용 템플릿으로 바꾸면서 페이지 기본 폭(--page-max-width)을 따라가 넓어졌음 — 템플릿은 그대로 쓰되 이 화면의 안쪽 폭만 720px 로 좁힘. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
50 lines
1.6 KiB
CSS
50 lines
1.6 KiB
CSS
/* =============================================================================
|
|
* B02_ProjRegister_UI_Style.css
|
|
* 프로젝트 등록 페이지 전용 스타일 (theme.css 변수만 사용)
|
|
* ========================================================================== */
|
|
|
|
/* 제목·여백·버튼 줄은 공용 템플릿(ui_template_general_layout)을 쓴다 — 여기서는
|
|
이 화면에만 필요한 것(폭·2열 그리드·셀렉트 화살표·버튼 오른쪽 정렬)만 둔다. */
|
|
|
|
/* 입력 칸 두 줄짜리 폼이라 종전처럼 720px 로 좁혀 가운데 둔다 (2026-09-06 사용자 지시 —
|
|
템플릿을 쓰되 폭은 바꾸지 않는다). */
|
|
.b02-proj .ui-general-layout__inner {
|
|
max-width: 720px;
|
|
}
|
|
|
|
/* 2열 필드 그리드 (좁은 화면에서는 1열) */
|
|
.b02-proj__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: var(--spacing-16);
|
|
}
|
|
|
|
/* select는 공통 .ui-input 상속 + 드롭다운 화살표 여백 확보 */
|
|
.b02-proj__select {
|
|
appearance: none;
|
|
cursor: pointer;
|
|
background-image:
|
|
linear-gradient(45deg, transparent 50%, var(--color-slate) 50%),
|
|
linear-gradient(135deg, var(--color-slate) 50%, transparent 50%);
|
|
background-position:
|
|
calc(100% - 18px) 50%,
|
|
calc(100% - 13px) 50%;
|
|
background-size:
|
|
5px 5px,
|
|
5px 5px;
|
|
background-repeat: no-repeat;
|
|
padding-right: var(--spacing-32);
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.b02-proj__grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* 취소·등록 버튼 줄 — 나머지는 공용 `.ui-general-block__actions` 가 맡는다. */
|
|
.b02-proj__actions {
|
|
justify-content: flex-end;
|
|
margin-top: var(--spacing-16);
|
|
}
|