Skip to content

Commit 9d26e05

Browse files
committed
feat: 마지막 슬라이드에 블로그 QR 코드 추가
- 발표 내용 상세 보기 QR 코드 이미지 추가 - 연락처 정보 아래에 배치 - 반응형 크기 조정 (200px → 작은 화면에서는 비율 유지) - 이미지 비율 보존을 위한 object-fit 설정
1 parent 52e0252 commit 9d26e05

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

public/contents/24.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,30 @@
7979
background-color: var(--color-border);
8080
}
8181

82+
.qr-section {
83+
display: flex;
84+
flex-direction: column;
85+
align-items: center;
86+
gap: 20px;
87+
margin-top: 48px;
88+
}
89+
90+
.qr-label {
91+
font-size: 1rem;
92+
font-weight: 500;
93+
color: var(--color-text-secondary);
94+
}
95+
96+
.qr-code {
97+
width: 200px;
98+
height: 200px;
99+
padding: 12px;
100+
background-color: white;
101+
border-radius: 12px;
102+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
103+
object-fit: contain;
104+
}
105+
82106
.abstract-elements {
83107
position: absolute;
84108
width: 100%;
@@ -129,6 +153,19 @@
129153
.contact-link {
130154
font-size: 1.15rem;
131155
}
156+
157+
.qr-section {
158+
margin-top: 32px;
159+
}
160+
161+
.qr-label {
162+
font-size: 0.9rem;
163+
}
164+
165+
.qr-code {
166+
padding: 10px;
167+
object-fit: contain;
168+
}
132169
}
133170
</style>
134171
</head>
@@ -154,6 +191,10 @@ <h1 class="qa-heading">감사합니다</h1>
154191
<span class="link-url">@chan9yu</span>
155192
</a>
156193
</div>
194+
<div class="qr-section">
195+
<p class="qr-label">📝 발표 내용 상세 보기</p>
196+
<img src="../images/blog-article-qrcode.png" alt="블로그 아티클 QR 코드" class="qr-code" />
197+
</div>
157198
</div>
158199

159200
<div class="page-number">24</div>
62.9 KB
Loading

0 commit comments

Comments
 (0)