72 lines
1.8 KiB
HTML
72 lines
1.8 KiB
HTML
<!-- 2단 분할 비교: 좌측 GIS / 우측 BIM 같은 상세 비교 -->
|
|
<!--
|
|
📋 compare-2col-split
|
|
─────────────────
|
|
용도: 두 개념/기술의 상세 항목별 비교 (좌우 나란히, 중앙 기준 라벨)
|
|
슬롯: left_title, right_title, rows[] (각 행에 criteria, left, right)
|
|
Figma 원본: 2-3_03 GIS vs BIM 비교 (개념/분석/도면/발전 등)
|
|
-->
|
|
<div class="block-split-compare">
|
|
<div class="sc-header">
|
|
<div class="sc-h-left">{{ left_title }}</div>
|
|
<div class="sc-h-center">구분</div>
|
|
<div class="sc-h-right">{{ right_title }}</div>
|
|
</div>
|
|
{% for row in rows %}
|
|
<div class="sc-row {% if loop.index is odd %}sc-row-odd{% endif %}">
|
|
<div class="sc-left">{{ row.left }}</div>
|
|
<div class="sc-center">{{ row.criteria }}</div>
|
|
<div class="sc-right">{{ row.right }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<style>
|
|
.block-split-compare {
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
.sc-header {
|
|
display: grid;
|
|
grid-template-columns: 1fr 100px 1fr;
|
|
background: linear-gradient(135deg, #0d47a1, #1565c0);
|
|
color: #ffffff;
|
|
font-weight: 700;
|
|
font-size: 15px;
|
|
text-align: center;
|
|
}
|
|
.sc-h-left, .sc-h-right, .sc-h-center {
|
|
padding: 12px;
|
|
}
|
|
.sc-h-center {
|
|
background: rgba(0,0,0,0.15);
|
|
font-size: 13px;
|
|
}
|
|
.sc-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 100px 1fr;
|
|
border-top: 1px solid #e2e8f0;
|
|
}
|
|
.sc-row-odd {
|
|
background: #f8fafc;
|
|
}
|
|
.sc-left, .sc-right {
|
|
padding: 10px 14px;
|
|
font-size: 13px;
|
|
line-height: 1.7;
|
|
color: #334155;
|
|
white-space: pre-line;
|
|
}
|
|
.sc-center {
|
|
padding: 10px 8px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
color: #1565c0;
|
|
text-align: center;
|
|
background: #f0f7ff;
|
|
border-left: 1px solid #e2e8f0;
|
|
border-right: 1px solid #e2e8f0;
|
|
}
|
|
</style>
|