자료 신청해주셔서 감사합니다. 🙂
젠스파크 사용법이 더 궁금하시다면 11월 25일 퇴근후AI 밋업에서 배워보시거나, 전자책으로 학습해보세요!
🎁 전자책 프로모션 코드: linkedinfriends
아래 CSS 코드를 <style> 태그 맨 아래에 자동으로 포함해주세요:
Copy/* ======================
이미지 Placeholder 스타일
====================== */
/* 기본 placeholder 스타일 (이미지 없을 때) */
.image-placeholder {
width: 100%;
height: 200px;
border: 2px dashed #ccc;
background: #f9f9f9;
display: flex;
align-items: center;
justify-content: center;
color: #999;
font-size: 14px;
border-radius: 8px;
margin: 20px 0;
page-break-inside: avoid;
}
/* 이미지가 삽입된 후 스타일 */
.image-placeholder.has-image {
border: 0;
background: none;
padding: 0;
height: auto; /* 높이 제한 제거 */
page-break-inside: avoid;
}
/* 이미지 자체 스타일: 가로 100%, 세로 비율 유지 */
.image-placeholder.has-image img {
display: block;
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* 작은 이미지는 확대하지 않음 */
.image-placeholder.has-image img[width] {
max-width: 100%;
width: auto;
}
/* ======================
링크 강조 스타일
====================== */
.highlight-link {
display: inline-block;
background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
padding: 10px 18px;
border-radius: 6px;
text-decoration: none;
color: #1a1a1a;
font-weight: 600;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
border-bottom: 2px solid rgba(0,0,0,0.1);
}
.highlight-link:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.highlight-link::before {
content: "🔗 ";
margin-right: 6px;
}
/* ======================
정보 박스 스타일
====================== */
.info-box {
padding: 16px 20px;
border-radius: 8px;
margin: 20px 0;
border-left: 4px solid;
page-break-inside: avoid;
}
.info-box.tip {
background: #e7f3ff;
border-color: #2196F3;
}
.info-box.note {
background: #fff4e5;
border-color: #ff9800;
}
.info-box.warning {
background: #ffebee;
border-color: #f44336;
}
.info-box strong {
display: block;
margin-bottom: 8px;
font-size: 16px;
}
/* ======================
버전 표기 스타일
====================== */
.version-badge {
display: inline-block;
background: #667eea;
color: white;
padding: 6px 16px;
border-radius: 20px;
font-weight: 600;
font-size: 14px;
margin: 10px 0;
}