0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-30 12:24:19 +01:00
Bootstrap/site/docs/4.1/assets/scss/docs.scss

52 lines
1.5 KiB
SCSS
Raw Normal View History

/*!
* Bootstrap Docs (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
2015-08-26 21:11:44 +02:00
* details, see https://creativecommons.org/licenses/by/3.0/.
*/
// Dev notes
//
// Background information on nomenclature and architecture decisions here.
//
2017-06-15 20:15:28 +02:00
// - Bootstrap functions, variables, and mixins are included for easy reuse.
// Doing so gives us access to the same core utilities provided by Bootstrap.
// For example, consistent media queries through those mixins.
//
2016-01-19 11:49:16 +01:00
// - Bootstrap's **docs variables** are prefixed with `$bd-`.
// These custom colors avoid collision with the components Bootstrap provides.
//
// - Classes are prefixed with `.bd-`.
// These classes indicate custom-built or modified components for the design
// and layout of the Bootstrap docs. They are not included in our builds.
2015-08-05 07:47:22 +02:00
//
// Happy Bootstrapping!
// Load Bootstrap variables and mixins
@import "../../../../../scss/functions";
@import "../../../../../scss/variables";
@import "../../../../../scss/mixins";
// Load docs components
2017-05-29 06:24:29 +02:00
@import "variables";
@import "nav";
@import "masthead";
@import "ads";
@import "content";
@import "skippy";
@import "sidebar";
@import "footer";
@import "component-examples";
@import "buttons";
@import "callouts";
@import "browser-bugs";
@import "brand";
2017-06-15 20:15:28 +02:00
@import "colors";
@import "clipboard-js";
// Load docs dependencies
@import "syntax";
@import "anchor";
@import "algolia";