mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 19:00:53 +08:00
💥 移除對文章隱藏的支持,如需要,請使用插件,hexo-hide-posts/hexo-generator-indexed 💥 移除subtitle金山詞霸每日一句,增加搏天api的隨機語錄 ✨ subtitle修改為網頁加載完後再加載,防止api回應過慢而阻礙網頁顯示 ✨ 適配valine 1.4.0, 刪除部分valine夜間模式代碼 ✨ meta增加article:published_time和article:modified_time ✨ 當沒有設置Description時,會自動讀取文章前200個文字作為meta Description ✨ sidebar menu 增加頭像轉圈hover 💄 調整aside和mobile sidebar 網頁資訊佈局,當缺少一個時,寬度依舊平分 🐛 調整子目錄的排版(向左對齊),修復只能點擊子目錄文字才能跳轉的bug 🔥 pug精簡 刪除recent-post.pug 改為引用mixins/post-ui.pug
107 lines
2.0 KiB
Stylus
107 lines
2.0 KiB
Stylus
#mobile-sidebar
|
|
#menu_mask
|
|
position: fixed
|
|
top: 0
|
|
right: 0
|
|
bottom: 0
|
|
left: 0
|
|
z-index: 102
|
|
display: none
|
|
background: alpha($dark-black, .8)
|
|
|
|
#mobile-sidebar-menus
|
|
position: fixed
|
|
top: 0
|
|
right: -250px
|
|
z-index: 103
|
|
display: block
|
|
overflow: hidden
|
|
overflow-y: scroll
|
|
width: 250px
|
|
height: 100%
|
|
background: #f6f8fa
|
|
transition: all .5s
|
|
|
|
& > .mobile_author_icon
|
|
padding: 1.3rem 1.5rem 0
|
|
text-align: center
|
|
|
|
img
|
|
width: 110px
|
|
height: 110px
|
|
border-radius: 70px
|
|
transition: all .5s
|
|
|
|
&:hover
|
|
transform: rotate(360deg)
|
|
|
|
.mobile_post_data
|
|
display: table
|
|
padding: .6rem .5rem 0
|
|
width: 100%
|
|
table-layout: fixed
|
|
|
|
.mobile_data_item
|
|
display: table-cell
|
|
|
|
.mobile_data_link
|
|
& > a > div
|
|
overflow: hidden
|
|
text-overflow: ellipsis
|
|
white-space: nowrap
|
|
|
|
.length_num
|
|
color: $dark-black
|
|
font-size: .9rem
|
|
|
|
.headline
|
|
display: block
|
|
color: $font-black
|
|
font-size: .7rem
|
|
|
|
hr
|
|
margin: 1rem auto
|
|
|
|
.menus_items
|
|
padding: 0 .5rem 2rem
|
|
|
|
.site-page
|
|
position: relative
|
|
z-index: 0
|
|
display: block
|
|
overflow: hidden
|
|
margin: 0
|
|
padding: .3rem 1.5rem
|
|
color: $font-black
|
|
text-overflow: ellipsis
|
|
text-shadow: none
|
|
white-space: nowrap
|
|
font-size: .8rem
|
|
cursor: pointer
|
|
|
|
i
|
|
width: 30%
|
|
text-align: left
|
|
|
|
span
|
|
width: 70%
|
|
|
|
&:hover
|
|
color: $light-blue
|
|
|
|
.menus-expand
|
|
position: absolute
|
|
right: 0
|
|
padding: 6px
|
|
width: 30px !important
|
|
height: 30px
|
|
transition: all .3s
|
|
transform: rotate(0)
|
|
|
|
&.menus-closed
|
|
transition: all .3s
|
|
transform: rotate(180deg) !important
|
|
|
|
.menus_item_child
|
|
margin: 0
|
|
list-style: none |