This commit is contained in:
2026-06-03 01:06:32 +07:00
commit 31d30434d6
72 changed files with 11912 additions and 0 deletions
+134
View File
@@ -0,0 +1,134 @@
/* views\components\footer\footer.css */
/* FOOTER SECTION CSS */
.footer {
background-color: #1a1a1a;
color: #f5f5f5;
padding: 3rem 0 1.5rem;
font-family: "Roboto", Arial, sans-serif;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 0 2rem;
}
.footer-column {
flex: 1;
min-width: 250px;
margin-bottom: 2rem;
}
.footer-column h4 {
color: #ffffff;
font-size: 1.2rem;
margin-bottom: 1.2rem;
font-weight: 600;
position: relative;
padding-bottom: 0.5rem;
}
.footer-column h4::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: #3498db;
}
.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-column ul li {
margin-bottom: 0.8rem;
}
.footer-column ul li a {
color: #cccccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-column ul li a:hover {
color: #3498db;
padding-left: 5px;
}
.footer-column p {
margin-bottom: 0.8rem;
font-size: 0.95rem;
line-height: 1.6;
color: #cccccc;
}
.footer-column a {
color: #3498db;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-column a:hover {
color: #ffffff;
}
.footer-bottom {
border-top: 1px solid #333333;
padding-top: 1.5rem;
margin-top: 1rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 1.5rem 2rem 0;
}
.copyright {
font-size: 0.9rem;
color: #999999;
margin-bottom: 1rem;
}
.footer-links {
font-size: 0.9rem;
}
.footer-links a {
color: #cccccc;
text-decoration: none;
margin: 0 0.5rem;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #3498db;
}
/* Responsive styles */
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
}
.footer-column {
width: 100%;
margin-bottom: 2rem;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
.footer-links {
margin-top: 1rem;
}
}
+45
View File
@@ -0,0 +1,45 @@
<!-- views/components/footer/footer.html -->
<footer class="footer">
<div class="footer-container">
<div class="footer-column">
<h4>Giới Thiệu</h4>
<ul>
<li><a href="#" title="Sản phẩm">Sản Phẩm</a></li>
<li><a href="#" title="Dịch vụ">Dịch Vụ</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Tin Tức</h4>
<ul>
<li>
<a href="#" title="An toàn - Sức khoẻ - Môi trường"
>An Toàn - Sức Khoẻ - Môi Trường</a
>
</li>
<li><a href="#" title="Liên hệ">Liên Hệ</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Liên hệ</h4>
<p>Lầu 12, số 27 Đinh Bộ Lĩnh, P. Bình Thạnh, TP. HCM</p>
<p>
Điện thoại:
<a href="tel:+84 96 227 7912" title="Gọi cho Kỳ Long"
>+84 96 227 7912</a
>
</p>
<p>
Email:
<a href="mailto:info@kylong.com.vn" title="Gửi email cho Kỳ Long"
>info@kylongtech.com</a
>
</p>
</div>
</div>
<div class="footer-bottom">
<div class="copyright">Thắp sáng tương lai, vững bền thành công</div>
</div>
</footer>