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