mirror of https://github.com/jkjoy/sunpeiwen.git
60 lines
976 B
Stylus
60 lines
976 B
Stylus
.search-dialog
|
|
position: fixed
|
|
top: 10%
|
|
left: 50%
|
|
z-index: 1001
|
|
display: none
|
|
margin-left: -300px
|
|
padding: 20px
|
|
width: 600px
|
|
border-radius: 8px
|
|
background: var(--search-bg)
|
|
--search-height: 100vh
|
|
|
|
+maxWidth768()
|
|
top: 0
|
|
left: 0
|
|
margin: 0
|
|
width: 100%
|
|
height: 100%
|
|
border-radius: 0
|
|
|
|
hr
|
|
margin: 20px auto
|
|
|
|
.search-nav
|
|
margin: 0 0 14px
|
|
color: $search-color
|
|
font-size: 1.4em
|
|
line-height: 1
|
|
|
|
.search-dialog-title
|
|
margin-right: 10px
|
|
|
|
.search-close-button
|
|
float: right
|
|
color: $grey
|
|
transition: color .2s ease-in-out
|
|
|
|
&:hover
|
|
color: $search-color
|
|
|
|
hr
|
|
margin: 20px auto
|
|
@extend .custom-hr
|
|
|
|
#search-mask
|
|
position: fixed
|
|
top: 0
|
|
right: 0
|
|
bottom: 0
|
|
left: 0
|
|
z-index: 1000
|
|
display: none
|
|
background: rgba($dark-black, .6)
|
|
|
|
if hexo-config('algolia_search.enable')
|
|
@require 'algolia'
|
|
|
|
if hexo-config('local_search.enable')
|
|
@require 'local-search' |