twbs--bootstrap/docs/assets/scss/docs.scss

66 lines
1.9 KiB
SCSS
Raw Normal View History

/*!
* Bootstrap Docs (https://getbootstrap.com)
2016-12-31 15:20:11 +00:00
* Copyright 2011-2017 The Bootstrap Authors
* Copyright 2011-2017 Twitter, Inc.
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
2015-08-26 19:11:44 +00:00
* details, see https://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.
//
2016-01-19 10:49:16 +00: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 05:47:22 +00:00
//
// Happy Bootstrapping!
// Load Bootstrap variables and mixins
@import "../../../scss/variables";
@import "../../../scss/mixins";
// Local docs variables
2015-08-05 05:39:54 +00:00
$bd-purple: #563d7c;
2015-08-17 01:10:31 +00:00
$bd-purple-bright: lighten(saturate($bd-purple, 5%), 15%);
2015-08-05 05:39:54 +00:00
$bd-purple-light: #cdbfe3;
$bd-graphite: #2a2730;
2015-08-05 05:46:49 +00:00
$bd-graphite-light: lighten($bd-graphite, 40%);
2015-08-05 05:39:54 +00:00
$bd-yellow: #ffe484;
$bd-danger: #d9534f;
$bd-warning: #f0ad4e;
$bd-info: #5bc0de;
// Load docs components
@import "booticon";
@import "nav";
@import "masthead";
@import "featurettes";
@import "featured-sites";
@import "ads";
@import "content";
@import "page-header";
2015-09-04 19:46:47 +00:00
@import "skiplink";
@import "sidebar";
@import "footer";
@import "component-examples";
@import "responsive-tests";
@import "buttons";
@import "callouts";
@import "examples";
@import "team";
@import "browser-bugs";
@import "brand";
@import "clipboard-js";
// Load docs dependencies
@import "syntax";
@import "anchor";