docs.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*!
  2. * Bootstrap Docs (https://getbootstrap.com)
  3. * Copyright 2011-2018 The Bootstrap Authors
  4. * Copyright 2011-2018 Twitter, Inc.
  5. * Licensed under the Creative Commons Attribution 3.0 Unported License. For
  6. * details, see https://creativecommons.org/licenses/by/3.0/.
  7. */
  8. // Dev notes
  9. //
  10. // Background information on nomenclature and architecture decisions here.
  11. //
  12. // - Bootstrap functions, variables, and mixins are included for easy reuse.
  13. // Doing so gives us access to the same core utilities provided by Bootstrap.
  14. // For example, consistent media queries through those mixins.
  15. //
  16. // - Bootstrap's **docs variables** are prefixed with `$bd-`.
  17. // These custom colors avoid collision with the components Bootstrap provides.
  18. //
  19. // - Classes are prefixed with `.bd-`.
  20. // These classes indicate custom-built or modified components for the design
  21. // and layout of the Bootstrap docs. They are not included in our builds.
  22. //
  23. // Happy Bootstrapping!
  24. // Load Bootstrap variables and mixins
  25. @import "../../scss/functions";
  26. @import "../../scss/variables";
  27. @import "../../scss/mixins";
  28. // Load docs components
  29. @import "variables";
  30. @import "nav";
  31. @import "masthead";
  32. @import "ads";
  33. @import "content";
  34. @import "skiplink";
  35. @import "sidebar";
  36. @import "footer";
  37. @import "component-examples";
  38. @import "buttons";
  39. @import "callouts";
  40. @import "examples";
  41. @import "browser-bugs";
  42. @import "brand";
  43. @import "colors";
  44. @import "clipboard-js";
  45. // Load docs dependencies
  46. @import "syntax";
  47. @import "anchor";
  48. @import "algolia";