41 lines
1.2 KiB
PHP
Executable File
41 lines
1.2 KiB
PHP
Executable File
<div class="container my-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-12 col-md-10 col-lg-8">
|
|
|
|
<div class="banner d-flex align-items-center justify-content-center">
|
|
<span class="banner-text">หัวข้อของคุณ</span>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.banner {
|
|
width: 100%;
|
|
aspect-ratio: 900 / 170;
|
|
/* รักษาสัดส่วนรูป */
|
|
background-image: url("/img/title/topic.png");
|
|
/* เปลี่ยนเป็น path รูปจริงในโปรเจกต์คุณ */
|
|
background-size: contain;
|
|
/* ให้รูปพอดีกล่อง */
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
display: flex;
|
|
}
|
|
|
|
.banner-text {
|
|
color: #FFD966;
|
|
font-weight: 700;
|
|
font-size: 30px !important;
|
|
font-size: clamp(30px, 3vw, 42px) !important;
|
|
/* ตัวอักษรยืดตามจอ */
|
|
text-shadow:
|
|
0 0 4px rgba(255, 215, 102, 0.8),
|
|
0 0 10px rgba(212, 175, 55, 0.6),
|
|
0 0 18px rgba(212, 175, 55, 0.4);
|
|
/* glow ทอง */
|
|
letter-spacing: 1px;
|
|
user-select: none;
|
|
}
|
|
</style> |