v0.5.1: Ohli24 레이아웃 표준화 및 Anilife 폴백 체인 개선

This commit is contained in:
2026-01-04 01:00:17 +09:00
parent 97310ac900
commit 914277c2bc
14 changed files with 593 additions and 294 deletions

View File

@@ -21,6 +21,21 @@ body {
color: #f1f5f9;
background-image: linear-gradient(135deg, #1f2937, #111827, #0f172a) !important;
background-attachment: fixed !important;
font-family: 'NamumSquareNeo', system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif;
}
/* Glass Card Container */
.glass-card {
background: rgba(30, 41, 59, 0.7) !important;
backdrop-filter: blur(12px) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
border-radius: 16px !important;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.glass-card:hover {
border-color: rgba(96, 165, 250, 0.5) !important;
}
/* General Layout Fixes */
@@ -30,6 +45,59 @@ body {
max-width: 100%;
}
.ohli24-common-wrapper {
max-width: 1400px;
margin: 0 auto;
width: 100%;
transition: opacity 0.5s ease-out;
}
.ohli24-common-wrapper.content-cloak {
opacity: 0;
}
.ohli24-common-wrapper.visible {
opacity: 1;
}
/* Common Header Styles */
.ohli24-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
flex-wrap: wrap;
gap: 1rem;
}
.ohli24-header-left {
display: flex;
align-items: center;
}
.ohli24-icon-box {
width: 48px;
height: 48px;
background: rgba(59, 130, 246, 0.1);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid rgba(59, 130, 246, 0.2);
margin-right: 1rem;
}
.ohli24-header-title {
margin-bottom: 0;
color: white;
font-weight: 700;
}
.ohli24-header-subtitle {
font-size: 0.875rem;
color: #94a3b8;
}
/* Nav Pills Customization */
ul.nav.nav-pills.bg-light {
background-color: rgba(30, 41, 59, 0.6) !important;