@import 'variables.styl' @import 'animated.styl' @import 'keep-theme.styl' // ====================================================================== // all // ====================================================================== * { // ==================================== // transition // ==================================== transition-g() // ==================================== // scrollbar // ==================================== &::-webkit-scrollbar { width 0.4rem height 0.4rem transition all 0.2s ease } &::-webkit-scrollbar-thumb { background var(--scrollbar-color) border-radius 0.1rem } &::-webkit-scrollbar-track { background var(--scroll-bar-bg-color) } } // ====================================================================== // html, body // ====================================================================== html body { position relative width 100% height 100% margin 0 padding 0 color var(--default-text-color) font-weight $default-font-weight font-size $default-font-size font-family $default-font-family line-height $default-font-line-height background var(--background-color) &::-webkit-scrollbar { width 0.4rem height 0.4rem } +keep-tablet() { font-size $default-font-size * 0.96 line-height $default-font-line-height * 0.96 } +keep-mobile() { font-size $default-font-size * 0.9 line-height $default-font-line-height * 0.9 } } // ====================================================================== // selection // ====================================================================== ::selection { color #fff background var(--selection-color) } // ====================================================================== // ul, ol, li // ====================================================================== ul ol li { margin 0 padding 0 list-style none } // ====================================================================== // a // ====================================================================== a { color var(--default-text-color) text-decoration none i span { color var(--default-text-color) } &:hover &:active { color var(--primary-color) text-decoration none !important i span { color var(--primary-color) } } } // ====================================================================== // img // ====================================================================== img { &[lazyload] { margin 1.4rem auto !important padding 0.8rem cursor not-allowed pointer-events none } } // ====================================================================== // button // ====================================================================== button { margin 0 padding 0 background transparent border 0 outline none cursor pointer } .btn { position relative display inline-block padding 0.4rem 1rem white-space nowrap text-align center background var(--background-color) border-radius 5px cursor pointer hover-style(true, 1.06, 1.06) &:hover { color var(--background-color) background var(--primary-color) } } // ====================================================================== // flex center // ====================================================================== .flex-center { display flex align-items center justify-content center } // ====================================================================== // clear float // ====================================================================== .clear { &::after { display block clear both height 0 overflow hidden visibility hidden content '' } } // ====================================================================== // tooltip // ====================================================================== .tooltip { position relative box-sizing border-box &:hover { .tooltip-content { display inline-block } } .tooltip-content { position absolute top 0 left 50% z-index $z-index-9 display none padding 0.2rem 0.6rem color var(--fourth-text-color) font-size 0.8rem white-space nowrap background var(--first-text-color) border-radius 0.3rem transform translateX(-50%) translateY(-108%) transition-t("display", "0", "0.2", "ease") } }