mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-30 12:24:19 +01:00
58 lines
1.6 KiB
SCSS
58 lines
1.6 KiB
SCSS
/*!
|
|
* Bootstrap Docs (http://getbootstrap.com)
|
|
* Copyright 2011-2014 Twitter, Inc.
|
|
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
|
* details, see http://creativecommons.org/licenses/by/3.0/.
|
|
*/
|
|
|
|
// Dev notes
|
|
//
|
|
// Background information on nomenclature and architecture decisions here.
|
|
//
|
|
// - Bootstrap 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.
|
|
//
|
|
// - 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.
|
|
|
|
|
|
// Load Bootstrap variables and mixins
|
|
@import "../../../scss/variables";
|
|
@import "../../../scss/mixins";
|
|
|
|
// Local docs variables
|
|
$bd-purple: #563d7c;
|
|
$bd-purple-light: #cdbfe3;
|
|
$bd-yellow: #ffe484;
|
|
$bd-danger: #d9534f;
|
|
$bd-warning: #f0ad4e;
|
|
$bd-info: #5bc0de;
|
|
|
|
// Load docs components
|
|
@import "layout";
|
|
@import "sidebar";
|
|
@import "booticon";
|
|
@import "homepage";
|
|
@import "ads";
|
|
@import "footer";
|
|
@import "social-buttons";
|
|
@import "page-header";
|
|
@import "component-examples";
|
|
@import "responsive-tests";
|
|
@import "buttons";
|
|
@import "callouts";
|
|
@import "examples";
|
|
@import "team";
|
|
@import "browser-bugs";
|
|
@import "brand";
|
|
@import "zeroclipboard";
|
|
|
|
// Load docs dependencies
|
|
@import "syntax";
|
|
@import "anchor";
|