- 다크모드 지원 추가 (모든 페이지 CSS) - 글래스모피즘 카드 스타일 통일 - 하드코딩 컬러 → CSS 변수 전환 - 접근성 개선: skip nav, aria-label, sr-only, role="dialog" - 파일 구조 정리: 이미지/로고 images/ 폴더로 이동, 미사용 파일 삭제 - 서비스 패키지 8시간 → 6시간으로 변경 - OG 이미지를 전용 mingle-OG.png로 변경 - 컨택트 다크모드 위치 박스 투명 처리 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
449 lines
9.0 KiB
CSS
449 lines
9.0 KiB
CSS
/* ========================================
|
|
About 페이지 전용 스타일
|
|
======================================== */
|
|
|
|
/* 페이지 헤더 */
|
|
.page-header {
|
|
background: var(--gradient-main);
|
|
color: var(--bg-white);
|
|
padding: var(--spacing-3xl) 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: var(--font-5xl);
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: var(--font-xl);
|
|
opacity: 0.95;
|
|
}
|
|
|
|
/* 회사 정보 그리드 */
|
|
.company-info {
|
|
margin-bottom: var(--spacing-3xl);
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.info-item h3 {
|
|
color: var(--primary-color);
|
|
font-size: var(--font-sm);
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.info-item p {
|
|
font-size: var(--font-lg);
|
|
color: var(--text-primary);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.info-item.full-width {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.info-item.full-width p {
|
|
line-height: 1.8;
|
|
color: var(--text-secondary);
|
|
font-weight: 400;
|
|
}
|
|
|
|
/* About 콘텐츠 */
|
|
.about-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-2xl);
|
|
}
|
|
|
|
.about-content .card {
|
|
padding: var(--spacing-2xl);
|
|
}
|
|
|
|
.about-content h2 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-lg);
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.about-content p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.8;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.about-content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* 비전 & 미션 */
|
|
.vision-mission {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-lg);
|
|
}
|
|
|
|
.vm-item {
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-light);
|
|
border-radius: var(--border-radius);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
.vm-item h3 {
|
|
font-size: var(--font-xl);
|
|
margin-bottom: var(--spacing-md);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.vm-item p {
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* 타임라인 */
|
|
.timeline {
|
|
position: relative;
|
|
padding: var(--spacing-xl) 0;
|
|
}
|
|
|
|
.timeline::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 30px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: var(--primary-color);
|
|
}
|
|
|
|
.timeline-item {
|
|
position: relative;
|
|
padding-left: 80px;
|
|
margin-bottom: var(--spacing-2xl);
|
|
}
|
|
|
|
.timeline-item::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 22px;
|
|
top: 5px;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 50%;
|
|
background: var(--primary-color);
|
|
border: 4px solid var(--bg-white);
|
|
box-shadow: 0 0 0 2px var(--primary-color);
|
|
}
|
|
|
|
.timeline-date {
|
|
position: absolute;
|
|
left: 60px;
|
|
top: 0;
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
font-size: var(--font-sm);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.timeline-content {
|
|
background: var(--bg-light);
|
|
padding: var(--spacing-lg);
|
|
border-radius: var(--border-radius);
|
|
margin-left: var(--spacing-xl);
|
|
}
|
|
|
|
.timeline-content h4 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.timeline-content p {
|
|
color: var(--text-secondary);
|
|
margin: 0;
|
|
}
|
|
|
|
/* 팀 섹션 */
|
|
.team-section {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
.team-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.team-card {
|
|
background: var(--bg-white);
|
|
padding: var(--spacing-2xl);
|
|
border-radius: var(--border-radius);
|
|
text-align: center;
|
|
transition: var(--transition);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.team-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.team-avatar {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin: 0 auto var(--spacing-lg);
|
|
background: var(--gradient-main);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3rem;
|
|
overflow: hidden;
|
|
border: 3px solid var(--primary-color);
|
|
box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
|
|
}
|
|
|
|
.team-avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.team-card h3 {
|
|
font-size: var(--font-2xl);
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-xs);
|
|
}
|
|
|
|
.team-nickname {
|
|
color: var(--primary-color);
|
|
font-weight: 500;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.team-role {
|
|
color: var(--text-secondary);
|
|
font-weight: 600;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.team-desc {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
/* 핵심 가치 섹션 */
|
|
.values-section {
|
|
padding: var(--spacing-3xl) 0;
|
|
}
|
|
|
|
.values-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: var(--spacing-xl);
|
|
margin-top: var(--spacing-2xl);
|
|
}
|
|
|
|
.value-item {
|
|
text-align: center;
|
|
padding: var(--spacing-xl);
|
|
background: var(--bg-white);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.value-item:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.value-icon {
|
|
font-size: 3rem;
|
|
margin-bottom: var(--spacing-md);
|
|
}
|
|
|
|
.value-item h3 {
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--spacing-sm);
|
|
font-size: var(--font-xl);
|
|
}
|
|
|
|
.value-item p {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ========================================
|
|
다크모드
|
|
======================================== */
|
|
[data-theme="dark"] .page-header {
|
|
background: linear-gradient(135deg, #cc6d00, #b35500);
|
|
}
|
|
|
|
[data-theme="dark"] .info-grid {
|
|
background: var(--dark-surface);
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
[data-theme="dark"] .info-item h3 {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
[data-theme="dark"] .info-item p {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
|
|
[data-theme="dark"] .info-item.full-width p {
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
[data-theme="dark"] .about-content .card {
|
|
background: var(--dark-surface);
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
[data-theme="dark"] .about-content h2 {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
}
|
|
|
|
[data-theme="dark"] .about-content p {
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
[data-theme="dark"] .vm-item {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
border-left: 4px solid var(--primary-color);
|
|
}
|
|
|
|
[data-theme="dark"] .vm-item h3 {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
}
|
|
|
|
[data-theme="dark"] .vm-item p {
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline::before {
|
|
background: rgba(255, 136, 0, 0.4);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-item::before {
|
|
border-color: var(--dark-bg);
|
|
box-shadow: 0 0 0 2px var(--primary-color), 0 0 12px var(--glow-orange);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-content {
|
|
background: var(--dark-surface);
|
|
border: 1px solid var(--glass-border);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-content h4 {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
}
|
|
|
|
[data-theme="dark"] .timeline-content p {
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
[data-theme="dark"] .team-section {
|
|
background: var(--dark-bg);
|
|
}
|
|
|
|
[data-theme="dark"] .team-card {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
[data-theme="dark"] .team-card:hover {
|
|
border-color: rgba(255, 136, 0, 0.3);
|
|
box-shadow: 0 8px 32px rgba(255, 136, 0, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .team-card h3 {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
}
|
|
|
|
[data-theme="dark"] .team-role {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
[data-theme="dark"] .team-desc {
|
|
color: rgba(255, 255, 255, 0.55);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item:hover {
|
|
border-color: rgba(255, 136, 0, 0.3);
|
|
box-shadow: 0 8px 32px rgba(255, 136, 0, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item h3 {
|
|
color: rgba(255, 255, 255, 0.95);
|
|
}
|
|
|
|
[data-theme="dark"] .value-item p {
|
|
color: rgba(255, 255, 255, 0.65);
|
|
}
|
|
|
|
/* 반응형 디자인 */
|
|
@media (max-width: 768px) {
|
|
.page-header h1 {
|
|
font-size: var(--font-3xl);
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: var(--font-base);
|
|
}
|
|
|
|
.timeline::before {
|
|
left: 20px;
|
|
}
|
|
|
|
.timeline-item {
|
|
padding-left: 60px;
|
|
}
|
|
|
|
.timeline-item::before {
|
|
left: 12px;
|
|
}
|
|
|
|
.timeline-date {
|
|
position: relative;
|
|
left: 0;
|
|
margin-bottom: var(--spacing-sm);
|
|
}
|
|
|
|
.timeline-content {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.team-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.values-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |