index.styl 793 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. $color = #3eaf7c;
  2. /*滚动条*/
  3. ::-webkit-scrollbar
  4. $w = 6px
  5. width $w
  6. height $w
  7. &-thumb
  8. background rgba(0, 0, 0, .1)
  9. border-radius 20px
  10. &:hover
  11. background rgba($color, .5)
  12. &:active
  13. background rgba($color, .8)
  14. &-corner
  15. display none
  16. // 站点名称前注入 logo
  17. .navbar .home-link
  18. position relative
  19. top -2px
  20. &::before
  21. $s = 1.3rem
  22. content ''
  23. display inline-block
  24. margin-right .3rem
  25. width $s
  26. height $s
  27. vertical-align middle
  28. background url(https://raw.githubusercontent.com/bhuh12/vue-router-tab/dev/docs/.vuepress/public/img/logo.png)
  29. background-size cover
  30. .site-name
  31. vertical-align middle
  32. // Logo 图片
  33. .home .hero img
  34. width 180px
  35. .nav-links .nav-link.external
  36. margin-right -.5em