first commit 2
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
||||
|
||||
add_stylesheet('<link rel="stylesheet" href="'.G5_THEME_URL.'/shop/rb.layout/Trend04/style.css?ver='.G5_SERVER_TIME.'">', 0);
|
||||
?>
|
||||
|
||||
<!-- 1. 메인 비주얼 섹션 -->
|
||||
<div class="main-visual-section-trend04">
|
||||
<div class="visual-content container">
|
||||
<h1 class="visual-title">Timeless Elegance</h1>
|
||||
<p class="visual-subtitle">시간이 흘러도 변하지 않는 가치, 당신만의 품격을 완성하세요.</p>
|
||||
<a href="<?php echo G5_SHOP_URL; ?>/list.php?ca_id=10" class="visual-button">Discover More</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 2. 메인 콘텐츠 영역 -->
|
||||
<div class="main-content-wrapper container">
|
||||
<main class="layout-main-content">
|
||||
<!-- 시그니처 컬렉션 -->
|
||||
<section class="product-section">
|
||||
<div class="section-header">
|
||||
<h2 class="section-title">Signature Collection</h2>
|
||||
<div class="title-divider"></div>
|
||||
</div>
|
||||
<div class="flex_box" data-layout="main-content-signature">
|
||||
<?php if($is_admin) { echo "<div class='guide-box'>관리자 안내: [main-content-signature] 영역에 '추천 상품' 모듈을 추가하세요.</div>"; } ?>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- 프리미엄 셀렉션 -->
|
||||
<section class="product-section">
|
||||
<div class="section-header">
|
||||
<h2 class="section-title">Premium Selection</h2>
|
||||
<div class="title-divider"></div>
|
||||
</div>
|
||||
<div class="flex_box" data-layout="main-content-premium">
|
||||
<?php if($is_admin) { echo "<div class='guide-box'>관리자 안내: [main-content-premium] 영역에 '인기 상품' 모듈을 추가하세요.</div>"; } ?>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
@@ -0,0 +1,128 @@
|
||||
/* Trend04 Layout Style - Luxury & Elegant */
|
||||
|
||||
/* 💡 [추가] 고정 헤더로 인한 겹침 방지 */
|
||||
body {
|
||||
padding-top: 80px;
|
||||
background-color: #0f0f0f; /* 아주 어두운 배경 */
|
||||
color: #e0e0e0;
|
||||
/* font-family: 'Playfair Display', serif; */ /* 💡 [수정] 관리자 설정 폰트 사용을 위해 주석 처리 */
|
||||
}
|
||||
|
||||
/* 1. 메인 비주얼 섹션 */
|
||||
.main-visual-section-trend04 {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 700px;
|
||||
background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?q=80&w=2000&auto=format&fit=crop');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.main-visual-section-trend04::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.6); /* 어두운 오버레이 */
|
||||
}
|
||||
|
||||
.visual-content {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: #fff;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.visual-title {
|
||||
font-size: 4rem;
|
||||
font-weight: 400;
|
||||
letter-spacing: 2px;
|
||||
margin: 0 0 20px;
|
||||
color: #d4af37; /* 골드 색상 */
|
||||
}
|
||||
|
||||
.visual-subtitle {
|
||||
font-size: 1.3rem;
|
||||
font-weight: 300;
|
||||
margin: 0 0 50px;
|
||||
opacity: 0.8;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.visual-button {
|
||||
display: inline-block;
|
||||
padding: 15px 50px;
|
||||
background-color: transparent;
|
||||
color: #d4af37;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
border: 1px solid #d4af37;
|
||||
transition: all 0.4s ease;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.visual-button:hover {
|
||||
background-color: #d4af37;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/* 2. 메인 콘텐츠 영역 */
|
||||
.main-content-wrapper {
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
.product-section {
|
||||
margin-bottom: 120px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
text-align: center;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
margin: 0 0 20px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.title-divider {
|
||||
width: 80px;
|
||||
height: 1px;
|
||||
background-color: #d4af37;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.guide-box {
|
||||
padding: 50px;
|
||||
background-color: #1a1a1a;
|
||||
border: 1px solid #333;
|
||||
color: #888;
|
||||
text-align: center;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/* 모바일 반응형 */
|
||||
@media (max-width: 768px) {
|
||||
.main-visual-section-trend04 {
|
||||
height: 500px;
|
||||
}
|
||||
.visual-title {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
.visual-subtitle {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user