index.styl 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. @require './config'
  2. @require './code'
  3. @require './custom-blocks'
  4. @require './arrow'
  5. @require './wrapper'
  6. @require './toc'
  7. html, body
  8. padding 0
  9. margin 0
  10. background-color #fff
  11. body
  12. font-family -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
  13. -webkit-font-smoothing antialiased
  14. -moz-osx-font-smoothing grayscale
  15. font-size 16px
  16. color $textColor
  17. .page
  18. padding-left $sidebarWidth
  19. .navbar
  20. position fixed
  21. z-index 20
  22. top 0
  23. left 0
  24. right 0
  25. height $navbarHeight
  26. background-color #fff
  27. box-sizing border-box
  28. border-bottom 1px solid $borderColor
  29. .sidebar-mask
  30. position fixed
  31. z-index 9
  32. top 0
  33. left 0
  34. width 100vw
  35. height 100vh
  36. display none
  37. .sidebar
  38. font-size 16px
  39. background-color #fff
  40. width $sidebarWidth
  41. position fixed
  42. z-index 10
  43. margin 0
  44. top $navbarHeight
  45. left 0
  46. bottom 0
  47. box-sizing border-box
  48. border-right 1px solid $borderColor
  49. overflow-y auto
  50. {$contentClass}:not(.custom)
  51. @extend $wrapper
  52. > *:first-child
  53. margin-top $navbarHeight
  54. a:hover
  55. text-decoration underline
  56. p.demo
  57. padding 1rem 1.5rem
  58. border 1px solid #ddd
  59. border-radius 4px
  60. img
  61. max-width 100%
  62. {$contentClass}.custom
  63. padding 0
  64. margin 0
  65. img
  66. max-width 100%
  67. a
  68. font-weight 500
  69. color $accentColor
  70. text-decoration none
  71. p a code
  72. font-weight 400
  73. color $accentColor
  74. kbd
  75. background #eee
  76. border solid 0.15rem #ddd
  77. border-bottom solid 0.25rem #ddd
  78. border-radius 0.15rem
  79. padding 0 0.15em
  80. blockquote
  81. font-size 1rem
  82. color #999;
  83. border-left .2rem solid #dfe2e5
  84. margin 1rem 0
  85. padding .25rem 0 .25rem 1rem
  86. & > p
  87. margin 0
  88. ul, ol
  89. padding-left 1.2em
  90. strong
  91. font-weight 600
  92. h1, h2, h3, h4, h5, h6
  93. font-weight 600
  94. line-height 1.25
  95. {$contentClass}:not(.custom) > &
  96. margin-top (0.5rem - $navbarHeight)
  97. padding-top ($navbarHeight + 1rem)
  98. margin-bottom 0
  99. &:first-child
  100. margin-top -1.5rem
  101. margin-bottom 1rem
  102. + p, + pre, + .custom-block
  103. margin-top 2rem
  104. &:hover .header-anchor
  105. opacity: 1
  106. h1
  107. font-size 2.2rem
  108. h2
  109. font-size 1.65rem
  110. padding-bottom .3rem
  111. border-bottom 1px solid $borderColor
  112. h3
  113. font-size 1.35rem
  114. a.header-anchor
  115. font-size 0.85em
  116. float left
  117. margin-left -0.87em
  118. padding-right 0.23em
  119. margin-top 0.125em
  120. opacity 0
  121. &:hover
  122. text-decoration none
  123. code, kbd, .line-number
  124. font-family source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
  125. p, ul, ol
  126. line-height 1.7
  127. hr
  128. border 0
  129. border-top 1px solid $borderColor
  130. table
  131. border-collapse collapse
  132. margin 1rem 0
  133. display: block
  134. overflow-x: auto
  135. tr
  136. border-top 1px solid #dfe2e5
  137. &:nth-child(2n)
  138. background-color #f6f8fa
  139. th, td
  140. border 1px solid #dfe2e5
  141. padding .6em 1em
  142. .theme-container
  143. &.sidebar-open
  144. .sidebar-mask
  145. display: block
  146. &.no-navbar
  147. {$contentClass}:not(.custom) > h1, h2, h3, h4, h5, h6
  148. margin-top 1.5rem
  149. padding-top 0
  150. .sidebar
  151. top 0
  152. @media (min-width: ($MQMobile + 1px))
  153. .theme-container.no-sidebar
  154. .sidebar
  155. display none
  156. .page
  157. padding-left 0
  158. @require 'mobile.styl'