Last active
January 7, 2021 07:45
-
-
Save kokdemo/9d486fc92bbe626d5d17c27648167ab8 to your computer and use it in GitHub Desktop.
flomo-zen-mode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 如何使用? */ | |
/* 使用stylus之类的浏览器插件,把css加载进去就行了,喜欢的话来个star */ | |
.input-box:focus-within{ | |
border: 2px solid #55BB8E!important; | |
position: relative; | |
z-index: 5; | |
} | |
.search:focus-within{ | |
position: relative; | |
z-index: 5; | |
} | |
.input-box:focus-within::after,.search:focus-within::after{ | |
content: ""; | |
position: fixed; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
background-color: rgba(0,0,0,0.2); | |
z-index: -1; | |
} | |
li i.el-icon-menu{ | |
margin-right: 4px!important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment