index.styl 705 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. &::before
  19. $s = 1.3rem
  20. content ''
  21. display inline-block
  22. margin-right .3rem
  23. margin-top .45rem
  24. width $s
  25. height $s
  26. vertical-align: top
  27. background url(https://bhuh12.github.io/vue-router-tab/demo/img/logo.png)
  28. background-size cover
  29. // Logo 图片
  30. .home .hero img
  31. width 180px
  32. .nav-links .nav-link.external
  33. margin-right -.5em