按照原版本恢复

This commit is contained in:
2019-09-09 09:57:17 +08:00
parent 3e2649979b
commit 4ecca60927
3 changed files with 20 additions and 17 deletions

View File

@ -90,5 +90,21 @@ button{
background: #E5122B;
color: white;
border-radius: 0;
top: 70px;
}
.footer{
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
line-height: 50px;
text-align: center;
background: -moz-linear-gradient(left, #f5354b, #ff005a);
/*Mozilla*/
background: -webkit-gradient(linear, 0 50%, 100% 50%, from(#f5354b), to(#ff005a));
/*Old gradient for webkit*/
background: -webkit-linear-gradient(left, #f5354b, #ff005a);
/*new gradient for Webkit*/
background: -o-linear-gradient(left, #f5354b, #ff005a);
/*Opera11*/
color: #fff;
}