2013-10-17 14:33:04 -04:00
|
|
|
/*!
|
2014-01-14 00:31:40 -05:00
|
|
|
* Bootstrap Docs (http://getbootstrap.com)
|
2014-01-06 19:05:24 -05:00
|
|
|
* Copyright 2011-2014 Twitter, Inc.
|
2013-10-17 17:11:40 -04:00
|
|
|
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
|
|
|
* details, see http://creativecommons.org/licenses/by/3.0/.
|
2013-10-17 14:33:04 -04:00
|
|
|
*/
|
2013-10-17 17:11:40 -04:00
|
|
|
|
2015-04-16 17:07:20 -04:00
|
|
|
// Dev notes
|
|
|
|
//
|
|
|
|
// Background information on nomenclature and architecture decisions here.
|
2015-04-16 17:57:49 -04:00
|
|
|
//
|
2015-04-16 17:07:20 -04:00
|
|
|
// - 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.
|
2013-02-12 15:16:32 -05:00
|
|
|
|
2014-07-09 05:40:05 -04:00
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
// Load Bootstrap variables and mixins
|
|
|
|
@import "../../../scss/variables";
|
|
|
|
@import "../../../scss/mixins";
|
2014-07-07 22:40:15 -04:00
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
// Local docs variables
|
2015-08-05 01:39:54 -04:00
|
|
|
$bd-purple: #563d7c;
|
|
|
|
$bd-purple-light: #cdbfe3;
|
|
|
|
$bd-graphite: #2a2730;
|
2015-08-05 01:46:49 -04:00
|
|
|
$bd-graphite-light: lighten($bd-graphite, 40%);
|
2015-08-05 01:39:54 -04:00
|
|
|
$bd-yellow: #ffe484;
|
|
|
|
$bd-danger: #d9534f;
|
|
|
|
$bd-warning: #f0ad4e;
|
|
|
|
$bd-info: #5bc0de;
|
2014-07-07 22:40:15 -04:00
|
|
|
|
2015-04-16 17:57:49 -04:00
|
|
|
// 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";
|