You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.scss 1.8 kB

3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. ---
  2. # Only the main Sass file needs front matter (the dashes are enough)
  3. ---
  4. @charset "utf-8";
  5. $yarn-blue-light: #badae8;
  6. $yarn-blue: #2c8ebb;
  7. $yarn-blue-dark: #2188b6;
  8. $yarn-blue-darker: #1b7eab;
  9. $yarn-blue-darkest: #1476a2;
  10. $text-muted: #52585e;
  11. $text-muted-er: #6d767d;
  12. $navbar-light-color: rgba(0, 0, 0, 0.6);
  13. $navbar-light-hover-color: rgba(0, 0, 0, 0.7);
  14. $navbar-light-active-color: rgba(0, 0, 0, 0.8);
  15. $navbar-light-disabled-color: rgba(0, 0, 0, 0.3);
  16. $brand-primary: $yarn-blue;
  17. $progress-bar-color: $brand-primary;
  18. $link-color: saturate(darken($brand-primary, 8%), 20%);
  19. $link-color-hover: saturate(darken($brand-primary, 30%), 20%);
  20. $npm-red: #c12127;
  21. @import 'bootstrap/scss/bootstrap.scss';
  22. @import '_base.scss';
  23. @import '_news.scss';
  24. @import '_navbar.scss';
  25. @import '_icons.scss';
  26. @import '_heros.scss';
  27. @import '_features.scss';
  28. @import '_featurettes.scss';
  29. @import '_guides.scss';
  30. @import '_code.scss';
  31. @import '_users.scss';
  32. @import '_404.scss';
  33. @import '_tabs.scss';
  34. @import '_navs.scss';
  35. @import '_cards.scss';
  36. @import '_badges.scss';
  37. @import '_toc.scss';
  38. @import '_footer.scss';
  39. @import '_search.scss';
  40. @import '_docsearch.scss';
  41. @import '_details.scss';
  42. @import '_readmore.scss';
  43. @import '_copyable.scss';
  44. @import '_highlight.scss';
  45. @import "_install.scss";
  46. // should come from bootstrap but it doesn't
  47. .justify-items-between {
  48. -webkit-box-pack: justify;
  49. -webkit-justify-content: space-between;
  50. -ms-flex-pack: justify;
  51. justify-content: space-between;
  52. }
  53. .align-items-baseline {
  54. -webkit-box-align: baseline;
  55. -ms-flex-align: baseline;
  56. align-items: baseline;
  57. }
  58. .flex-column {
  59. flex-direction: column;
  60. }
  61. .user-select-none {
  62. -webkit-user-select: none;
  63. -moz-user-select: none;
  64. -ms-user-select: none;
  65. user-select: none;
  66. }

js yarn包管理组件依赖分析

Contributors (1)