mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-17 04:40:53 +08:00
1. 可設置隱藏文章 2. 適配 Hexo 的 Tag Plugins Code Block With marked lines 顯示 3. 可配置首頁cover顯示的位置 4. 更改深色模式下的配色 5. activate_power_mode 增加關閉顏色和抖動 6. 增加谷歌廣告,騰訊分析 7. 相關文章增加時間顯示,調整佈局,垂直居中 8. 文章頁面,top_img增加評論數顯示 9. 可以取消點擊圖片觀看大圖 10. mathjax和kathex可設置每頁都加載還是按需加載 11. 深色模式下,滾動條顔色的適配 12. 優化gitalk 在 dark mode下的顯示 13. 文章頁,文章標題過長時,只顯示三行內容 14. 深色模式下,背景圖片加上蒙板 15. 優化深色/閲讀模式下,canvas的顯示 16. 優化打賞的特效和移動到二維碼不會立刻消失 17. 優化sub-menu樣式 18. 修改aside 的tags顔色,在深色模式下不會出現觀看困難 19. 升級 normalize.css 到最新版 20. 優化手機上toc和menu的打開動畫 21. 優化代碼框打開關閉的特效 22. 精簡js,部分操作改為css控制 23. 優化主題的一些動畫,不會過於生硬 1. 修復當圖片被a標簽包圍時,點擊圖標沒有跳轉到對應網頁而是出現大圖觀看模式的bug 2. 修復當網址有subdirectory時,menu、打賞二維碼和lodding_bg 鏈接路徑錯誤的bug 3. 修復當網址有subdirectory時, 4. 修復katex 的 CSS無法讀取bug 5. 修復搜索按鈕在文章頁不顯示的bug 6. 修復gitalk css引用失敗的bug 7. 修復 點擊特效 煙花 無效的bug 8. 修復gitalk報path.startsWith is not a function的bug 9. 修復 閲讀模式下,背景沒有變純色的bug 10. 修復閲讀模式下,header 偶爾出現沒有靠攏頂部的bug 11. 修復Hexo Tag Plugins Block Quote 裏的鏈接顯示出外面的Bug 12. 修復aside歸檔日期過長導致錯位的bug 13. 修復toc為空時,toc按鈕仍存在的bug 14. 修復關閉懶加載後,頭像無法顯示的bug 15. 修復深色模式下,切換readmode偶爾會無效的bug 16. 修復在一些手機設備上,toc和menu的按鈕顯示不對齊的bug #72
382 lines
6.8 KiB
Stylus
382 lines
6.8 KiB
Stylus
.layout_page
|
|
display: flex
|
|
align-items: flex-start
|
|
margin: 0 auto
|
|
padding: 0 15px
|
|
max-width: 1200px
|
|
|
|
// index
|
|
#recent-posts
|
|
width: 75%
|
|
|
|
& > .recent-post-item
|
|
display: flex
|
|
flex-direction: row
|
|
align-items: center
|
|
margin-top: 20px
|
|
padding: 0
|
|
height: 280px
|
|
border-radius: 8px
|
|
background: #fff
|
|
box-shadow: 0 4px 8px 6px rgba(7, 17, 27, .06)
|
|
transition: all .3s
|
|
|
|
&:hover
|
|
box-shadow: 0 4px 12px 12px rgba(7, 17, 27, .15)
|
|
|
|
img.post_bg
|
|
transform: scale(1.1)
|
|
|
|
if hexo-config('index_post_cover') == 'both'
|
|
.left_radius
|
|
border-radius: 8px 0 0 8px
|
|
|
|
.right_radius
|
|
order: 2
|
|
border-radius: 0 8px 8px 0
|
|
else if hexo-config('index_post_cover') == 'left'
|
|
.left_radius
|
|
border-radius: 8px 0 0 8px
|
|
|
|
.right_radius
|
|
border-radius: 8px 0 0 8px
|
|
else if hexo-config('index_post_cover') == 'right'
|
|
.left_radius
|
|
order: 2
|
|
border-radius: 0 8px 8px 0
|
|
|
|
.right_radius
|
|
order: 2
|
|
border-radius: 0 8px 8px 0
|
|
|
|
.post_cover
|
|
overflow: hidden
|
|
width: 45%
|
|
height: 280px
|
|
|
|
img.post_bg
|
|
display: block
|
|
margin: 0
|
|
padding: 0
|
|
width: 100%
|
|
height: 100%
|
|
border: 0
|
|
transition: all .6s
|
|
object-fit: cover
|
|
|
|
&:hover
|
|
transform: scale(1.1)
|
|
|
|
& >.recent-post-info
|
|
display: inline-block
|
|
overflow: hidden
|
|
padding: 0 40px
|
|
width: 55%
|
|
|
|
& > .article-title
|
|
display: -webkit-box
|
|
overflow: hidden
|
|
margin-bottom: .3rem
|
|
color: $black
|
|
text-decoration: none
|
|
text-overflow: ellipsis
|
|
word-wrap: break-word
|
|
font-size: 1.2rem
|
|
line-height: 1.4
|
|
transition: all .2s ease-in-out
|
|
-webkit-box-orient: vertical
|
|
-webkit-line-clamp: 2
|
|
|
|
&:hover
|
|
color: $light-blue !important
|
|
|
|
& > time
|
|
color: $grey
|
|
|
|
& > .article-meta
|
|
color: $grey
|
|
|
|
.sticky
|
|
color: $theme-button-hover-color
|
|
|
|
i
|
|
margin: 0 .2rem 0 .3rem
|
|
|
|
.article-meta__separator
|
|
margin-left: .3rem
|
|
|
|
.fa-angle-right
|
|
margin: 0 0 0 .3rem
|
|
|
|
a.article-meta__categories
|
|
color: #858585
|
|
text-decoration: none
|
|
|
|
&:hover
|
|
color: #49b1f5 !important
|
|
|
|
& > .content
|
|
display: -webkit-box
|
|
overflow: hidden
|
|
margin-top: .5rem
|
|
height: 90px
|
|
word-break: break-word
|
|
-webkit-line-clamp: 3
|
|
-webkit-box-orient: vertical
|
|
|
|
// tags page
|
|
.tag-cloud
|
|
a
|
|
display: inline-block
|
|
padding: 0 .4rem
|
|
text-decoration: none
|
|
cursor: pointer
|
|
transition: all .3s
|
|
|
|
&:hover
|
|
color: $ruby !important
|
|
transform: scale(1.1)
|
|
|
|
&__title
|
|
text-align: center
|
|
font-size: 1.8rem
|
|
|
|
&-tags
|
|
text-align: center
|
|
|
|
#tag,
|
|
#category,
|
|
#archive
|
|
padding: 3rem
|
|
|
|
.tag-cloud,
|
|
#page,
|
|
.category-content,
|
|
.flink
|
|
padding: 40px 44px 44px
|
|
|
|
#page,
|
|
.category-content,
|
|
#archive,
|
|
.tag-cloud,
|
|
.flink,
|
|
#tag,
|
|
#category
|
|
margin-top: 20px
|
|
width: 75%
|
|
border-radius: 8px
|
|
background: $white
|
|
box-shadow: 0 4px 8px 6px rgba(7, 17, 27, .06)
|
|
transition: all .3s
|
|
|
|
&:hover
|
|
box-shadow: 0 4px 12px 12px rgba(7, 17, 27, .15)
|
|
|
|
.article-sort
|
|
padding-left: 1rem
|
|
border-left: 2px solid $pale-blue
|
|
|
|
&-title
|
|
position: relative
|
|
padding-bottom: 1.2rem
|
|
padding-left: 1rem
|
|
font-size: 1.2rem
|
|
line-height: 1
|
|
|
|
&:hover
|
|
&:before
|
|
border-color: $ruby
|
|
|
|
&:before
|
|
position: absolute
|
|
top: .25rem
|
|
left: calc(-.5rem + 1px)
|
|
z-index: 1
|
|
width: w = .5rem
|
|
height: h = w
|
|
border: .5 * w solid $light-blue
|
|
border-radius: w
|
|
background: $white
|
|
content: ''
|
|
line-height: h
|
|
transition: all .2s ease-in-out
|
|
|
|
&:after
|
|
position: absolute
|
|
bottom: 0
|
|
left: 0
|
|
z-index: 0
|
|
width: .1rem
|
|
height: 1.3rem
|
|
background: $pale-blue
|
|
content: ''
|
|
|
|
&-item
|
|
position: relative
|
|
margin: 0 0 1rem .5rem
|
|
transition: all .2s ease-in-out
|
|
|
|
&:hover
|
|
&:before
|
|
border-color: $ruby
|
|
|
|
&:before
|
|
$w = .3rem
|
|
position: absolute
|
|
top: 1.8rem
|
|
left: calc(-1rem - 17px)
|
|
width: w = $w
|
|
height: h = w
|
|
border: .5 * w solid $light-blue
|
|
border-radius: w
|
|
background: $white
|
|
content: ''
|
|
line-height: h
|
|
transition: all .2s ease-in-out
|
|
|
|
&.year
|
|
font-size: 1rem
|
|
|
|
&:hover
|
|
&:before
|
|
border-color: $light-blue
|
|
|
|
&:before
|
|
top: .7rem
|
|
border-color: $ruby
|
|
|
|
&__time
|
|
padding-left: .4rem
|
|
color: $a-link-color
|
|
font-size: .7rem
|
|
|
|
&__title
|
|
display: -webkit-box
|
|
overflow: hidden
|
|
height: 60px
|
|
color: $font-black
|
|
font-size: .75rem
|
|
transition: all .3s
|
|
-webkit-line-clamp: 2
|
|
-webkit-box-orient: vertical
|
|
|
|
&:hover
|
|
color: $light-blue
|
|
transform: translateX(20px)
|
|
|
|
&__img
|
|
img
|
|
padding: 0
|
|
width: 100%
|
|
height: 100%
|
|
transition: all .6s
|
|
object-fit: cover
|
|
|
|
&:hover
|
|
transform: scale(1.1)
|
|
|
|
&__post
|
|
text-decoration: none
|
|
cursor: pointer
|
|
|
|
&:hover
|
|
color: $a-link-color
|
|
|
|
&-img
|
|
display: inline-block
|
|
overflow: hidden
|
|
width: 80px
|
|
height: 80px
|
|
|
|
&-post
|
|
position: absolute
|
|
top: 0
|
|
display: inline-block
|
|
margin-left: 1rem
|
|
|
|
.category-lists
|
|
padding: 1rem 0 1.5rem
|
|
|
|
.category__title
|
|
text-align: center
|
|
font-size: 1.8rem
|
|
|
|
.category-list
|
|
a
|
|
color: $font-black
|
|
text-decoration: none
|
|
cursor: pointer
|
|
|
|
.category-list-count
|
|
margin-left: .4rem
|
|
color: $a-link-color
|
|
|
|
&:before
|
|
content: '('
|
|
|
|
&:after
|
|
content: ')'
|
|
|
|
@media screen and (max-width: $sm)
|
|
.layout_page
|
|
padding: 0 5px !important
|
|
|
|
#page,
|
|
.category-content,
|
|
#archive,
|
|
.tag-cloud,
|
|
.flink,
|
|
#tag,
|
|
#category
|
|
margin: 0
|
|
padding: 1.8rem 1.3rem
|
|
|
|
.category-lists
|
|
padding: 0
|
|
|
|
#recent-posts
|
|
.recent-post-item
|
|
flex-direction: column
|
|
height: auto !important
|
|
|
|
.post_cover
|
|
order: 1 !important
|
|
width: 100%
|
|
height: 230px
|
|
border-radius: 8px 8px 0 0
|
|
|
|
.recent-post-info
|
|
order: 2 !important
|
|
padding: 30px 25px 18px !important
|
|
width: 100%
|
|
|
|
.article-title
|
|
font-size: 1rem
|
|
|
|
.article-meta.tags
|
|
display: none
|
|
|
|
&:first-child
|
|
margin: 0
|
|
|
|
@media screen and (min-width: 900px)
|
|
if hexo-config('aside.position') == 'left'
|
|
#recent-posts,
|
|
#page,
|
|
.category-content,
|
|
#archive,
|
|
.tag-cloud,
|
|
.flink,
|
|
#tag,
|
|
#category
|
|
order: 2
|
|
|
|
@media screen and (max-width: 900px)
|
|
#page,
|
|
.category-content,
|
|
#archive,
|
|
.tag-cloud,
|
|
.flink,
|
|
#tag,
|
|
#category
|
|
width: 100% !important |