🎨 默认使首页文章列表为白色而不是透明色,并修改页脚样式

This commit is contained in:
Li 2022-12-14 14:27:55 +08:00
parent d31c374428
commit accb845e06
3 changed files with 12 additions and 8 deletions

View File

@ -1618,7 +1618,7 @@ i.iconfont.hotpost {
position: relative; position: relative;
margin: 20px 0 20px; margin: 20px 0 20px;
border-radius: 10px; border-radius: 10px;
background-color: rgba(255, 255, 255, 0); background-color: rgba(255, 255, 255);
box-shadow: 0 1px 20px -6px rgba(0, 0, 0, .5); box-shadow: 0 1px 20px -6px rgba(0, 0, 0, .5);
opacity: 1; opacity: 1;
transition: box-shadow .3s ease transition: box-shadow .3s ease
@ -1927,11 +1927,15 @@ i.iconfont.hotpost {
} }
.site-footer { .site-footer {
padding: 2%; background-color: rgba(255, 255, 255,0.7);
background: rgba(255, 255, 255, .8); -webkit-backdrop-filter: blur(10px);
max-width: 800px; backdrop-filter: blur(10px);
margin-left: auto; padding: max(2%,45px);
margin-right: auto margin-left: auto;
margin-right: auto;
-webkit-animation: blur .8s;
animation: blur .8s;
transition: all 0.8s ease !important;
} }
.site-info { .site-info {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long