관리자 및 사이트 UI 토큰 정리

This commit is contained in:
2026-06-29 23:13:47 +09:00
parent f2ab78dea2
commit ef9fd523c6
4 changed files with 138 additions and 189 deletions
-178
View File
@@ -91,184 +91,6 @@ a:hover {
text-decoration: none;
}
/* ===== 버튼 ===== */
.btn {
border-radius: var(--radius-md);
font-weight: 600;
transition: all var(--transition-normal);
cursor: pointer;
border: none;
padding: 0.75rem 2rem;
font-size: 1rem;
letter-spacing: 0.3px;
display: inline-block;
text-align: center;
text-decoration: none;
}
.btn:active {
transform: scale(0.98);
}
.btn-primary {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
color: white;
box-shadow: var(--shadow-md);
}
.btn-primary:hover {
background: linear-gradient(135deg, var(--color-primary-dark) 0%, #8B5E3C 100%);
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}
.btn-warning {
background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
color: white;
box-shadow: var(--shadow-md);
}
.btn-warning:hover {
background: linear-gradient(135deg, var(--color-secondary-dark) 0%, #0D1E1A 100%);
box-shadow: var(--shadow-lg);
transform: translateY(-2px);
}
.btn-outline-primary {
color: var(--color-primary);
border: 2px solid var(--color-primary);
background: transparent;
}
.btn-outline-primary:hover {
background-color: var(--color-primary);
color: white;
}
.btn-lg {
padding: 1rem 2.5rem;
font-size: 1.1rem;
}
.btn-sm {
padding: 0.5rem 1.25rem;
font-size: 0.95rem;
}
/* ===== 카드 ===== */
.card {
border: 1px solid var(--color-border);
border-radius: var(--radius-xl);
transition: all var(--transition-normal);
box-shadow: var(--shadow-sm);
background: white;
overflow: hidden;
}
.card:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
border-color: var(--color-primary);
}
.card-body {
padding: var(--spacing-xl);
}
.card-title {
font-weight: 700;
color: var(--color-text);
margin-bottom: var(--spacing-md);
font-size: 1.25rem;
}
.card-text {
color: var(--color-text-light);
line-height: 1.8;
}
/* ===== 히어로 섹션 ===== */
.hero-section {
padding: clamp(3rem, 20vh, 6rem) 0;
background: linear-gradient(135deg, var(--color-secondary) 0%, #1F3A30 100%);
color: white;
position: relative;
overflow: hidden;
border-bottom: 4px solid var(--color-primary);
}
.hero-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: rgba(200, 157, 110, 0.1);
border-radius: 50%;
}
.hero-section::after {
content: '';
position: absolute;
bottom: -30%;
left: -10%;
width: 500px;
height: 500px;
background: rgba(232, 228, 216, 0.05);
border-radius: 50%;
}
.hero-section h1 {
font-size: clamp(2rem, 8vw, 3.5rem);
font-weight: 800;
margin-bottom: var(--spacing-lg);
position: relative;
z-index: 1;
color: white;
}
.hero-section p {
font-size: 1.2rem;
margin-bottom: var(--spacing-xl);
position: relative;
z-index: 1;
color: rgba(255, 255, 255, 0.95);
line-height: 1.8;
}
/* ===== 섹션 ===== */
.bg-light {
background-color: var(--color-accent) !important;
}
.bg-primary {
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.section-title {
font-size: clamp(1.75rem, 5vw, 2.75rem);
font-weight: 800;
color: var(--color-text);
margin-bottom: var(--spacing-xl);
text-align: center;
position: relative;
display: inline-block;
left: 50%;
transform: translateX(-50%);
width: 100%;
}
.section-title::after {
content: '';
display: block;
width: 60px;
height: 4px;
background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
margin: var(--spacing-md) auto 0;
border-radius: 2px;
}
/* ===== 휴스 스트립 (신뢰도) ===== */
.trust-strip {
background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-accent) 100%);