revert: rollback Fluent UI and Blazor homepage to last successful state (3be3794)
This commit is contained in:
+178
-318
@@ -48,7 +48,6 @@
|
||||
html {
|
||||
font-size: 16px;
|
||||
scroll-behavior: smooth;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
@@ -57,8 +56,6 @@ body {
|
||||
line-height: 1.8;
|
||||
font-size: clamp(0.9rem, 2.5vw, 1rem);
|
||||
letter-spacing: 0.3px;
|
||||
min-height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* ===== 타이포그래피 ===== */
|
||||
@@ -94,6 +91,184 @@ 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%);
|
||||
@@ -571,318 +746,3 @@ img {
|
||||
.faq-answer ul li {
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
body.site-blazor {
|
||||
margin: 0;
|
||||
font-family: 'Noto Sans KR', sans-serif;
|
||||
background: linear-gradient(180deg, #faf7f2 0%, #f4efe6 100%);
|
||||
color: #3d2817;
|
||||
}
|
||||
|
||||
.site-shell {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.site-main {
|
||||
display: block;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.site-topbar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 1rem 1.5rem;
|
||||
border-bottom: 1px solid rgba(0,0,0,0.08);
|
||||
background: rgba(255,255,255,0.72);
|
||||
backdrop-filter: blur(12px);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
font-weight: 800;
|
||||
color: #2e5c4e;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.site-nav {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.site-nav a {
|
||||
color: #3d2817;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.site-hero {
|
||||
padding: 5rem 1.5rem;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.site-hero-copy h1 {
|
||||
font-size: clamp(2.2rem, 7vw, 4rem);
|
||||
line-height: 1.1;
|
||||
margin: 0.5rem 0 1rem;
|
||||
}
|
||||
|
||||
.site-kicker {
|
||||
color: #a67c52;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.site-actions {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.site-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 48px;
|
||||
padding: 0.9rem 1.4rem;
|
||||
border-radius: 12px;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.site-button.primary {
|
||||
background: linear-gradient(135deg, #c89d6e 0%, #a67c52 100%);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.site-button.secondary {
|
||||
border: 1px solid #c89d6e;
|
||||
color: #a67c52;
|
||||
background: rgba(255,255,255,0.7);
|
||||
}
|
||||
|
||||
.site-content {
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 3rem 1.5rem;
|
||||
}
|
||||
|
||||
.site-post-grid,
|
||||
.taxbaik-skeleton-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.site-post-card,
|
||||
.taxbaik-skeleton-item {
|
||||
background: rgba(255,255,255,0.82);
|
||||
border: 1px solid rgba(0,0,0,0.08);
|
||||
border-radius: 16px;
|
||||
padding: 1.25rem;
|
||||
box-shadow: 0 12px 30px rgba(61,40,23,0.08);
|
||||
}
|
||||
|
||||
.taxbaik-skeleton-line {
|
||||
height: 14px;
|
||||
margin-bottom: 0.75rem;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, rgba(201,173,140,0.18) 25%, rgba(201,173,140,0.35) 37%, rgba(201,173,140,0.18) 63%);
|
||||
background-size: 400% 100%;
|
||||
animation: taxbaikShimmer 1.2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.taxbaik-skeleton-title { height: 24px; width: 70%; }
|
||||
.taxbaik-skeleton-short { width: 45%; }
|
||||
|
||||
@keyframes taxbaikShimmer {
|
||||
0% { background-position: 100% 0; }
|
||||
100% { background-position: -100% 0; }
|
||||
}
|
||||
|
||||
/* ===== Admin Polish ===== */
|
||||
.admin-shell {
|
||||
min-height: 100vh;
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(200, 157, 110, 0.10), transparent 34%),
|
||||
radial-gradient(circle at top right, rgba(46, 92, 78, 0.08), transparent 28%),
|
||||
linear-gradient(180deg, #fbf8f3 0%, #f4efe6 100%);
|
||||
}
|
||||
|
||||
.admin-topbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 1rem;
|
||||
padding: 1rem 1.25rem;
|
||||
border-bottom: 1px solid rgba(61, 40, 23, 0.08);
|
||||
backdrop-filter: blur(16px);
|
||||
background: rgba(255,255,255,0.76);
|
||||
}
|
||||
|
||||
.admin-content-inner {
|
||||
max-width: 1440px;
|
||||
margin: 0 auto;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.admin-page-hero h1,
|
||||
.admin-page-hero .admin-page-title {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.admin-page-subtitle,
|
||||
.muted {
|
||||
color: var(--color-text-light);
|
||||
}
|
||||
|
||||
.admin-icon-button {
|
||||
border: 1px solid rgba(61, 40, 23, 0.14);
|
||||
background: rgba(255,255,255,0.8);
|
||||
border-radius: 10px;
|
||||
min-width: 40px;
|
||||
min-height: 40px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.admin-icon-button.danger {
|
||||
color: var(--color-danger);
|
||||
}
|
||||
|
||||
.admin-menu-button {
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.admin-drawer {
|
||||
width: 280px;
|
||||
padding: 1rem;
|
||||
border-right: 1px solid rgba(61, 40, 23, 0.08);
|
||||
background: rgba(255,255,255,0.76);
|
||||
backdrop-filter: blur(16px);
|
||||
}
|
||||
|
||||
.admin-drawer.open {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.admin-content {
|
||||
min-height: calc(100vh - 72px);
|
||||
}
|
||||
|
||||
.admin-topbar-title h1 {
|
||||
margin: 0;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.admin-topbar-kicker,
|
||||
.admin-brand-subtitle,
|
||||
.admin-footer-meta {
|
||||
color: var(--color-text-light);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.admin-nav {
|
||||
display: grid;
|
||||
gap: 0.35rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.admin-nav-link,
|
||||
.admin-topbar-action {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding: 0.75rem 0.9rem;
|
||||
border-radius: 12px;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.admin-nav-link:hover,
|
||||
.admin-topbar-action:hover {
|
||||
background: rgba(200, 157, 110, 0.10);
|
||||
color: var(--color-secondary);
|
||||
}
|
||||
|
||||
.admin-nav details {
|
||||
padding: 0.25rem 0;
|
||||
}
|
||||
|
||||
.admin-nav summary {
|
||||
list-style: none;
|
||||
cursor: pointer;
|
||||
font-weight: 700;
|
||||
padding: 0.75rem 0.9rem;
|
||||
}
|
||||
|
||||
.admin-nav summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.admin-drawer-footer {
|
||||
margin-top: 1.5rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid rgba(61, 40, 23, 0.08);
|
||||
}
|
||||
|
||||
.admin-kv-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
gap: 0.9rem;
|
||||
}
|
||||
|
||||
.admin-kv-grid > div {
|
||||
padding: 0.75rem 0.85rem;
|
||||
border-radius: 14px;
|
||||
background: rgba(255,255,255,0.76);
|
||||
border: 1px solid rgba(61, 40, 23, 0.08);
|
||||
}
|
||||
|
||||
.admin-kv-grid span {
|
||||
display: block;
|
||||
font-size: 0.78rem;
|
||||
color: var(--color-text-light);
|
||||
margin-bottom: 0.25rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.admin-pagination {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.75rem;
|
||||
margin-top: 1rem;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.admin-divider {
|
||||
height: 1px;
|
||||
background: rgba(61, 40, 23, 0.08);
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
@media (max-width: 959px) {
|
||||
.admin-shell {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.admin-drawer {
|
||||
width: 100%;
|
||||
border-right: none;
|
||||
border-bottom: 1px solid rgba(61, 40, 23, 0.08);
|
||||
}
|
||||
|
||||
.admin-content-inner {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.admin-topbar {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user