99 lines
1.5 KiB
CSS
99 lines
1.5 KiB
CSS
/* Trend01 Footer Style - Minimal & Clean */
|
|
|
|
.trend01-footer {
|
|
background-color: #f8f8f8;
|
|
color: #666;
|
|
padding: 60px 0;
|
|
font-size: 0.9rem;
|
|
border-top: 1px solid #eee;
|
|
}
|
|
|
|
.footer-inner {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.footer-top {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: 30px;
|
|
margin-bottom: 30px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.footer-logo img {
|
|
height: 30px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: #666;
|
|
text-decoration: none;
|
|
margin-left: 20px;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: #111;
|
|
}
|
|
|
|
.footer-bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.footer-info span {
|
|
margin-right: 15px;
|
|
display: inline-block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.footer-copyright p {
|
|
margin: 0;
|
|
color: #999;
|
|
font-size: 0.8rem;
|
|
text-align: right;
|
|
}
|
|
|
|
/* 모바일 반응형 */
|
|
@media (max-width: 1024px) {
|
|
.footer-top,
|
|
.footer-bottom {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-top {
|
|
gap: 20px;
|
|
}
|
|
|
|
.footer-links {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.footer-links a {
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.footer-bottom {
|
|
gap: 20px;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-info {
|
|
order: 2;
|
|
}
|
|
|
|
.footer-copyright {
|
|
order: 1;
|
|
}
|
|
|
|
.footer-copyright p {
|
|
text-align: center;
|
|
}
|
|
}
|