You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

52 lines
1.4 KiB

.footer-panel
.footer-content
p © 2023-#{new Date().getFullYear()} #{$site.site_title}. 保留所有权利。
ul.footer-links
li
a(href="/about") 关于我们
//- li
//- a(href="/contact") 联系方式
//- li
//- a(href="/privacy") 隐私
style.
.footer-panel {
background: rgba(34,34,34,.3);
backdrop-filter: blur(12px);
color: #eee;
padding: 40px 0 24px 0;
font-size: 15px;
margin-top: 40px;
min-height: 120px;
display: flex;
align-items: center;
justify-content: center;
}
.footer-content {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-content p {
margin: 0 0 10px 0;
letter-spacing: 1px;
}
.footer-links {
list-style: none;
padding: 0;
display: flex;
gap: 24px;
}
.footer-links li {
display: inline;
}
.footer-links a {
color: #eee;
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: #4fc3f7;
text-decoration: underline;
}