Skip to content

Commit 1087960

Browse files
feat: add logo meaning explanation card in the about section, restructure layout to 3-columns on desktop
1 parent b8adc65 commit 1087960

2 files changed

Lines changed: 39 additions & 7 deletions

File tree

index.html

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,18 +109,46 @@ <h3 style="font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--text-primary);
109109
</div>
110110
</div>
111111

112-
<div class="about-features reveal" style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;">
112+
<div class="about-features reveal" style="display: flex; flex-direction: column; gap: 1.5rem;">
113113
<div class="feature-box" style="margin-bottom: 0;">
114114
<div class="feature-icon" style="background: rgba(98, 196, 49, 0.1); color: var(--primary);"><i class="fa-solid fa-eye"></i></div>
115115
<h4>Tầm Nhìn</h4>
116116
<p style="font-size: 0.88rem; line-height: 1.5;">Khao khát tổng hợp và chia sẻ kiến thức công nghệ, lập trình, bảo mật và pre-IT hữu ích, giúp thế hệ trẻ vững bước theo đuổi đam mê.</p>
117117
</div>
118118
<div class="feature-box" style="margin-bottom: 0;">
119-
<div class="feature-icon" style="background: rgba(127, 29, 219, 0.1); color: #c084fc;"><i class="fa-solid fa-bullseye"></i></div>
119+
<div class="feature-icon" style="background: rgba(32, 201, 151, 0.1); color: var(--secondary);"><i class="fa-solid fa-bullseye"></i></div>
120120
<h4>Sứ Mệnh</h4>
121121
<p style="font-size: 0.88rem; line-height: 1.5;">Xây dựng nền tảng lập trình tốt nhất cho giới trẻ qua mô hình học tập kết hợp (blended learning) và hệ thống kiến thức chính xác, hiệu quả.</p>
122122
</div>
123123
</div>
124+
125+
<!-- Column 3: Ý Nghĩa Logo -->
126+
<div class="logo-explanation-card reveal glass-card" style="border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; transition: var(--transition-smooth); background: rgba(13, 16, 26, 0.4); justify-content: center;">
127+
<div style="display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 1rem;">
128+
<div class="logo-icon-wrapper" style="width: 50px; height: 50px; background: rgba(98, 196, 49, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(98, 196, 49, 0.2);">
129+
<img src="./icon.png" alt="CRF Logo" style="width: 32px; height: 32px; object-fit: contain;">
130+
</div>
131+
<div>
132+
<h4 style="font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin: 0;">Ý Nghĩa Logo CRF</h4>
133+
<span style="font-size: 0.7rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;">Brand Identity</span>
134+
</div>
135+
</div>
136+
137+
<div style="font-size: 0.85rem; line-height: 1.55; color: var(--text-secondary); display: flex; flex-direction: column; gap: 0.75rem;">
138+
<p style="margin: 0;">
139+
<strong style="color: var(--primary);"><i class="fa-solid fa-seedling"></i> Xanh Lá Chủ Đạo:</strong> Tượng trưng cho tính năng, sự tươi mới, đổi mới và sáng tạo không ngừng.
140+
</p>
141+
<p style="margin: 0;">
142+
<strong style="color: var(--text-primary);"><i class="fa-solid fa-font"></i> Chữ CRF Network:</strong> Sử dụng tone đen nổi bật thể hiện tính chuyên nghiệp, vững chắc và tầm quan trọng của thương hiệu.
143+
</p>
144+
<p style="margin: 0;">
145+
<strong style="color: var(--secondary);"><i class="fa-solid fa-code"></i> Biểu Tượng Phần Mềm:</strong> Đặt phía bên trái biểu thị mối liên hệ mật thiết với công nghệ và tư duy lập trình sáng tạo.
146+
</p>
147+
<p style="margin: 0;">
148+
<strong style="color: var(--primary);"><i class="fa-solid fa-network-wired"></i> Mạch Điện & Mạng Lưới:</strong> Hai hình mạch đối xứng và mạng lưới ở trung tâm tượng trưng cho tính kỹ thuật, kết nối cộng đồng bền chặt của CRF.
149+
</p>
150+
</div>
151+
</div>
124152
</div>
125153
</div>
126154
</section>

style.css

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -398,14 +398,14 @@ header {
398398
/* About / Intro Section */
399399
.about-grid {
400400
display: grid;
401-
grid-template-columns: 1fr 1fr;
402-
gap: 4rem;
403-
align-items: center;
401+
grid-template-columns: 1.15fr 0.9fr 0.95fr;
402+
gap: 3rem;
403+
align-items: stretch;
404404
}
405405

406406
.about-features {
407-
display: grid;
408-
grid-template-columns: 1fr 1fr;
407+
display: flex;
408+
flex-direction: column;
409409
gap: 1.5rem;
410410
}
411411

@@ -1073,6 +1073,10 @@ header {
10731073
.hero-title {
10741074
font-size: 3rem;
10751075
}
1076+
.about-grid {
1077+
grid-template-columns: 1fr;
1078+
gap: 3rem;
1079+
}
10761080
.footer-grid {
10771081
grid-template-columns: 1fr 1fr;
10781082
gap: 3rem;

0 commit comments

Comments
 (0)