mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 20:30:53 +08:00
Breaking change 1. 手機端界面卡片化,同時,手機端也可以顯示側邊欄的內容 2. 修復當menu過多時,header界面出現錯亂的bug。當menu過多時,會變為sidebar模式 3. 增加medium-zoom大圖查看模式 4. 增加鼠標點擊特效:文字和愛心 兩個點擊特效 5. 主頁subtitle可以調用第三方api(金山詞霸每日一句、一言網的一句話、一句網、今日詩詞) 6. 添加 snackbar 彈窗 7. 修改nightshift為darkmode,darkmode可隨系統設置而自動切換,可設置隨時間而切換darkmode 8. 修復hexo自帶的標籤外掛(Tag Plugins)顯示bug(Block Quote、Code Block With caption、Gist、Youtube、Vimeo) 9. 主題所需要的css和js可根據需要配置CDN 10. 更改darkmode的加載方式,網站設置dark mode後,現在進入網頁不會在'閃'一下 11. 背景特效和背景圖片在手機界面也會顯示 12. 增加justified-gallery圖片顯示(Tag Plugins) Feature 1. 文章頁面,字數統計、閲讀時長和閲讀量前面添加icon 2. 更改懶加載js 3. 升級typed.js/instantpage.js到最新版 4. 搜索和右下角按鈕添加退出特效 Fixed 1. 修復在 Hexo 4.0.0下,一些按鈕點擊會跳出一個空白頁的bug 2. 修復在 Hexo 4.0.0下,分頁按鈕出現代碼的bug 3. 修復當沒有設置評論時,右下角依舊出現'直達評論'按鈕的bug 4. 優化sidebar的打開速度 5. 修復文章頁標題左右邊距不平等的bug 6. 修復keywords讀取的bug 7. 修復當post/page 內容為空時,footer位置錯亂的bug 8. 修復在手機safari,toc sidebar底部內容被遮擋的bug 9. 完善Dark mode,一些界面的配色 10. 修復 card-archives 查看更多 跳轉bug Remove 1. 移除Gitment 2. 移除Gallery
373 lines
5.7 KiB
Stylus
373 lines
5.7 KiB
Stylus
html
|
|
height: 100%
|
|
font-size: $rem
|
|
|
|
body
|
|
position: relative
|
|
display: flex
|
|
flex-direction: column
|
|
min-height: 100%
|
|
background: #fff
|
|
color: $font-black
|
|
font-size: $font-size
|
|
font-family: $font-family
|
|
line-height: $text-line-height
|
|
|
|
if !hexo-config('copy.enable')
|
|
user-select: none
|
|
-moz-user-select: none
|
|
-webkit-user-select: none
|
|
-ms-user-select: none
|
|
|
|
#body-wrap
|
|
position relative
|
|
flex: 1 auto
|
|
display: flex
|
|
flex-direction: column
|
|
transition: all .3s
|
|
|
|
*::-webkit-scrollbar
|
|
width: 8px
|
|
height: 8px
|
|
|
|
*::-webkit-scrollbar-thumb
|
|
background: $light-blue
|
|
|
|
*::-webkit-scrollbar-track
|
|
background-color: transparent
|
|
|
|
|
|
#web_bg
|
|
background: $web-bg
|
|
height: 100%
|
|
width: 100%
|
|
background-size: cover
|
|
position: fixed
|
|
z-index: -999
|
|
background-attachment: local
|
|
background-repeat: no-repeat
|
|
background-position: center
|
|
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6
|
|
position: relative
|
|
margin: 0.2rem 0
|
|
color: lighten($font-color, 15%)
|
|
font-weight: bold
|
|
|
|
code
|
|
font-size: inherit !important
|
|
|
|
#content-outer
|
|
flex: 1 auto
|
|
|
|
*
|
|
box-sizing: border-box
|
|
|
|
#content-inner
|
|
.img-alt
|
|
text-decoration: none
|
|
color: $a-link-color
|
|
|
|
#toggle-sidebar
|
|
position: fixed
|
|
bottom: $sidebar-icon-top
|
|
left: $sidebar-icon-left
|
|
z-index: 100
|
|
font-size: $sidebar-icon-size
|
|
cursor: pointer
|
|
transition: all 0.2s
|
|
opacity: 0
|
|
|
|
hr
|
|
position: relative
|
|
margin: 2rem auto
|
|
width: calc(100% - 4px)
|
|
border: 2px dashed $pale-blue
|
|
background: $white
|
|
|
|
&:hover
|
|
&:before
|
|
left: calc(95% - 20px)
|
|
|
|
&:before
|
|
position: absolute
|
|
top: $hr-icon-top
|
|
left: 5%
|
|
z-index: 1
|
|
color: $light-blue
|
|
content: $hr-icon
|
|
font: normal normal normal 14px / 1 FontAwesome
|
|
font-size: 20px
|
|
transition: all 1s ease-in-out
|
|
|
|
// collapse/expand beautify
|
|
details
|
|
padding: 0.3rem
|
|
border: 2px solid darken($light-grey, 10%)
|
|
|
|
summary
|
|
color: $theme-color
|
|
|
|
// set <caption> of <figure> to center-align
|
|
// use class="not-code" to avoid conflicts because code also use <figure> tag
|
|
.not-code
|
|
margin: 0.5em
|
|
padding: 0.5em
|
|
border: thin silver solid
|
|
text-align: center
|
|
|
|
table
|
|
overflow: auto
|
|
width: 100%
|
|
border-spacing: 0
|
|
border-collapse: collapse
|
|
|
|
thead
|
|
background: alpha($a-link-color, 10%)
|
|
|
|
th,
|
|
td
|
|
padding: 0.3rem 0.6rem
|
|
border: 1px solid darken($light-grey, 10%)
|
|
vertical-align: top
|
|
|
|
*::selection
|
|
background: $selection
|
|
color: $pale-grey
|
|
|
|
|
|
.full_page #site-title,
|
|
.full_page #site-sub-title,
|
|
#site-name,
|
|
#aside_content .author-info__name,
|
|
#aside_content .author-info__description
|
|
font-family: $site-name-font
|
|
|
|
.is_right
|
|
text-align: right
|
|
|
|
.is_left
|
|
text-align: left
|
|
|
|
.is_center
|
|
text-align: center
|
|
|
|
.is_visible
|
|
display: block !important
|
|
|
|
.is_invisible
|
|
display: none !important
|
|
|
|
.is_hidden
|
|
overflow: hidden
|
|
|
|
.pull_left
|
|
float: left
|
|
|
|
.pull_right
|
|
float: right
|
|
|
|
.fireworks
|
|
position: fixed
|
|
z-index: -1
|
|
pointer-events: none
|
|
|
|
|
|
.fireworks
|
|
z-index: 99999
|
|
|
|
@media screen and (max-width: $bg)
|
|
i#toggle-sidebar,
|
|
#sidebar
|
|
display: none
|
|
|
|
body
|
|
padding-left: 0 !important
|
|
|
|
|
|
// 懶加載
|
|
.lazyload,
|
|
.lazyloading
|
|
opacity: 0
|
|
|
|
.lazyloaded
|
|
opacity: 1
|
|
transition: opacity 0.3s
|
|
|
|
img[src=""],img:not([src])
|
|
opacity: 0
|
|
|
|
.justified-gallery
|
|
img
|
|
opacity 0
|
|
.fancybox
|
|
width: auto
|
|
text-align: inherit
|
|
.img-alt
|
|
display: none
|
|
|
|
.medium-zoom-image--opened
|
|
margin: 0 !important
|
|
z-index: 99999 !important
|
|
|
|
.medium-zoom-overlay
|
|
z-index: 99999 !important
|
|
|
|
// hexo tag video
|
|
.video-container
|
|
position: relative
|
|
padding-top: 56.25%
|
|
height: 0
|
|
overflow: hidden
|
|
margin-bottom: 0.8rem
|
|
|
|
iframe
|
|
position: absolute
|
|
top: 0
|
|
left: 0
|
|
width: 100%
|
|
height: 100%
|
|
margin-top: 0
|
|
|
|
|
|
.layout_page,
|
|
.layout_post,
|
|
#footer
|
|
animation: main 1s
|
|
|
|
#nav,
|
|
#top-container
|
|
animation: header 1s
|
|
|
|
#site-title
|
|
animation: titlescale 1s
|
|
|
|
canvas,
|
|
#web_bg
|
|
animation: to_show 4s
|
|
|
|
.card-announcement-animation
|
|
animation: announ_animation .8s linear infinite
|
|
color: #FF0000
|
|
|
|
.scroll-down-effects
|
|
animation: scroll-down-effect 1.5s infinite
|
|
|
|
if hexo-config("avatar_effect") == true
|
|
.avatar_img
|
|
animation: avatar_turn_around 2s linear infinite
|
|
|
|
.reward-main
|
|
animation: donate_effcet .3s .1s ease both
|
|
|
|
#rightside-config-hide
|
|
animation: rightside_in_animate .3s
|
|
|
|
@keyframes scroll-down-effect
|
|
0%
|
|
opacity: 0.4
|
|
top: 0
|
|
50%
|
|
opacity: 1
|
|
top: -16px
|
|
100%
|
|
opacity: 0.4
|
|
top: 0
|
|
|
|
@keyframes header
|
|
0%
|
|
opacity: 0
|
|
transform: translateY(-50px)
|
|
100%
|
|
opacity: 1
|
|
transform: translateY(0)
|
|
|
|
@keyframes headerNoOpacity
|
|
0%
|
|
transform: translateY(-50px)
|
|
100%
|
|
transform: translateY(0)
|
|
|
|
@keyframes main
|
|
0%
|
|
opacity: 0
|
|
transform: translateY(50px)
|
|
100%
|
|
opacity: 1
|
|
transform: translateY(0)
|
|
|
|
@keyframes titlescale
|
|
0%
|
|
opacity: 0
|
|
transform: scale(0.7)
|
|
100%
|
|
opacity: 1
|
|
transform: scale(1)
|
|
|
|
@keyframes search_close
|
|
0%
|
|
opacity: 1
|
|
transform: scale(1)
|
|
100%
|
|
opacity: 0
|
|
transform: scale(0.7)
|
|
|
|
@keyframes to_show
|
|
0%
|
|
opacity: 0
|
|
100%
|
|
opacity: 1
|
|
|
|
@keyframes avatar_turn_around
|
|
from
|
|
transform: rotate(0deg)
|
|
to
|
|
transform: rotate(360deg)
|
|
|
|
@keyframes sub_menus
|
|
0%
|
|
opacity: 0
|
|
transform: translateY(10px)
|
|
100%
|
|
opacity: 1
|
|
transform: translateY(0)
|
|
|
|
@keyframes donate_effcet
|
|
0%
|
|
opacity: 0
|
|
transform: translateY(-20px)
|
|
100%
|
|
opacity: 1
|
|
transform: translateY(0)
|
|
|
|
@keyframes announ_animation
|
|
0%,to
|
|
transform: scale(1)
|
|
50%
|
|
transform: scale(1.2)
|
|
|
|
@keyframes rightside_in_animate
|
|
0%
|
|
transform: translateX(28px)
|
|
100%
|
|
transform: translateX(0)
|
|
|
|
@keyframes rightside_out_animate
|
|
0%
|
|
transform: translateX(0)
|
|
100%
|
|
transform: translateX(28px)
|
|
|
|
@keyframes right_to_left
|
|
0%
|
|
transform: translateX(100px)
|
|
100%
|
|
transform: translateX(0)
|
|
|