36 lines
808 B
SCSS
36 lines
808 B
SCSS
/*
|
||
此源码是基于 Dimension 的二次修改
|
||
Github:https://github.com/nianbroken/Personal_Sakura_Guide_Page
|
||
Gitee:https://gitee.com/nianbroken/Personal_Sakura_Guide_Page
|
||
*/
|
||
/* Footer */
|
||
|
||
#footer {
|
||
@include vendor('transition', (
|
||
'transform #{_duration(article)} ease-in-out',
|
||
'filter #{_duration(article)} ease-in-out',
|
||
'opacity #{_duration(article)} ease-in-out',
|
||
));
|
||
width: 100%;
|
||
max-width: 100%;
|
||
margin-top: 2rem;
|
||
text-align: center;
|
||
|
||
.copyright {
|
||
letter-spacing: _font(letter-spacing);
|
||
font-size: 0.6rem;
|
||
opacity: 0.75;
|
||
margin-bottom: 0;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
body.is-article-visible & {
|
||
@include vendor('transform', 'scale(0.95)');
|
||
@include vendor('filter', 'blur(0.1rem)');
|
||
opacity: 0;
|
||
}
|
||
|
||
body.is-preload & {
|
||
opacity: 0;
|
||
}
|
||
} |