d470dd47c16ddd19c07cf9ea2b6c6de2f147bca5.svn-base 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*!
  2. * Bootstrap Docs (http://getbootstrap.com)
  3. * Copyright 2011-2014 Twitter, Inc.
  4. * Licensed under the Creative Commons Attribution 3.0 Unported License. For
  5. * details, see http://creativecommons.org/licenses/by/3.0/.
  6. */
  7. // Dev notes
  8. //
  9. // Background information on nomenclature and architecture decisions here.
  10. //
  11. // - Bootstrap variables and mixins are included for easy reuse.
  12. // Doing so gives us access to the same core utilities provided by Bootstrap.
  13. // For example, consistent media queries through those mixins.
  14. //
  15. // - Bootstrap's **docs variables** are prefixed with `%bd-`.
  16. // These custom colors avoid collision with the components Bootstrap provides.
  17. //
  18. // - Classes are prefixed with `.bd-`.
  19. // These classes indicate custom-built or modified components for the design
  20. // and layout of the Bootstrap docs. They are not included in our builds.
  21. //
  22. // Happy Bootstrapping!
  23. // Load Bootstrap variables and mixins
  24. @import "../../../scss/variables";
  25. @import "../../../scss/mixins";
  26. // Local docs variables
  27. $bd-purple: #563d7c;
  28. $bd-purple-bright: lighten(saturate($bd-purple, 5%), 15%);
  29. $bd-purple-light: #cdbfe3;
  30. $bd-graphite: #2a2730;
  31. $bd-graphite-light: lighten($bd-graphite, 40%);
  32. $bd-yellow: #ffe484;
  33. $bd-danger: #d9534f;
  34. $bd-warning: #f0ad4e;
  35. $bd-info: #5bc0de;
  36. // Load docs components
  37. @import "booticon";
  38. @import "nav";
  39. @import "masthead";
  40. @import "featurettes";
  41. @import "featured-sites";
  42. @import "ads";
  43. @import "content";
  44. @import "page-header";
  45. @import "sidebar";
  46. @import "footer";
  47. @import "component-examples";
  48. @import "responsive-tests";
  49. @import "buttons";
  50. @import "callouts";
  51. @import "examples";
  52. @import "team";
  53. @import "browser-bugs";
  54. @import "brand";
  55. @import "zeroclipboard";
  56. // Load docs dependencies
  57. @import "syntax";
  58. @import "anchor";