forked from MinhQuan/PresentCorpo
135 lines
2.0 KiB
CSS
135 lines
2.0 KiB
CSS
/* 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;
|
|
}
|
|
}
|