<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>업비트 라인 차트</title>
<style>
:root {
--bg-primary: #0a0e27;
--bg-secondary: #151932;
--bg-tertiary: #1e2742;
--bg-card: #1a1f3a;
--bg-hover: #252b4a;
--bg-border: #2a3458;
--text-primary: #e2e8f0;
--text-secondary: #94a3b8;
--text-muted: #64748b;
--accent-primary: #3b82f6;
--accent-secondary: #8b5cf6;
--success: #10b981;
--danger: #ef4444;
--warning: #f59e0b;
--border-color: #2a3458;
--neon-cyan: #00c8ff;
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, var(--bg-primary) 0%, #0f172a 100%);
color: var(--text-primary);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', 'Roboto', sans-serif;
padding: 24px;
min-height: 100vh;
line-height: 1.6;
}
.container {
width: 100%;
max-width: 100%;
margin: 0 auto;
padding: 0 48px;
}
h1 {
font-size: 32px;
font-weight: 700;
margin-bottom: 8px;
color: var(--text-primary);
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
gap: 12px;
}
.subtitle {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 32px;
}
.card-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 24px;
}
.card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 24px;
transition: all 0.3s ease;
cursor: pointer;
text-decoration: none;
color: var(--text-primary);
display: block;
position: relative;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.card:hover {
border-color: var(--neon-cyan);
box-shadow: 0 12px 24px rgba(0, 200, 255, 0.15), 0 0 20px rgba(0, 200, 255, 0.1);
transform: translateY(-2px);
}
.card:hover::before {
opacity: 1;
}
.card-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 8px;
color: var(--text-primary);
}
.card-description {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.5;
}
.card-badge {
display: inline-block;
margin-top: 12px;
padding: 4px 12px;
background: var(--bg-tertiary);
border: 1px solid var(--border-color);
border-radius: 12px;
font-size: 12px;
color: var(--text-muted);
}
/* 스크롤바 스타일링 */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-secondary);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: var(--bg-tertiary);
border-radius: 4px;
border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
background: var(--bg-hover);
}
/* 반응형 디자인 */
@media (max-width: 768px) {
body {
padding: 16px 0;
}
.container {
padding: 0 24px;
}
h1 {
font-size: 24px;
}
.card-grid {
grid-template-columns: 1fr;
gap: 16px;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.container {
padding: 0 32px;
}
.card-grid {
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
}
@media (min-width: 1025px) and (max-width: 1400px) {
.container {
padding: 0 40px;
}
.card-grid {
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
}
@media (min-width: 1401px) {
.container {
padding: 0 56px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>📈 업비트 라인 차트</h1>
<p class="subtitle">실시간 가격 및 거래량 라인 차트 모니터링</p>
<div class="card-grid">
<a href="price_line_full.php" class="card">
<div class="card-title">가격 라인 차트 - FULL</div>
<div class="card-description">
실시간 가격 변동을 라인 차트로 시각화합니다. 기본 기능으로 구성된 심플한 버전입니다.
</div>
<span class="card-badge">Price Line Chart - FULL</span>
</a>
<a href="volume_line_full.php" class="card">
<div class="card-title">거래량 라인 차트 - FULL</div>
<div class="card-description">
실시간 가격 변동을 라인 차트로 시각화합니다. 다크 UI가 적용된 버전입니다.
</div>
<span class="card-badge">volume Line Chart - FULL</span>
</a>
<a href="price_line_ui.php" class="card">
<div class="card-title">가격 라인 차트 - UI</div>
<div class="card-description">
실시간 가격 변동을 라인 차트로 시각화합니다. 기본 기능으로 구성된 심플한 버전입니다.
</div>
<span class="card-badge">Price Line Chart - UI</span>
</a>
<a href="volume_line_ui.php" class="card">
<div class="card-title">거래량 라인 차트 - UI</div>
<div class="card-description">
실시간 가격 변동을 라인 차트로 시각화합니다. 다크 UI가 적용된 버전입니다.
</div>
<span class="card-badge">volume Line Chart - UI</span>
</a>
<a href="price_line_simple.php" class="card">
<div class="card-title">가격 라인 차트 - SIMPLE</div>
<div class="card-description">
실시간 거래량 변화를 라인 차트로 표시합니다. 기본 기능으로 구성된 베이직 버전입니다.
</div>
<span class="card-badge">price Line Chart - Simple</span>
</a>
<a href="volume_line_simple.php" class="card">
<div class="card-title">거래량 라인 차트 - SIMPLE</div>
<div class="card-description">
실시간 거래량 변화를 라인 차트로 표시합니다. 다크 UI가 적용된 버전입니다.
</div>
<span class="card-badge">Volume Line Chart - Simple</span>
</a>
<a href="price_line_basics.php" class="card">
<div class="card-title">가격 라인 차트 - BASIC</div>
<div class="card-description">
실시간 거래량 변화를 라인 차트로 표시합니다. 기본 기능으로 구성된 베이직 버전입니다.
</div>
<span class="card-badge">price Line Chart - Basic</span>
</a>
<a href="volume_line_basics.php" class="card">
<div class="card-title">거래량 라인 차트 - BASIC</div>
<div class="card-description">
실시간 거래량 변화를 라인 차트로 표시합니다. 다크 UI가 적용된 버전입니다.
</div>
<span class="card-badge">Volume Line Chart - Basic</span>
</a>
</div>
</div>
</body>
</html>