docs.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*!
  2. * Bootstrap Docs (https://getbootstrap.com/)
  3. * Copyright 2011-2021 The Bootstrap Authors
  4. * Copyright 2011-2021 Twitter, Inc.
  5. * Licensed under the Creative Commons Attribution 3.0 Unported License.
  6. * For 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 "navbar";
  31. @import "subnav";
  32. @import "masthead";
  33. @import "ads";
  34. @import "content";
  35. @import "skippy";
  36. @import "sidebar";
  37. @import "layout";
  38. @import "toc";
  39. @import "footer";
  40. @import "component-examples";
  41. @import "buttons";
  42. @import "callouts";
  43. @import "brand";
  44. @import "colors";
  45. @import "clipboard-js";
  46. @import "placeholder-img";
  47. // Load docs dependencies
  48. @import "syntax";
  49. @import "anchor";
  50. @import "algolia";