2020-04-25 11:16:58 +08:00
|
|
|
@require "animated.styl"
|
2020-04-24 22:49:10 +08:00
|
|
|
magic-style(scale) {
|
|
|
|
if (hexo-config('magic.enable') == true) {
|
|
|
|
|
|
|
|
box-shadow: 0 0 3px var(--border-color);
|
2020-04-25 11:16:58 +08:00
|
|
|
transition();
|
2020-04-24 22:49:10 +08:00
|
|
|
|
|
|
|
&:hover {
|
2020-04-25 11:16:58 +08:00
|
|
|
transition();
|
2020-04-24 22:49:10 +08:00
|
|
|
box-shadow: 0 0 8px var(--border-color);
|
|
|
|
transform: scale(scale);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
magic-container(scale) {
|
|
|
|
if (hexo-config('magic.enable') == true) {
|
|
|
|
magic-style(scale);
|
|
|
|
padding: 30px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
}
|