_variables.styl 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // Config
  2. support-for-ie = false
  3. vendor-prefixes = webkit moz ms official
  4. // Colors
  5. color-default = #565a5f
  6. color-grey = #999
  7. color-border = #eceff2
  8. color-link = #38b7ea
  9. color-background = #f5f8f9
  10. color-sidebar-text = #777
  11. color-sidebar-text-dark = #333
  12. color-widget-background = #ddd
  13. color-widget-border = #ccc
  14. // Fonts
  15. font-sans = "open sans", "Helvetica Neue", "Microsoft Yahei", Helvetica, Arial, sans-serif
  16. font-serif = Georgia, "Times New Roman", "Microsoft Yahei", serif
  17. font-mono = "Source Code Pro", Consolas, Monaco, Menlo, Consolas, monospace
  18. font-size = 14px
  19. line-height = 1.6em
  20. line-height-title = 1.3em
  21. // Header
  22. header-height = 64px
  23. header-sub-height = 48px
  24. logo-url = hexo-config("customize.logo.url")
  25. logo-width = 0px + hexo-config("customize.logo.width")
  26. logo-height = 0px + hexo-config("customize.logo.height")
  27. // Sidebar
  28. sidebar = hexo-config("customize.sidebar")
  29. thumbnail-default-small = 'images/thumb-default-small.png'
  30. // Profile bar
  31. profile = hexo-config("customize.profile")
  32. profile-avatar-size = 128px
  33. // Layout
  34. block-margin = 40px
  35. article-padding = 20px
  36. mobile-nav-width = 280px
  37. main-column = 7
  38. sidebar-column = 3
  39. profile-column = 3
  40. sidebar-column-tablet = 4
  41. if sidebar
  42. _sidebar-column = sidebar-column
  43. else
  44. _sidebar-column = 0
  45. if profile
  46. _profile-column = profile-column
  47. else
  48. _profile-column = 0
  49. // Grids
  50. column-width = 80px
  51. gutter-width = 20px
  52. if _sidebar-column is 0 and _profile-column is 0
  53. columns = 10
  54. main-column = 10
  55. else
  56. columns = main-column + _sidebar-column + _profile-column
  57. if sidebar
  58. main-column-tablet = 6
  59. if profile
  60. main-column-tablet = 9
  61. // Media queries
  62. mq-mini = "screen and (max-width: 559px)"
  63. mq-mobile = "screen and (min-width: 560px) and (max-width: 799px)"
  64. mq-tablet = "screen and (min-width: 800px) and (max-width: 1199px)"
  65. mq-normal = "screen and (min-width: 1200px)"
  66. // Code Highlight
  67. highlight = hexo-config("customize.highlight") || "tomorrow"
  68. // Miscellaneous
  69. color-twitter = #00aced
  70. color-facebook = #3b5998
  71. color-pinterest = #cb2027
  72. color-google = #dd4b39