mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-17 04:40:53 +08:00
2. 完善footer 有背景和無背景下,在dark mode下的顯示 3. 界面微調 4. 增加選項可關閉aside在手機上的顯示 5. 修復關閉夜間模式情況下,console報Uncaught ReferenceError: autoChangeMode is not defined 的bug
42 lines
704 B
Stylus
42 lines
704 B
Stylus
#footer
|
|
margin-top: 1rem
|
|
background: $light-blue
|
|
background-attachment: local
|
|
background-position: bottom
|
|
background-size: cover
|
|
position: relative
|
|
|
|
if hexo-config('footer_bg') != false
|
|
&:before
|
|
position: absolute
|
|
bottom: 0
|
|
left: 0
|
|
display: block
|
|
content: ''
|
|
width: 100%
|
|
height: 100%
|
|
background-color: alpha($dark-black,0.5)
|
|
|
|
|
|
#footer-wrap
|
|
padding: 2rem 1rem
|
|
color: $light-grey
|
|
text-align: center
|
|
position: relative
|
|
|
|
a
|
|
color: $light-grey
|
|
text-decoration: none
|
|
cursor: pointer
|
|
|
|
&:hover
|
|
color: $white
|
|
|
|
.footer-separator
|
|
margin: 0 0.2rem
|
|
|
|
.icp-icon
|
|
padding: 0 4px
|
|
vertical-align: text-bottom
|
|
|