jekyll-docs-theme 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +6 -2
- data/_includes/footer.html +5 -3
- data/_includes/head.html +2 -2
- data/_includes/jumbotron.html +4 -2
- data/assets/css/docs.css +1521 -1
- data/assets/css/styles.scss +4 -0
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3b4731715e2e8530826dec2bb48c5f1abc7834b8cbca7e5bd266aa9a9a3896cb
|
4
|
+
data.tar.gz: 11af0028253c5e2efd4b231021136ab08ba52acfda55ca735f8003087c711eed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4483808e72ba1e00b795f630d0d108189e03a3eb2614c2ad2c7d8b1ddf322e7d492479c9391fe62225d362d23a8aea63fea92bd227d8e8871f9aa37f8bb6bb6d
|
7
|
+
data.tar.gz: dfaa428350430c4c3c555da3b11e6f1a1f33797e5287d7bd635c56c3c3e03c6afff85e865a7b3d7e9785af051b582a484a2606f2841394cd6e74e9cfda391ec7
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Jekyll Docs Theme
|
2
2
|
|
3
|
-
> This is a [Jekyll theme](https://github.com/allejo/jekyll-docs-theme) based on [mistic100's modification](https://github.com/mistic100/jekyll-
|
3
|
+
> This is a [Jekyll theme](https://github.com/allejo/jekyll-docs-theme) based on [mistic100's modification](https://github.com/mistic100/jekyll-bootstrap-doc) of the official Bootstrap documentation from a few years back.
|
4
4
|
|
5
5
|
Jekyll Docs Theme is provided as a theme for writing documentation for your projects instead of having a single large README file or several markdown files stored in a not so user-friendly manner.
|
6
6
|
|
@@ -10,6 +10,10 @@ This theme is still in development but is kept fairly stable; just note, there a
|
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
13
|
+
Fork this project
|
14
|
+
|
15
|
+
-or-
|
16
|
+
|
13
17
|
Add this line to your Jekyll site's Gemfile:
|
14
18
|
|
15
19
|
```ruby
|
@@ -34,7 +38,7 @@ Or install it yourself as:
|
|
34
38
|
|
35
39
|
To set up your environment to develop this theme, run `bundle install`.
|
36
40
|
|
37
|
-
To develop on this theme, run `
|
41
|
+
To develop on this theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`.
|
38
42
|
|
39
43
|
## License
|
40
44
|
|
data/_includes/footer.html
CHANGED
@@ -5,14 +5,14 @@
|
|
5
5
|
{% if site.social.github.user and site.social.github.repo %}
|
6
6
|
<li>
|
7
7
|
<iframe class="github-btn"
|
8
|
-
src="
|
8
|
+
src="https://ghbtns.com/github-btn.html?user={{ site.social.github.user }}&repo={{ site.social.github.repo }}&type=watch&count=true"
|
9
9
|
width="90"
|
10
10
|
height="20"
|
11
11
|
title="Star on GitHub"></iframe>
|
12
12
|
</li>
|
13
13
|
<li>
|
14
14
|
<iframe class="github-btn"
|
15
|
-
src="
|
15
|
+
src="https://ghbtns.com/github-btn.html?user={{ site.social.github.user }}&repo={{ site.social.github.repo }}&type=fork&count=true"
|
16
16
|
width="90"
|
17
17
|
height="20"
|
18
18
|
title="Fork on GitHub"></iframe>
|
@@ -65,7 +65,9 @@
|
|
65
65
|
</p>
|
66
66
|
|
67
67
|
<ul class="bs-docs-footer-links muted">
|
68
|
-
|
68
|
+
{% if site.project.version %}
|
69
|
+
<li>Currently v{{ site.project.version }}</li>
|
70
|
+
{% endif %}
|
69
71
|
{% for l in site.links.footer %}
|
70
72
|
<li>·</li>
|
71
73
|
<li>
|
data/_includes/head.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<meta name="description"
|
7
7
|
content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
8
8
|
|
9
|
-
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.
|
9
|
+
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
10
10
|
<link rel="stylesheet" href="{{ "/assets/css/docs.css" | relative_url }}">
|
11
11
|
<link rel="stylesheet" href="{{ "/assets/css/styles.css" | relative_url }}">
|
12
12
|
|
@@ -21,6 +21,6 @@
|
|
21
21
|
</style>
|
22
22
|
|
23
23
|
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
|
24
|
-
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.
|
24
|
+
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
25
25
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/stickyfill/1.1.4/stickyfill.min.js"></script>
|
26
26
|
<script src="{{ '/assets/js/docs.min.js' | relative_url }}"></script>
|
data/_includes/jumbotron.html
CHANGED
@@ -6,7 +6,9 @@
|
|
6
6
|
<p class="lead">
|
7
7
|
<a href="{{ site.project.download_url }}" class="btn btn-outline-inverse btn-lg">Download</a>
|
8
8
|
</p>
|
9
|
-
|
9
|
+
{% if site.project.version %}
|
10
|
+
<p class="version">Currently v{{ site.project.version }}</p>
|
11
|
+
{% endif %}
|
10
12
|
</div>
|
11
13
|
</div>
|
12
14
|
{% else %}
|
@@ -16,4 +18,4 @@
|
|
16
18
|
<p>{{ page.description }}</p>
|
17
19
|
</div>
|
18
20
|
</div>
|
19
|
-
{% endif %}
|
21
|
+
{% endif %}
|
data/assets/css/docs.css
CHANGED
@@ -4,4 +4,1524 @@
|
|
4
4
|
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
5
5
|
* details, see http://creativecommons.org/licenses/by/3.0/.
|
6
6
|
*/
|
7
|
-
body{position:relative}.table code{font-size:13px;font-weight:400}.btn-outline{color:#563d7c;background-color:transparent;border-color:#563d7c}.btn-outline:hover,.btn-outline:focus,.btn-outline:active{color:#fff;background-color:#563d7c;border-color:#563d7c}.btn-outline-inverse{color:#fff;background-color:transparent;border-color:#cdbfe3}.btn-outline-inverse:hover,.btn-outline-inverse:focus,.btn-outline-inverse:active{color:#563d7c;text-shadow:none;background-color:#fff;border-color:#fff}.bs-docs-booticon{display:block;font-weight:500;color:#fff;background-color:#563d7c;border-radius:15%;cursor:default;text-align:center}.bs-docs-booticon-sm{width:30px;height:30px;font-size:20px;line-height:28px}.bs-docs-booticon-lg{width:144px;height:144px;font-size:108px;line-height:140px}.bs-docs-booticon-inverse{color:#563d7c;background-color:#fff}.bs-docs-booticon-outline{background-color:transparent;border:1px solid #cdbfe3}.bs-docs-nav{margin-bottom:0;background-color:#fff;border-bottom:0}.bs-home-nav .bs-nav-b{display:none}.bs-docs-nav .navbar-brand,.bs-docs-nav .navbar-nav>li>a{color:#563d7c;font-weight:500}.bs-docs-nav .navbar-nav>li>a:hover,.bs-docs-nav .navbar-nav>.active>a,.bs-docs-nav .navbar-nav>.active>a:hover{color:#463265;background-color:#f9f9f9}.bs-docs-nav .navbar-toggle .icon-bar{background-color:#563d7c}.bs-docs-nav .navbar-header .navbar-toggle{border-color:#fff}.bs-docs-nav .navbar-header .navbar-toggle:hover,.bs-docs-nav .navbar-header .navbar-toggle:focus{background-color:#f9f9f9;border-color:#f9f9f9}.bs-docs-footer{padding-top:40px;padding-bottom:40px;margin-top:100px;color:#777;text-align:center;border-top:1px solid #e5e5e5}.bs-docs-footer-links{margin-top:20px;padding-left:0;color:#999}.bs-docs-footer-links li{display:inline;padding:0 2px}.bs-docs-footer-links li:first-child{padding-left:0}@media (min-width:768px){.bs-docs-footer p{margin-bottom:0}}.bs-docs-social{margin-bottom:20px;text-align:center}.bs-docs-social-buttons{display:inline-block;margin-bottom:0;padding-left:0;list-style:none}.bs-docs-social-buttons li{display:inline-block;line-height:1;padding:5px 8px}.bs-docs-social-buttons .twitter-follow-button{width:225px!important}.bs-docs-social-buttons .twitter-share-button{width:98px!important}.github-btn{border:0;overflow:hidden}.bs-docs-masthead,.bs-docs-header{position:relative;padding:30px 15px;color:#cdbfe3;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,.1);background-color:#6f5499;background-image:-webkit-linear-gradient(top,#563d7c 0,#6f5499 100%);background-image:linear-gradient(to bottom,#563d7c 0,#6f5499 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0)}.bs-docs-masthead .bs-docs-booticon{margin:0 auto 30px}.bs-docs-masthead h1{font-weight:300;line-height:1;color:#fff}.bs-docs-masthead .lead{margin:0 auto 30px;font-size:20px;color:#fff}.bs-docs-masthead .version{margin-top:-15px;margin-bottom:30px;color:#9783b9}.bs-docs-masthead .btn{width:100%;padding:15px 30px;font-size:20px}@media (min-width:480px){.bs-docs-masthead .btn{width:auto}}@media (min-width:768px){.bs-docs-masthead{padding-top:80px;padding-bottom:80px}.bs-docs-masthead h1{font-size:60px}.bs-docs-masthead .lead{font-size:24px}}@media (min-width:992px){.bs-docs-masthead .lead{width:80%;font-size:30px}}.bs-docs-header{margin-bottom:40px;font-size:20px}.bs-docs-header h1{margin-top:0;color:#fff}.bs-docs-header p{margin-bottom:0;font-weight:300;line-height:1.4}.bs-docs-header .container{position:relative}@media (min-width:768px){.bs-docs-header{padding-top:60px;padding-bottom:60px;font-size:24px;text-align:left}.bs-docs-header h1{font-size:60px;line-height:1}}@media (min-width:992px){.bs-docs-header h1,.bs-docs-header p{margin-right:380px}}.carbonad{width:auto!important;margin:30px -30px -31px!important;padding:20px!important;overflow:hidden;height:auto!important;font-size:13px!important;line-height:16px!important;text-align:left;background:transparent!important;border:solid #866ab3!important;border-width:1px 0!important}.carbonad-img{margin:0!important}.carbonad-text,.carbonad-tag{float:none!important;display:block!important;width:auto!important;height:auto!important;margin-left:145px!important;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important}.carbonad-text{padding-top:0!important}.carbonad-tag{color:inherit!important;text-align:left!important}.carbonad-text a,.carbonad-tag a{color:#fff!important}.carbonad #azcarbon>img{display:none}@media (min-width:480px){.carbonad{width:330px!important;margin:20px auto!important;border-radius:4px;border-width:1px!important}.bs-docs-masthead .carbonad{margin:50px auto 0!important}}@media (min-width:768px){.carbonad{margin-left:0!important;margin-right:0!important}}@media (min-width:992px){.carbonad{position:absolute;top:0;right:15px;margin:0!important;padding:15px!important;width:330px!important}.bs-docs-masthead .carbonad{position:static}}.bs-docs-featurette{padding-top:40px;padding-bottom:40px;font-size:16px;line-height:1.5;color:#555;text-align:center;background-color:#fff;border-bottom:1px solid #e5e5e5}.bs-docs-featurette+.bs-docs-footer{margin-top:0;border-top:0}.bs-docs-featurette-title{font-size:30px;font-weight:400;color:#333;margin-bottom:5px}.half-rule{width:100px;margin:40px auto}.bs-docs-featurette h3{font-weight:400;color:#333;margin-bottom:5px}.bs-docs-featurette-img{display:block;margin-bottom:20px;color:#333}.bs-docs-featurette-img:hover{text-decoration:none;color:#428bca}.bs-docs-featurette-img img{display:block;margin-bottom:15px}.bs-docs-featured-sites{margin-left:-1px;margin-right:-1px}.bs-docs-featured-sites .col-sm-3{padding-left:1px;padding-right:1px}@media (min-width:480px){.bs-docs-featurette .img-responsive{margin-top:30px}}@media (min-width:768px){.bs-docs-featurette{padding-top:100px;padding-bottom:100px}.bs-docs-featurette-title{font-size:40px}.bs-docs-featurette .lead{margin-left:auto;margin-right:auto;max-width:80%}.bs-docs-featured-sites .col-sm-3:first-child img{border-top-left-radius:4px;border-bottom-left-radius:4px}.bs-docs-featured-sites .col-sm-3:last-child img{border-top-right-radius:4px;border-bottom-right-radius:4px}.bs-docs-featurette .img-responsive{margin-top:0}}.bs-docs-sidebar.affix{position:static}@media (min-width:768px){.bs-docs-sidebar{padding-left:20px}}.bs-docs-sidenav{margin-top:20px;margin-bottom:20px}.bs-docs-sidebar .nav>li>a{display:block;font-size:13px;font-weight:500;color:#999;padding:4px 20px}.bs-docs-sidebar .nav>li>a:hover,.bs-docs-sidebar .nav>li>a:focus{padding-left:19px;color:#563d7c;text-decoration:none;background-color:transparent;border-left:1px solid #563d7c}.bs-docs-sidebar .nav>.active>a,.bs-docs-sidebar .nav>.active:hover>a,.bs-docs-sidebar .nav>.active:focus>a{padding-left:18px;font-weight:700;color:#563d7c;background-color:transparent;border-left:2px solid #563d7c}.bs-docs-sidebar .nav .nav{display:none;padding-bottom:10px}.bs-docs-sidebar .nav .nav>li>a{padding-top:1px;padding-bottom:1px;padding-left:30px;font-size:12px;font-weight:400}.bs-docs-sidebar .nav .nav>li>a:hover,.bs-docs-sidebar .nav .nav>li>a:focus{padding-left:29px}.bs-docs-sidebar .nav .nav>.active>a,.bs-docs-sidebar .nav .nav>.active:hover>a,.bs-docs-sidebar .nav .nav>.active:focus>a{font-weight:500;padding-left:28px}.back-to-top{display:none;margin-top:10px;margin-left:10px;padding:4px 10px;font-size:12px;font-weight:500;color:#999}.back-to-top:hover{text-decoration:none;color:#563d7c}@media (min-width:768px){.back-to-top{display:block}}@media (min-width:992px){.bs-docs-sidebar .nav>.active>ul{display:block}.bs-docs-sidebar.affix,.bs-docs-sidebar.affix-bottom{width:213px}.bs-docs-sidebar.affix{position:fixed;top:20px}.bs-docs-sidebar.affix-bottom{position:absolute}.bs-docs-sidebar.affix-bottom .bs-docs-sidenav,.bs-docs-sidebar.affix .bs-docs-sidenav{margin-top:0;margin-bottom:0}}@media (min-width:1200px){.bs-docs-sidebar.affix-bottom,.bs-docs-sidebar.affix{width:263px}}.bs-docs-section{margin-bottom:60px}.bs-docs-section:last-child{margin-bottom:0}h1[id]{margin-top:0;padding-top:20px}.bs-callout{margin:20px 0;padding:20px;border-left:3px solid #eee}.bs-callout h4{margin-top:0;margin-bottom:5px}.bs-callout p:last-child{margin-bottom:0}.bs-callout code{background-color:#fff;border-radius:3px}.bs-callout-danger{background-color:#fdf7f7;border-color:#d9534f}.bs-callout-danger h4{color:#d9534f}.bs-callout-warning{background-color:#fcf8f2;border-color:#f0ad4e}.bs-callout-warning h4{color:#f0ad4e}.bs-callout-info{background-color:#f4f8fa;border-color:#5bc0de}.bs-callout-info h4{color:#5bc0de}.color-swatches{margin:0 -5px;overflow:hidden}.color-swatch{float:left;width:60px;height:60px;margin:0 5px;border-radius:3px}@media (min-width:768px){.color-swatch{width:100px;height:100px}}.color-swatches .gray-darker{background-color:#222}.color-swatches .gray-dark{background-color:#333}.color-swatches .gray{background-color:#555}.color-swatches .gray-light{background-color:#999}.color-swatches .gray-lighter{background-color:#eee}.color-swatches .brand-primary{background-color:#428bca}.color-swatches .brand-success{background-color:#5cb85c}.color-swatches .brand-warning{background-color:#f0ad4e}.color-swatches .brand-danger{background-color:#d9534f}.color-swatches .brand-info{background-color:#5bc0de}.color-swatches .bs-purple{background-color:#563d7c}.color-swatches .bs-purple-light{background-color:#c7bfd3}.color-swatches .bs-purple-lighter{background-color:#e5e1ea}.color-swatches .bs-gray{background-color:#f9f9f9}.bs-team .team-member{color:#555;line-height:32px}.bs-team .team-member:hover{color:#333;text-decoration:none}.bs-team .github-btn{float:right;margin-top:6px;width:180px;height:20px}.bs-team img{float:left;width:32px;margin-right:10px;border-radius:4px}.show-grid{margin-bottom:15px}.show-grid [class^=col-]{padding-top:10px;padding-bottom:10px;background-color:#eee;background-color:rgba(86,61,124,.15);border:1px solid #ddd;border:1px solid rgba(86,61,124,.2)}.bs-example{position:relative;padding:45px 15px 15px;margin:0 -15px 15px;background-color:#fafafa;box-shadow:inset 0 3px 6px rgba(0,0,0,.05);border-color:#e5e5e5 #eee #eee;border-style:solid;border-width:1px 0}.bs-example:after{content:"Example";position:absolute;top:15px;left:15px;font-size:12px;font-weight:700;color:#bbb;text-transform:uppercase;letter-spacing:1px}.bs-example+.highlight{margin:-15px -15px 15px;border-radius:0;border-width:0 0 1px}@media (min-width:768px){.bs-example{margin-left:0;margin-right:0;background-color:#fff;border-width:1px;border-color:#ddd;border-radius:4px 4px 0 0;box-shadow:none}.bs-example+.highlight{margin-top:-16px;margin-left:0;margin-right:0;border-width:1px;border-bottom-left-radius:4px;border-bottom-right-radius:4px}}.bs-example .container{width:auto}.bs-example>p:last-child,.bs-example>ul:last-child,.bs-example>ol:last-child,.bs-example>blockquote:last-child,.bs-example>.form-control:last-child,.bs-example>.table:last-child,.bs-example>.navbar:last-child,.bs-example>.jumbotron:last-child,.bs-example>.alert:last-child,.bs-example>.panel:last-child,.bs-example>.list-group:last-child,.bs-example>.well:last-child,.bs-example>.progress:last-child,.bs-example>.table-responsive:last-child>.table{margin-bottom:0}.bs-example>p>.close{float:none}.bs-example-type .table .type-info{color:#999;vertical-align:middle}.bs-example-type .table td{padding:15px 0;border-color:#eee}.bs-example-type .table tr:first-child td{border-top:0}.bs-example-type h1,.bs-example-type h2,.bs-example-type h3,.bs-example-type h4,.bs-example-type h5,.bs-example-type h6{margin:0}.bs-example-bg-classes p{padding:15px}.bs-example>.img-circle,.bs-example>.img-rounded,.bs-example>.img-thumbnail{margin:5px}.bs-example>.table-responsive>.table{background-color:#fff}.bs-example>.btn,.bs-example>.btn-group{margin-top:5px;margin-bottom:5px}.bs-example>.btn-toolbar+.btn-toolbar{margin-top:10px}.bs-example-control-sizing select,.bs-example-control-sizing input[type=text]+input[type=text]{margin-top:10px}.bs-example-form .input-group{margin-bottom:10px}.bs-example>textarea.form-control{resize:vertical}.bs-example>.list-group{max-width:400px}.bs-example .navbar:last-child{margin-bottom:0}.bs-navbar-top-example,.bs-navbar-bottom-example{z-index:1;padding:0;overflow:hidden}.bs-navbar-top-example .navbar-header,.bs-navbar-bottom-example .navbar-header{margin-left:0}.bs-navbar-top-example .navbar-fixed-top,.bs-navbar-bottom-example .navbar-fixed-bottom{position:relative;margin-left:0;margin-right:0}.bs-navbar-top-example{padding-bottom:45px}.bs-navbar-top-example:after{top:auto;bottom:15px}.bs-navbar-top-example .navbar-fixed-top{top:-1px}.bs-navbar-bottom-example{padding-top:45px}.bs-navbar-bottom-example .navbar-fixed-bottom{bottom:-1px}.bs-navbar-bottom-example .navbar{margin-bottom:0}@media (min-width:768px){.bs-navbar-top-example .navbar-fixed-top,.bs-navbar-bottom-example .navbar-fixed-bottom{position:absolute}.bs-navbar-top-example{border-radius:0 0 4px 4px}.bs-navbar-bottom-example{border-radius:4px 4px 0 0}}.bs-example .pagination{margin-top:10px;margin-bottom:10px}.bs-example>.pager{margin-top:0}.bs-example-modal{background-color:#f5f5f5}.bs-example-modal .modal{position:relative;top:auto;right:auto;left:auto;bottom:auto;z-index:1;display:block}.bs-example-modal .modal-dialog{left:auto;margin-left:auto;margin-right:auto}.bs-example>.dropdown>.dropdown-menu{position:static;display:block;margin-bottom:5px}.bs-example-tabs .nav-tabs{margin-bottom:15px}.bs-example-tooltips{text-align:center}.bs-example-tooltips>.btn{margin-top:5px;margin-bottom:5px}.bs-example-popover{padding-bottom:24px;background-color:#f9f9f9}.bs-example-popover .popover{position:relative;display:block;float:left;width:260px;margin:20px}.scrollspy-example{position:relative;height:200px;margin-top:10px;overflow:auto}.highlight{padding:9px 14px;margin-bottom:14px;background-color:#f7f7f9;border:1px solid #e1e1e8;border-radius:4px}.highlight pre{padding:0;margin-top:0;margin-bottom:0;background-color:transparent;border:0;white-space:nowrap}.highlight pre code{font-size:inherit;color:#333}.highlight pre .lineno{display:inline-block;width:22px;padding-right:5px;margin-right:10px;text-align:right;color:#bebec5}.table-responsive .highlight pre{white-space:normal}.bs-table th small,.responsive-utilities th small{display:block;font-weight:400;color:#999}.responsive-utilities tbody th{font-weight:400}.responsive-utilities td{text-align:center}.responsive-utilities td.is-visible{color:#468847;background-color:#dff0d8!important}.responsive-utilities td.is-hidden{color:#ccc;background-color:#f9f9f9!important}.responsive-utilities-test{margin-top:5px}.responsive-utilities-test .col-xs-6{margin-bottom:10px}.responsive-utilities-test span{display:block;padding:15px 10px;font-size:14px;font-weight:700;line-height:1.1;text-align:center;border-radius:4px}.visible-on .col-xs-6 .hidden-xs,.visible-on .col-xs-6 .hidden-sm,.visible-on .col-xs-6 .hidden-md,.visible-on .col-xs-6 .hidden-lg,.hidden-on .col-xs-6 .hidden-xs,.hidden-on .col-xs-6 .hidden-sm,.hidden-on .col-xs-6 .hidden-md,.hidden-on .col-xs-6 .hidden-lg{color:#999;border:1px solid #ddd}.visible-on .col-xs-6 .visible-xs,.visible-on .col-xs-6 .visible-sm,.visible-on .col-xs-6 .visible-md,.visible-on .col-xs-6 .visible-lg,.hidden-on .col-xs-6 .visible-xs,.hidden-on .col-xs-6 .visible-sm,.hidden-on .col-xs-6 .visible-md,.hidden-on .col-xs-6 .visible-lg{color:#468847;background-color:#dff0d8;border:1px solid #d6e9c6}.bs-glyphicons{margin:0 -19px 20px -16px;overflow:hidden}.bs-glyphicons-list{padding-left:0;list-style:none}.bs-glyphicons li{float:left;width:25%;height:115px;padding:10px;font-size:10px;line-height:1.4;text-align:center;border:1px solid #fff;background-color:#f9f9f9}.bs-glyphicons .glyphicon{margin-top:5px;margin-bottom:10px;font-size:24px}.bs-glyphicons .glyphicon-class{display:block;text-align:center;word-wrap:break-word}.bs-glyphicons li:hover{color:#fff;background-color:#563d7c}@media (min-width:768px){.bs-glyphicons{margin-left:0;margin-right:0}.bs-glyphicons li{width:12.5%;font-size:12px}}.bs-customizer .toggle{float:right;margin-top:25px}.bs-customizer label{margin-top:10px;font-weight:500;color:#555}.bs-customizer h2{margin-top:0;margin-bottom:5px;padding-top:30px}.bs-customizer h3{margin-bottom:0}.bs-customizer h4{margin-top:15px;margin-bottom:0}.bs-customizer .bs-callout h4{margin-top:0;margin-bottom:5px}.bs-customizer input[type=text]{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;background-color:#fafafa}.bs-customizer .help-block{font-size:12px;margin-bottom:5px}#less-section label{font-weight:400}.bs-customizer-input{float:left;width:33.333333%;padding-left:15px;padding-right:15px}.bs-customize-download .btn-outline{padding:20px}.bs-customizer-alert{position:fixed;top:0;left:0;right:0;z-index:1030;padding:15px 0;color:#fff;background-color:#d9534f;box-shadow:inset 0 1px 0 rgba(255,255,255,.25);border-bottom:1px solid #b94441}.bs-customizer-alert .close{margin-top:-4px;font-size:24px}.bs-customizer-alert p{margin-bottom:0}.bs-customizer-alert .glyphicon{margin-right:5px}.bs-customizer-alert pre{margin:10px 0 0;color:#fff;background-color:#a83c3a;border-color:#973634;box-shadow:inset 0 2px 4px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}.bs-brand-logos{display:table;width:100%;margin-bottom:15px;overflow:hidden;color:#563d7c;background-color:#f9f9f9;border-radius:4px}.bs-brand-item{padding:60px 0;text-align:center}.bs-brand-item+.bs-brand-item{border-top:1px solid #fff}.bs-brand-logos .inverse{color:#fff;background-color:#563d7c}.bs-brand-item h1,.bs-brand-item h3{margin-top:0;margin-bottom:0}.bs-brand-item .bs-docs-booticon{margin-left:auto;margin-right:auto}.bs-brand-item .glyphicon{width:30px;height:30px;margin:10px auto -10px;line-height:30px;color:#fff;border-radius:50%}.bs-brand-item .glyphicon-ok{background-color:#5cb85c}.bs-brand-item .glyphicon-remove{background-color:#d9534f}@media (min-width:768px){.bs-brand-item{display:table-cell;width:1%}.bs-brand-item+.bs-brand-item{border-top:0;border-left:1px solid #fff}.bs-brand-item h1{font-size:60px}}.bs-examples .thumbnail{margin-bottom:10px}.bs-examples h4{margin-bottom:5px}.bs-examples p{margin-bottom:20px}#focusedInput{border-color:#ccc;border-color:rgba(82,168,236,.8);outline:0;outline:thin dotted \9;-moz-box-shadow:0 0 8px rgba(82,168,236,.6);box-shadow:0 0 8px rgba(82,168,236,.6)}.hll{background-color:#ffc}.c{color:#999}.err{color:#A00;background-color:#FAA}.k{color:#069}.o{color:#555}.cm{color:#999}.cp{color:#099}.c1{color:#999}.cs{color:#999}.gd{background-color:#FCC;border:1px solid #C00}.ge{font-style:italic}.gr{color:red}.gh{color:#030}.gi{background-color:#CFC;border:1px solid #0C0}.go{color:#AAA}.gp{color:#009}.gu{color:#030}.gt{color:#9C6}.kc{color:#069}.kd{color:#069}.kn{color:#069}.kp{color:#069}.kr{color:#069}.kt{color:#078}.m{color:#F60}.s{color:#d44950}.na{color:#4f9fcf}.nb{color:#366}.nc{color:#0A8}.no{color:#360}.nd{color:#99F}.ni{color:#999}.ne{color:#C00}.nf{color:#C0F}.nl{color:#99F}.nn{color:#0CF}.nt{color:#2f6f9f}.nv{color:#033}.ow{color:#000}.w{color:#bbb}.mf{color:#F60}.mh{color:#F60}.mi{color:#F60}.mo{color:#F60}.sb{color:#C30}.sc{color:#C30}.sd{color:#C30;font-style:italic}.s2{color:#C30}.se{color:#C30}.sh{color:#C30}.si{color:#A00}.sx{color:#C30}.sr{color:#3AA}.s1{color:#C30}.ss{color:#FC3}.bp{color:#366}.vc{color:#033}.vg{color:#033}.vi{color:#033}.il{color:#F60}.css .o,.css .o+.nt,.css .nt+.nt{color:#999}
|
7
|
+
|
8
|
+
body {
|
9
|
+
position: relative
|
10
|
+
}
|
11
|
+
|
12
|
+
.table code {
|
13
|
+
font-size: 13px;
|
14
|
+
font-weight: 400
|
15
|
+
}
|
16
|
+
|
17
|
+
.btn-outline {
|
18
|
+
color: #563d7c;
|
19
|
+
background-color: transparent;
|
20
|
+
border-color: #563d7c
|
21
|
+
}
|
22
|
+
|
23
|
+
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
|
24
|
+
color: #fff;
|
25
|
+
background-color: #563d7c;
|
26
|
+
border-color: #563d7c
|
27
|
+
}
|
28
|
+
|
29
|
+
.btn-outline-inverse {
|
30
|
+
color: #fff;
|
31
|
+
background-color: transparent;
|
32
|
+
border-color: #cdbfe3
|
33
|
+
}
|
34
|
+
|
35
|
+
.btn-outline-inverse:hover, .btn-outline-inverse:focus, .btn-outline-inverse:active {
|
36
|
+
color: #563d7c;
|
37
|
+
text-shadow: none;
|
38
|
+
background-color: #fff;
|
39
|
+
border-color: #fff
|
40
|
+
}
|
41
|
+
|
42
|
+
.bs-docs-booticon {
|
43
|
+
display: block;
|
44
|
+
font-weight: 500;
|
45
|
+
color: #fff;
|
46
|
+
background-color: #563d7c;
|
47
|
+
border-radius: 15%;
|
48
|
+
cursor: default;
|
49
|
+
text-align: center
|
50
|
+
}
|
51
|
+
|
52
|
+
.bs-docs-booticon-sm {
|
53
|
+
width: 30px;
|
54
|
+
height: 30px;
|
55
|
+
font-size: 20px;
|
56
|
+
line-height: 28px
|
57
|
+
}
|
58
|
+
|
59
|
+
.bs-docs-booticon-lg {
|
60
|
+
width: 144px;
|
61
|
+
height: 144px;
|
62
|
+
font-size: 108px;
|
63
|
+
line-height: 140px
|
64
|
+
}
|
65
|
+
|
66
|
+
.bs-docs-booticon-inverse {
|
67
|
+
color: #563d7c;
|
68
|
+
background-color: #fff
|
69
|
+
}
|
70
|
+
|
71
|
+
.bs-docs-booticon-outline {
|
72
|
+
background-color: transparent;
|
73
|
+
border: 1px solid #cdbfe3
|
74
|
+
}
|
75
|
+
|
76
|
+
.bs-docs-nav {
|
77
|
+
margin-bottom: 0;
|
78
|
+
background-color: #fff;
|
79
|
+
border-bottom: 0
|
80
|
+
}
|
81
|
+
|
82
|
+
.bs-home-nav .bs-nav-b {
|
83
|
+
display: none
|
84
|
+
}
|
85
|
+
|
86
|
+
.bs-docs-nav .navbar-brand, .bs-docs-nav .navbar-nav>li>a {
|
87
|
+
color: #563d7c;
|
88
|
+
font-weight: 500
|
89
|
+
}
|
90
|
+
|
91
|
+
.bs-docs-nav .navbar-nav>li>a:hover, .bs-docs-nav .navbar-nav>.active>a, .bs-docs-nav .navbar-nav>.active>a:hover {
|
92
|
+
color: #463265;
|
93
|
+
background-color: #f9f9f9
|
94
|
+
}
|
95
|
+
|
96
|
+
.bs-docs-nav .navbar-toggle .icon-bar {
|
97
|
+
background-color: #563d7c
|
98
|
+
}
|
99
|
+
|
100
|
+
.bs-docs-nav .navbar-header .navbar-toggle {
|
101
|
+
border-color: #fff
|
102
|
+
}
|
103
|
+
|
104
|
+
.bs-docs-nav .navbar-header .navbar-toggle:hover, .bs-docs-nav .navbar-header .navbar-toggle:focus {
|
105
|
+
background-color: #f9f9f9;
|
106
|
+
border-color: #f9f9f9
|
107
|
+
}
|
108
|
+
|
109
|
+
.bs-docs-footer {
|
110
|
+
padding-top: 40px;
|
111
|
+
padding-bottom: 40px;
|
112
|
+
margin-top: 100px;
|
113
|
+
color: #777;
|
114
|
+
text-align: center;
|
115
|
+
border-top: 1px solid #e5e5e5
|
116
|
+
}
|
117
|
+
|
118
|
+
.bs-docs-footer-links {
|
119
|
+
margin-top: 20px;
|
120
|
+
padding-left: 0;
|
121
|
+
color: #999
|
122
|
+
}
|
123
|
+
|
124
|
+
.bs-docs-footer-links li {
|
125
|
+
display: inline;
|
126
|
+
padding: 0 2px
|
127
|
+
}
|
128
|
+
|
129
|
+
.bs-docs-footer-links li:first-child {
|
130
|
+
padding-left: 0
|
131
|
+
}
|
132
|
+
|
133
|
+
@media (min-width:768px) {
|
134
|
+
.bs-docs-footer p {
|
135
|
+
margin-bottom: 0
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
.bs-docs-social {
|
140
|
+
margin-bottom: 20px;
|
141
|
+
text-align: center
|
142
|
+
}
|
143
|
+
|
144
|
+
.bs-docs-social-buttons {
|
145
|
+
display: inline-block;
|
146
|
+
margin-bottom: 0;
|
147
|
+
padding-left: 0;
|
148
|
+
list-style: none
|
149
|
+
}
|
150
|
+
|
151
|
+
.bs-docs-social-buttons li {
|
152
|
+
display: inline-block;
|
153
|
+
line-height: 1;
|
154
|
+
padding: 5px 8px
|
155
|
+
}
|
156
|
+
|
157
|
+
.bs-docs-social-buttons .twitter-follow-button {
|
158
|
+
width: 225px !important
|
159
|
+
}
|
160
|
+
|
161
|
+
.bs-docs-social-buttons .twitter-share-button {
|
162
|
+
width: 98px !important
|
163
|
+
}
|
164
|
+
|
165
|
+
.github-btn {
|
166
|
+
border: 0;
|
167
|
+
overflow: hidden
|
168
|
+
}
|
169
|
+
|
170
|
+
.bs-docs-masthead, .bs-docs-header {
|
171
|
+
position: relative;
|
172
|
+
padding: 30px 15px;
|
173
|
+
color: #cdbfe3;
|
174
|
+
text-align: center;
|
175
|
+
text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
|
176
|
+
background-color: #6f5499;
|
177
|
+
background-image: -webkit-linear-gradient(top, #563d7c 0, #6f5499 100%);
|
178
|
+
background-image: linear-gradient(to bottom, #563d7c 0, #6f5499 100%);
|
179
|
+
background-repeat: repeat-x;
|
180
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0)
|
181
|
+
}
|
182
|
+
|
183
|
+
.bs-docs-masthead .bs-docs-booticon {
|
184
|
+
margin: 0 auto 30px
|
185
|
+
}
|
186
|
+
|
187
|
+
.bs-docs-masthead h1 {
|
188
|
+
font-weight: 300;
|
189
|
+
line-height: 1;
|
190
|
+
color: #fff
|
191
|
+
}
|
192
|
+
|
193
|
+
.bs-docs-masthead .lead {
|
194
|
+
margin: 0 auto 30px;
|
195
|
+
font-size: 20px;
|
196
|
+
color: #fff
|
197
|
+
}
|
198
|
+
|
199
|
+
.bs-docs-masthead .version {
|
200
|
+
margin-top: -15px;
|
201
|
+
margin-bottom: 30px;
|
202
|
+
color: #9783b9
|
203
|
+
}
|
204
|
+
|
205
|
+
.bs-docs-masthead .btn {
|
206
|
+
width: 100%;
|
207
|
+
padding: 15px 30px;
|
208
|
+
font-size: 20px
|
209
|
+
}
|
210
|
+
|
211
|
+
@media (min-width:480px) {
|
212
|
+
.bs-docs-masthead .btn {
|
213
|
+
width: auto
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
@media (min-width:768px) {
|
218
|
+
.bs-docs-masthead {
|
219
|
+
padding-top: 80px;
|
220
|
+
padding-bottom: 80px
|
221
|
+
}
|
222
|
+
.bs-docs-masthead h1 {
|
223
|
+
font-size: 60px
|
224
|
+
}
|
225
|
+
.bs-docs-masthead .lead {
|
226
|
+
font-size: 24px
|
227
|
+
}
|
228
|
+
}
|
229
|
+
|
230
|
+
@media (min-width:992px) {
|
231
|
+
.bs-docs-masthead .lead {
|
232
|
+
width: 80%;
|
233
|
+
font-size: 30px
|
234
|
+
}
|
235
|
+
}
|
236
|
+
|
237
|
+
.bs-docs-header {
|
238
|
+
margin-bottom: 40px;
|
239
|
+
font-size: 20px
|
240
|
+
}
|
241
|
+
|
242
|
+
.bs-docs-header h1 {
|
243
|
+
margin-top: 0;
|
244
|
+
color: #fff
|
245
|
+
}
|
246
|
+
|
247
|
+
.bs-docs-header p {
|
248
|
+
margin-bottom: 0;
|
249
|
+
font-weight: 300;
|
250
|
+
line-height: 1.4
|
251
|
+
}
|
252
|
+
|
253
|
+
.bs-docs-header .container {
|
254
|
+
position: relative
|
255
|
+
}
|
256
|
+
|
257
|
+
@media (min-width:768px) {
|
258
|
+
.bs-docs-header {
|
259
|
+
padding-top: 60px;
|
260
|
+
padding-bottom: 60px;
|
261
|
+
font-size: 24px;
|
262
|
+
text-align: left
|
263
|
+
}
|
264
|
+
.bs-docs-header h1 {
|
265
|
+
font-size: 60px;
|
266
|
+
line-height: 1
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
@media (min-width:992px) {
|
271
|
+
.bs-docs-header h1, .bs-docs-header p {
|
272
|
+
margin-right: 380px
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
.carbonad {
|
277
|
+
width: auto !important;
|
278
|
+
margin: 30px -30px -31px !important;
|
279
|
+
padding: 20px !important;
|
280
|
+
overflow: hidden;
|
281
|
+
height: auto !important;
|
282
|
+
font-size: 13px !important;
|
283
|
+
line-height: 16px !important;
|
284
|
+
text-align: left;
|
285
|
+
background: transparent !important;
|
286
|
+
border: solid #866ab3 !important;
|
287
|
+
border-width: 1px 0 !important
|
288
|
+
}
|
289
|
+
|
290
|
+
.carbonad-img {
|
291
|
+
margin: 0 !important
|
292
|
+
}
|
293
|
+
|
294
|
+
.carbonad-text, .carbonad-tag {
|
295
|
+
float: none !important;
|
296
|
+
display: block !important;
|
297
|
+
width: auto !important;
|
298
|
+
height: auto !important;
|
299
|
+
margin-left: 145px !important;
|
300
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important
|
301
|
+
}
|
302
|
+
|
303
|
+
.carbonad-text {
|
304
|
+
padding-top: 0 !important
|
305
|
+
}
|
306
|
+
|
307
|
+
.carbonad-tag {
|
308
|
+
color: inherit !important;
|
309
|
+
text-align: left !important
|
310
|
+
}
|
311
|
+
|
312
|
+
.carbonad-text a, .carbonad-tag a {
|
313
|
+
color: #fff !important
|
314
|
+
}
|
315
|
+
|
316
|
+
.carbonad #azcarbon>img {
|
317
|
+
display: none
|
318
|
+
}
|
319
|
+
|
320
|
+
@media (min-width:480px) {
|
321
|
+
.carbonad {
|
322
|
+
width: 330px !important;
|
323
|
+
margin: 20px auto !important;
|
324
|
+
border-radius: 4px;
|
325
|
+
border-width: 1px !important
|
326
|
+
}
|
327
|
+
.bs-docs-masthead .carbonad {
|
328
|
+
margin: 50px auto 0 !important
|
329
|
+
}
|
330
|
+
}
|
331
|
+
|
332
|
+
@media (min-width:768px) {
|
333
|
+
.carbonad {
|
334
|
+
margin-left: 0 !important;
|
335
|
+
margin-right: 0 !important
|
336
|
+
}
|
337
|
+
}
|
338
|
+
|
339
|
+
@media (min-width:992px) {
|
340
|
+
.carbonad {
|
341
|
+
position: absolute;
|
342
|
+
top: 0;
|
343
|
+
right: 15px;
|
344
|
+
margin: 0 !important;
|
345
|
+
padding: 15px !important;
|
346
|
+
width: 330px !important
|
347
|
+
}
|
348
|
+
.bs-docs-masthead .carbonad {
|
349
|
+
position: static
|
350
|
+
}
|
351
|
+
}
|
352
|
+
|
353
|
+
.bs-docs-featurette {
|
354
|
+
padding-top: 40px;
|
355
|
+
padding-bottom: 40px;
|
356
|
+
font-size: 16px;
|
357
|
+
line-height: 1.5;
|
358
|
+
color: #555;
|
359
|
+
text-align: center;
|
360
|
+
background-color: #fff;
|
361
|
+
border-bottom: 1px solid #e5e5e5
|
362
|
+
}
|
363
|
+
|
364
|
+
.bs-docs-featurette+.bs-docs-footer {
|
365
|
+
margin-top: 0;
|
366
|
+
border-top: 0
|
367
|
+
}
|
368
|
+
|
369
|
+
.bs-docs-featurette-title {
|
370
|
+
font-size: 30px;
|
371
|
+
font-weight: 400;
|
372
|
+
color: #333;
|
373
|
+
margin-bottom: 5px
|
374
|
+
}
|
375
|
+
|
376
|
+
.half-rule {
|
377
|
+
width: 100px;
|
378
|
+
margin: 40px auto
|
379
|
+
}
|
380
|
+
|
381
|
+
.bs-docs-featurette h3 {
|
382
|
+
font-weight: 400;
|
383
|
+
color: #333;
|
384
|
+
margin-bottom: 5px
|
385
|
+
}
|
386
|
+
|
387
|
+
.bs-docs-featurette-img {
|
388
|
+
display: block;
|
389
|
+
margin-bottom: 20px;
|
390
|
+
color: #333
|
391
|
+
}
|
392
|
+
|
393
|
+
.bs-docs-featurette-img:hover {
|
394
|
+
text-decoration: none;
|
395
|
+
color: #428bca
|
396
|
+
}
|
397
|
+
|
398
|
+
.bs-docs-featurette-img img {
|
399
|
+
display: block;
|
400
|
+
margin-bottom: 15px
|
401
|
+
}
|
402
|
+
|
403
|
+
.bs-docs-featured-sites {
|
404
|
+
margin-left: -1px;
|
405
|
+
margin-right: -1px
|
406
|
+
}
|
407
|
+
|
408
|
+
.bs-docs-featured-sites .col-sm-3 {
|
409
|
+
padding-left: 1px;
|
410
|
+
padding-right: 1px
|
411
|
+
}
|
412
|
+
|
413
|
+
@media (min-width:480px) {
|
414
|
+
.bs-docs-featurette .img-responsive {
|
415
|
+
margin-top: 30px
|
416
|
+
}
|
417
|
+
}
|
418
|
+
|
419
|
+
@media (min-width:768px) {
|
420
|
+
.bs-docs-featurette {
|
421
|
+
padding-top: 100px;
|
422
|
+
padding-bottom: 100px
|
423
|
+
}
|
424
|
+
.bs-docs-featurette-title {
|
425
|
+
font-size: 40px
|
426
|
+
}
|
427
|
+
.bs-docs-featurette .lead {
|
428
|
+
margin-left: auto;
|
429
|
+
margin-right: auto;
|
430
|
+
max-width: 80%
|
431
|
+
}
|
432
|
+
.bs-docs-featured-sites .col-sm-3:first-child img {
|
433
|
+
border-top-left-radius: 4px;
|
434
|
+
border-bottom-left-radius: 4px
|
435
|
+
}
|
436
|
+
.bs-docs-featured-sites .col-sm-3:last-child img {
|
437
|
+
border-top-right-radius: 4px;
|
438
|
+
border-bottom-right-radius: 4px
|
439
|
+
}
|
440
|
+
.bs-docs-featurette .img-responsive {
|
441
|
+
margin-top: 0
|
442
|
+
}
|
443
|
+
}
|
444
|
+
|
445
|
+
.bs-docs-sidebar.affix {
|
446
|
+
position: static
|
447
|
+
}
|
448
|
+
|
449
|
+
@media (min-width:768px) {
|
450
|
+
.bs-docs-sidebar {
|
451
|
+
padding-left: 20px
|
452
|
+
}
|
453
|
+
}
|
454
|
+
|
455
|
+
.bs-docs-sidenav {
|
456
|
+
margin-top: 20px;
|
457
|
+
margin-bottom: 20px
|
458
|
+
}
|
459
|
+
|
460
|
+
.bs-docs-sidebar .nav>li>a {
|
461
|
+
display: block;
|
462
|
+
font-size: 13px;
|
463
|
+
font-weight: 500;
|
464
|
+
color: #999;
|
465
|
+
padding: 4px 20px
|
466
|
+
}
|
467
|
+
|
468
|
+
.bs-docs-sidebar .nav>li>a:hover, .bs-docs-sidebar .nav>li>a:focus {
|
469
|
+
padding-left: 19px;
|
470
|
+
color: #563d7c;
|
471
|
+
text-decoration: none;
|
472
|
+
background-color: transparent;
|
473
|
+
border-left: 1px solid #563d7c
|
474
|
+
}
|
475
|
+
|
476
|
+
.bs-docs-sidebar .nav>.active>a, .bs-docs-sidebar .nav>.active:hover>a, .bs-docs-sidebar .nav>.active:focus>a {
|
477
|
+
padding-left: 18px;
|
478
|
+
font-weight: 700;
|
479
|
+
color: #563d7c;
|
480
|
+
background-color: transparent;
|
481
|
+
border-left: 2px solid #563d7c
|
482
|
+
}
|
483
|
+
|
484
|
+
.bs-docs-sidebar .nav .nav {
|
485
|
+
display: none;
|
486
|
+
padding-bottom: 10px
|
487
|
+
}
|
488
|
+
|
489
|
+
.bs-docs-sidebar .nav .nav>li>a {
|
490
|
+
padding-top: 1px;
|
491
|
+
padding-bottom: 1px;
|
492
|
+
padding-left: 30px;
|
493
|
+
font-size: 12px;
|
494
|
+
font-weight: 400
|
495
|
+
}
|
496
|
+
|
497
|
+
.bs-docs-sidebar .nav .nav>li>a:hover, .bs-docs-sidebar .nav .nav>li>a:focus {
|
498
|
+
padding-left: 29px
|
499
|
+
}
|
500
|
+
|
501
|
+
.bs-docs-sidebar .nav .nav>.active>a, .bs-docs-sidebar .nav .nav>.active:hover>a, .bs-docs-sidebar .nav .nav>.active:focus>a {
|
502
|
+
font-weight: 500;
|
503
|
+
padding-left: 28px
|
504
|
+
}
|
505
|
+
|
506
|
+
.back-to-top {
|
507
|
+
display: none;
|
508
|
+
margin-top: 10px;
|
509
|
+
margin-left: 10px;
|
510
|
+
padding: 4px 10px;
|
511
|
+
font-size: 12px;
|
512
|
+
font-weight: 500;
|
513
|
+
color: #999
|
514
|
+
}
|
515
|
+
|
516
|
+
.back-to-top:hover {
|
517
|
+
text-decoration: none;
|
518
|
+
color: #563d7c
|
519
|
+
}
|
520
|
+
|
521
|
+
@media (min-width:768px) {
|
522
|
+
.back-to-top {
|
523
|
+
display: block
|
524
|
+
}
|
525
|
+
}
|
526
|
+
|
527
|
+
@media (min-width:992px) {
|
528
|
+
.bs-docs-sidebar .nav>.active>ul {
|
529
|
+
display: block
|
530
|
+
}
|
531
|
+
.bs-docs-sidebar.affix, .bs-docs-sidebar.affix-bottom {
|
532
|
+
width: 213px
|
533
|
+
}
|
534
|
+
.bs-docs-sidebar.affix {
|
535
|
+
position: fixed;
|
536
|
+
top: 20px
|
537
|
+
}
|
538
|
+
.bs-docs-sidebar.affix-bottom {
|
539
|
+
position: absolute
|
540
|
+
}
|
541
|
+
.bs-docs-sidebar.affix-bottom .bs-docs-sidenav, .bs-docs-sidebar.affix .bs-docs-sidenav {
|
542
|
+
margin-top: 0;
|
543
|
+
margin-bottom: 0
|
544
|
+
}
|
545
|
+
}
|
546
|
+
|
547
|
+
@media (min-width:1200px) {
|
548
|
+
.bs-docs-sidebar.affix-bottom, .bs-docs-sidebar.affix {
|
549
|
+
width: 263px
|
550
|
+
}
|
551
|
+
}
|
552
|
+
|
553
|
+
.bs-docs-section {
|
554
|
+
margin-bottom: 60px
|
555
|
+
}
|
556
|
+
|
557
|
+
.bs-docs-section:last-child {
|
558
|
+
margin-bottom: 0
|
559
|
+
}
|
560
|
+
|
561
|
+
h1[id] {
|
562
|
+
margin-top: 0;
|
563
|
+
padding-top: 20px
|
564
|
+
}
|
565
|
+
|
566
|
+
.bs-callout {
|
567
|
+
margin: 20px 0;
|
568
|
+
padding: 20px;
|
569
|
+
border-left: 3px solid #eee
|
570
|
+
}
|
571
|
+
|
572
|
+
.bs-callout h4 {
|
573
|
+
margin-top: 0;
|
574
|
+
margin-bottom: 5px
|
575
|
+
}
|
576
|
+
|
577
|
+
.bs-callout p:last-child {
|
578
|
+
margin-bottom: 0
|
579
|
+
}
|
580
|
+
|
581
|
+
.bs-callout code {
|
582
|
+
background-color: #fff;
|
583
|
+
border-radius: 3px
|
584
|
+
}
|
585
|
+
|
586
|
+
.bs-callout-danger {
|
587
|
+
background-color: #fdf7f7;
|
588
|
+
border-color: #d9534f
|
589
|
+
}
|
590
|
+
|
591
|
+
.bs-callout-danger h4 {
|
592
|
+
color: #d9534f
|
593
|
+
}
|
594
|
+
|
595
|
+
.bs-callout-warning {
|
596
|
+
background-color: #fcf8f2;
|
597
|
+
border-color: #f0ad4e
|
598
|
+
}
|
599
|
+
|
600
|
+
.bs-callout-warning h4 {
|
601
|
+
color: #f0ad4e
|
602
|
+
}
|
603
|
+
|
604
|
+
.bs-callout-info {
|
605
|
+
background-color: #f4f8fa;
|
606
|
+
border-color: #5bc0de
|
607
|
+
}
|
608
|
+
|
609
|
+
.bs-callout-info h4 {
|
610
|
+
color: #5bc0de
|
611
|
+
}
|
612
|
+
|
613
|
+
.color-swatches {
|
614
|
+
margin: 0 -5px;
|
615
|
+
overflow: hidden
|
616
|
+
}
|
617
|
+
|
618
|
+
.color-swatch {
|
619
|
+
float: left;
|
620
|
+
width: 60px;
|
621
|
+
height: 60px;
|
622
|
+
margin: 0 5px;
|
623
|
+
border-radius: 3px
|
624
|
+
}
|
625
|
+
|
626
|
+
@media (min-width:768px) {
|
627
|
+
.color-swatch {
|
628
|
+
width: 100px;
|
629
|
+
height: 100px
|
630
|
+
}
|
631
|
+
}
|
632
|
+
|
633
|
+
.color-swatches .gray-darker {
|
634
|
+
background-color: #222
|
635
|
+
}
|
636
|
+
|
637
|
+
.color-swatches .gray-dark {
|
638
|
+
background-color: #333
|
639
|
+
}
|
640
|
+
|
641
|
+
.color-swatches .gray {
|
642
|
+
background-color: #555
|
643
|
+
}
|
644
|
+
|
645
|
+
.color-swatches .gray-light {
|
646
|
+
background-color: #999
|
647
|
+
}
|
648
|
+
|
649
|
+
.color-swatches .gray-lighter {
|
650
|
+
background-color: #eee
|
651
|
+
}
|
652
|
+
|
653
|
+
.color-swatches .brand-primary {
|
654
|
+
background-color: #428bca
|
655
|
+
}
|
656
|
+
|
657
|
+
.color-swatches .brand-success {
|
658
|
+
background-color: #5cb85c
|
659
|
+
}
|
660
|
+
|
661
|
+
.color-swatches .brand-warning {
|
662
|
+
background-color: #f0ad4e
|
663
|
+
}
|
664
|
+
|
665
|
+
.color-swatches .brand-danger {
|
666
|
+
background-color: #d9534f
|
667
|
+
}
|
668
|
+
|
669
|
+
.color-swatches .brand-info {
|
670
|
+
background-color: #5bc0de
|
671
|
+
}
|
672
|
+
|
673
|
+
.color-swatches .bs-purple {
|
674
|
+
background-color: #563d7c
|
675
|
+
}
|
676
|
+
|
677
|
+
.color-swatches .bs-purple-light {
|
678
|
+
background-color: #c7bfd3
|
679
|
+
}
|
680
|
+
|
681
|
+
.color-swatches .bs-purple-lighter {
|
682
|
+
background-color: #e5e1ea
|
683
|
+
}
|
684
|
+
|
685
|
+
.color-swatches .bs-gray {
|
686
|
+
background-color: #f9f9f9
|
687
|
+
}
|
688
|
+
|
689
|
+
.bs-team .team-member {
|
690
|
+
color: #555;
|
691
|
+
line-height: 32px
|
692
|
+
}
|
693
|
+
|
694
|
+
.bs-team .team-member:hover {
|
695
|
+
color: #333;
|
696
|
+
text-decoration: none
|
697
|
+
}
|
698
|
+
|
699
|
+
.bs-team .github-btn {
|
700
|
+
float: right;
|
701
|
+
margin-top: 6px;
|
702
|
+
width: 180px;
|
703
|
+
height: 20px
|
704
|
+
}
|
705
|
+
|
706
|
+
.bs-team img {
|
707
|
+
float: left;
|
708
|
+
width: 32px;
|
709
|
+
margin-right: 10px;
|
710
|
+
border-radius: 4px
|
711
|
+
}
|
712
|
+
|
713
|
+
.show-grid {
|
714
|
+
margin-bottom: 15px
|
715
|
+
}
|
716
|
+
|
717
|
+
.show-grid [class^=col-] {
|
718
|
+
padding-top: 10px;
|
719
|
+
padding-bottom: 10px;
|
720
|
+
background-color: #eee;
|
721
|
+
background-color: rgba(86, 61, 124, .15);
|
722
|
+
border: 1px solid #ddd;
|
723
|
+
border: 1px solid rgba(86, 61, 124, .2)
|
724
|
+
}
|
725
|
+
|
726
|
+
.bs-example {
|
727
|
+
position: relative;
|
728
|
+
padding: 45px 15px 15px;
|
729
|
+
margin: 0 -15px 15px;
|
730
|
+
background-color: #fafafa;
|
731
|
+
box-shadow: inset 0 3px 6px rgba(0, 0, 0, .05);
|
732
|
+
border-color: #e5e5e5 #eee #eee;
|
733
|
+
border-style: solid;
|
734
|
+
border-width: 1px 0
|
735
|
+
}
|
736
|
+
|
737
|
+
.bs-example:after {
|
738
|
+
content: "Example";
|
739
|
+
position: absolute;
|
740
|
+
top: 15px;
|
741
|
+
left: 15px;
|
742
|
+
font-size: 12px;
|
743
|
+
font-weight: 700;
|
744
|
+
color: #bbb;
|
745
|
+
text-transform: uppercase;
|
746
|
+
letter-spacing: 1px
|
747
|
+
}
|
748
|
+
|
749
|
+
.bs-example+.highlight {
|
750
|
+
margin: -15px -15px 15px;
|
751
|
+
border-radius: 0;
|
752
|
+
border-width: 0 0 1px
|
753
|
+
}
|
754
|
+
|
755
|
+
@media (min-width:768px) {
|
756
|
+
.bs-example {
|
757
|
+
margin-left: 0;
|
758
|
+
margin-right: 0;
|
759
|
+
background-color: #fff;
|
760
|
+
border-width: 1px;
|
761
|
+
border-color: #ddd;
|
762
|
+
border-radius: 4px 4px 0 0;
|
763
|
+
box-shadow: none
|
764
|
+
}
|
765
|
+
.bs-example+.highlight {
|
766
|
+
margin-top: -16px;
|
767
|
+
margin-left: 0;
|
768
|
+
margin-right: 0;
|
769
|
+
border-width: 1px;
|
770
|
+
border-bottom-left-radius: 4px;
|
771
|
+
border-bottom-right-radius: 4px
|
772
|
+
}
|
773
|
+
}
|
774
|
+
|
775
|
+
.bs-example .container {
|
776
|
+
width: auto
|
777
|
+
}
|
778
|
+
|
779
|
+
.bs-example>p:last-child, .bs-example>ul:last-child, .bs-example>ol:last-child, .bs-example>blockquote:last-child, .bs-example>.form-control:last-child, .bs-example>.table:last-child, .bs-example>.navbar:last-child, .bs-example>.jumbotron:last-child, .bs-example>.alert:last-child, .bs-example>.panel:last-child, .bs-example>.list-group:last-child, .bs-example>.well:last-child, .bs-example>.progress:last-child, .bs-example>.table-responsive:last-child>.table {
|
780
|
+
margin-bottom: 0
|
781
|
+
}
|
782
|
+
|
783
|
+
.bs-example>p>.close {
|
784
|
+
float: none
|
785
|
+
}
|
786
|
+
|
787
|
+
.bs-example-type .table .type-info {
|
788
|
+
color: #999;
|
789
|
+
vertical-align: middle
|
790
|
+
}
|
791
|
+
|
792
|
+
.bs-example-type .table td {
|
793
|
+
padding: 15px 0;
|
794
|
+
border-color: #eee
|
795
|
+
}
|
796
|
+
|
797
|
+
.bs-example-type .table tr:first-child td {
|
798
|
+
border-top: 0
|
799
|
+
}
|
800
|
+
|
801
|
+
.bs-example-type h1, .bs-example-type h2, .bs-example-type h3, .bs-example-type h4, .bs-example-type h5, .bs-example-type h6 {
|
802
|
+
margin: 0
|
803
|
+
}
|
804
|
+
|
805
|
+
.bs-example-bg-classes p {
|
806
|
+
padding: 15px
|
807
|
+
}
|
808
|
+
|
809
|
+
.bs-example>.img-circle, .bs-example>.img-rounded, .bs-example>.img-thumbnail {
|
810
|
+
margin: 5px
|
811
|
+
}
|
812
|
+
|
813
|
+
.bs-example>.table-responsive>.table {
|
814
|
+
background-color: #fff
|
815
|
+
}
|
816
|
+
|
817
|
+
.bs-example>.btn, .bs-example>.btn-group {
|
818
|
+
margin-top: 5px;
|
819
|
+
margin-bottom: 5px
|
820
|
+
}
|
821
|
+
|
822
|
+
.bs-example>.btn-toolbar+.btn-toolbar {
|
823
|
+
margin-top: 10px
|
824
|
+
}
|
825
|
+
|
826
|
+
.bs-example-control-sizing select, .bs-example-control-sizing input[type=text]+input[type=text] {
|
827
|
+
margin-top: 10px
|
828
|
+
}
|
829
|
+
|
830
|
+
.bs-example-form .input-group {
|
831
|
+
margin-bottom: 10px
|
832
|
+
}
|
833
|
+
|
834
|
+
.bs-example>textarea.form-control {
|
835
|
+
resize: vertical
|
836
|
+
}
|
837
|
+
|
838
|
+
.bs-example>.list-group {
|
839
|
+
max-width: 400px
|
840
|
+
}
|
841
|
+
|
842
|
+
.bs-example .navbar:last-child {
|
843
|
+
margin-bottom: 0
|
844
|
+
}
|
845
|
+
|
846
|
+
.bs-navbar-top-example, .bs-navbar-bottom-example {
|
847
|
+
z-index: 1;
|
848
|
+
padding: 0;
|
849
|
+
overflow: hidden
|
850
|
+
}
|
851
|
+
|
852
|
+
.bs-navbar-top-example .navbar-header, .bs-navbar-bottom-example .navbar-header {
|
853
|
+
margin-left: 0
|
854
|
+
}
|
855
|
+
|
856
|
+
.bs-navbar-top-example .navbar-fixed-top, .bs-navbar-bottom-example .navbar-fixed-bottom {
|
857
|
+
position: relative;
|
858
|
+
margin-left: 0;
|
859
|
+
margin-right: 0
|
860
|
+
}
|
861
|
+
|
862
|
+
.bs-navbar-top-example {
|
863
|
+
padding-bottom: 45px
|
864
|
+
}
|
865
|
+
|
866
|
+
.bs-navbar-top-example:after {
|
867
|
+
top: auto;
|
868
|
+
bottom: 15px
|
869
|
+
}
|
870
|
+
|
871
|
+
.bs-navbar-top-example .navbar-fixed-top {
|
872
|
+
top: -1px
|
873
|
+
}
|
874
|
+
|
875
|
+
.bs-navbar-bottom-example {
|
876
|
+
padding-top: 45px
|
877
|
+
}
|
878
|
+
|
879
|
+
.bs-navbar-bottom-example .navbar-fixed-bottom {
|
880
|
+
bottom: -1px
|
881
|
+
}
|
882
|
+
|
883
|
+
.bs-navbar-bottom-example .navbar {
|
884
|
+
margin-bottom: 0
|
885
|
+
}
|
886
|
+
|
887
|
+
@media (min-width:768px) {
|
888
|
+
.bs-navbar-top-example .navbar-fixed-top, .bs-navbar-bottom-example .navbar-fixed-bottom {
|
889
|
+
position: absolute
|
890
|
+
}
|
891
|
+
.bs-navbar-top-example {
|
892
|
+
border-radius: 0 0 4px 4px
|
893
|
+
}
|
894
|
+
.bs-navbar-bottom-example {
|
895
|
+
border-radius: 4px 4px 0 0
|
896
|
+
}
|
897
|
+
}
|
898
|
+
|
899
|
+
.bs-example .pagination {
|
900
|
+
margin-top: 10px;
|
901
|
+
margin-bottom: 10px
|
902
|
+
}
|
903
|
+
|
904
|
+
.bs-example>.pager {
|
905
|
+
margin-top: 0
|
906
|
+
}
|
907
|
+
|
908
|
+
.bs-example-modal {
|
909
|
+
background-color: #f5f5f5
|
910
|
+
}
|
911
|
+
|
912
|
+
.bs-example-modal .modal {
|
913
|
+
position: relative;
|
914
|
+
top: auto;
|
915
|
+
right: auto;
|
916
|
+
left: auto;
|
917
|
+
bottom: auto;
|
918
|
+
z-index: 1;
|
919
|
+
display: block
|
920
|
+
}
|
921
|
+
|
922
|
+
.bs-example-modal .modal-dialog {
|
923
|
+
left: auto;
|
924
|
+
margin-left: auto;
|
925
|
+
margin-right: auto
|
926
|
+
}
|
927
|
+
|
928
|
+
.bs-example>.dropdown>.dropdown-menu {
|
929
|
+
position: static;
|
930
|
+
display: block;
|
931
|
+
margin-bottom: 5px
|
932
|
+
}
|
933
|
+
|
934
|
+
.bs-example-tabs .nav-tabs {
|
935
|
+
margin-bottom: 15px
|
936
|
+
}
|
937
|
+
|
938
|
+
.bs-example-tooltips {
|
939
|
+
text-align: center
|
940
|
+
}
|
941
|
+
|
942
|
+
.bs-example-tooltips>.btn {
|
943
|
+
margin-top: 5px;
|
944
|
+
margin-bottom: 5px
|
945
|
+
}
|
946
|
+
|
947
|
+
.bs-example-popover {
|
948
|
+
padding-bottom: 24px;
|
949
|
+
background-color: #f9f9f9
|
950
|
+
}
|
951
|
+
|
952
|
+
.bs-example-popover .popover {
|
953
|
+
position: relative;
|
954
|
+
display: block;
|
955
|
+
float: left;
|
956
|
+
width: 260px;
|
957
|
+
margin: 20px
|
958
|
+
}
|
959
|
+
|
960
|
+
.scrollspy-example {
|
961
|
+
position: relative;
|
962
|
+
height: 200px;
|
963
|
+
margin-top: 10px;
|
964
|
+
overflow: auto
|
965
|
+
}
|
966
|
+
|
967
|
+
.highlight {
|
968
|
+
padding: 9px 14px;
|
969
|
+
margin-bottom: 14px;
|
970
|
+
background-color: #f7f7f9;
|
971
|
+
border: 1px solid #e1e1e8;
|
972
|
+
border-radius: 4px
|
973
|
+
}
|
974
|
+
|
975
|
+
.highlight pre {
|
976
|
+
padding: 0;
|
977
|
+
margin-top: 0;
|
978
|
+
margin-bottom: 0;
|
979
|
+
background-color: transparent;
|
980
|
+
border: 0;
|
981
|
+
white-space: nowrap
|
982
|
+
}
|
983
|
+
|
984
|
+
.highlight pre code {
|
985
|
+
font-size: inherit;
|
986
|
+
color: #333
|
987
|
+
}
|
988
|
+
|
989
|
+
.highlight pre .lineno {
|
990
|
+
display: inline-block;
|
991
|
+
width: 22px;
|
992
|
+
padding-right: 5px;
|
993
|
+
margin-right: 10px;
|
994
|
+
text-align: right;
|
995
|
+
color: #bebec5
|
996
|
+
}
|
997
|
+
|
998
|
+
.table-responsive .highlight pre {
|
999
|
+
white-space: normal
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
.bs-table th small, .responsive-utilities th small {
|
1003
|
+
display: block;
|
1004
|
+
font-weight: 400;
|
1005
|
+
color: #999
|
1006
|
+
}
|
1007
|
+
|
1008
|
+
.responsive-utilities tbody th {
|
1009
|
+
font-weight: 400
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
.responsive-utilities td {
|
1013
|
+
text-align: center
|
1014
|
+
}
|
1015
|
+
|
1016
|
+
.responsive-utilities td.is-visible {
|
1017
|
+
color: #468847;
|
1018
|
+
background-color: #dff0d8 !important
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.responsive-utilities td.is-hidden {
|
1022
|
+
color: #ccc;
|
1023
|
+
background-color: #f9f9f9 !important
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
.responsive-utilities-test {
|
1027
|
+
margin-top: 5px
|
1028
|
+
}
|
1029
|
+
|
1030
|
+
.responsive-utilities-test .col-xs-6 {
|
1031
|
+
margin-bottom: 10px
|
1032
|
+
}
|
1033
|
+
|
1034
|
+
.responsive-utilities-test span {
|
1035
|
+
display: block;
|
1036
|
+
padding: 15px 10px;
|
1037
|
+
font-size: 14px;
|
1038
|
+
font-weight: 700;
|
1039
|
+
line-height: 1.1;
|
1040
|
+
text-align: center;
|
1041
|
+
border-radius: 4px
|
1042
|
+
}
|
1043
|
+
|
1044
|
+
.visible-on .col-xs-6 .hidden-xs, .visible-on .col-xs-6 .hidden-sm, .visible-on .col-xs-6 .hidden-md, .visible-on .col-xs-6 .hidden-lg, .hidden-on .col-xs-6 .hidden-xs, .hidden-on .col-xs-6 .hidden-sm, .hidden-on .col-xs-6 .hidden-md, .hidden-on .col-xs-6 .hidden-lg {
|
1045
|
+
color: #999;
|
1046
|
+
border: 1px solid #ddd
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.visible-on .col-xs-6 .visible-xs, .visible-on .col-xs-6 .visible-sm, .visible-on .col-xs-6 .visible-md, .visible-on .col-xs-6 .visible-lg, .hidden-on .col-xs-6 .visible-xs, .hidden-on .col-xs-6 .visible-sm, .hidden-on .col-xs-6 .visible-md, .hidden-on .col-xs-6 .visible-lg {
|
1050
|
+
color: #468847;
|
1051
|
+
background-color: #dff0d8;
|
1052
|
+
border: 1px solid #d6e9c6
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
.bs-glyphicons {
|
1056
|
+
margin: 0 -19px 20px -16px;
|
1057
|
+
overflow: hidden
|
1058
|
+
}
|
1059
|
+
|
1060
|
+
.bs-glyphicons-list {
|
1061
|
+
padding-left: 0;
|
1062
|
+
list-style: none
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
.bs-glyphicons li {
|
1066
|
+
float: left;
|
1067
|
+
width: 25%;
|
1068
|
+
height: 115px;
|
1069
|
+
padding: 10px;
|
1070
|
+
font-size: 10px;
|
1071
|
+
line-height: 1.4;
|
1072
|
+
text-align: center;
|
1073
|
+
border: 1px solid #fff;
|
1074
|
+
background-color: #f9f9f9
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
.bs-glyphicons .glyphicon {
|
1078
|
+
margin-top: 5px;
|
1079
|
+
margin-bottom: 10px;
|
1080
|
+
font-size: 24px
|
1081
|
+
}
|
1082
|
+
|
1083
|
+
.bs-glyphicons .glyphicon-class {
|
1084
|
+
display: block;
|
1085
|
+
text-align: center;
|
1086
|
+
word-wrap: break-word
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
.bs-glyphicons li:hover {
|
1090
|
+
color: #fff;
|
1091
|
+
background-color: #563d7c
|
1092
|
+
}
|
1093
|
+
|
1094
|
+
@media (min-width:768px) {
|
1095
|
+
.bs-glyphicons {
|
1096
|
+
margin-left: 0;
|
1097
|
+
margin-right: 0
|
1098
|
+
}
|
1099
|
+
.bs-glyphicons li {
|
1100
|
+
width: 12.5%;
|
1101
|
+
font-size: 12px
|
1102
|
+
}
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.bs-customizer .toggle {
|
1106
|
+
float: right;
|
1107
|
+
margin-top: 25px
|
1108
|
+
}
|
1109
|
+
|
1110
|
+
.bs-customizer label {
|
1111
|
+
margin-top: 10px;
|
1112
|
+
font-weight: 500;
|
1113
|
+
color: #555
|
1114
|
+
}
|
1115
|
+
|
1116
|
+
.bs-customizer h2 {
|
1117
|
+
margin-top: 0;
|
1118
|
+
margin-bottom: 5px;
|
1119
|
+
padding-top: 30px
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
.bs-customizer h3 {
|
1123
|
+
margin-bottom: 0
|
1124
|
+
}
|
1125
|
+
|
1126
|
+
.bs-customizer h4 {
|
1127
|
+
margin-top: 15px;
|
1128
|
+
margin-bottom: 0
|
1129
|
+
}
|
1130
|
+
|
1131
|
+
.bs-customizer .bs-callout h4 {
|
1132
|
+
margin-top: 0;
|
1133
|
+
margin-bottom: 5px
|
1134
|
+
}
|
1135
|
+
|
1136
|
+
.bs-customizer input[type=text] {
|
1137
|
+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
1138
|
+
background-color: #fafafa
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
.bs-customizer .help-block {
|
1142
|
+
font-size: 12px;
|
1143
|
+
margin-bottom: 5px
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
#less-section label {
|
1147
|
+
font-weight: 400
|
1148
|
+
}
|
1149
|
+
|
1150
|
+
.bs-customizer-input {
|
1151
|
+
float: left;
|
1152
|
+
width: 33.333333%;
|
1153
|
+
padding-left: 15px;
|
1154
|
+
padding-right: 15px
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
.bs-customize-download .btn-outline {
|
1158
|
+
padding: 20px
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
.bs-customizer-alert {
|
1162
|
+
position: fixed;
|
1163
|
+
top: 0;
|
1164
|
+
left: 0;
|
1165
|
+
right: 0;
|
1166
|
+
z-index: 1030;
|
1167
|
+
padding: 15px 0;
|
1168
|
+
color: #fff;
|
1169
|
+
background-color: #d9534f;
|
1170
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
|
1171
|
+
border-bottom: 1px solid #b94441
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
.bs-customizer-alert .close {
|
1175
|
+
margin-top: -4px;
|
1176
|
+
font-size: 24px
|
1177
|
+
}
|
1178
|
+
|
1179
|
+
.bs-customizer-alert p {
|
1180
|
+
margin-bottom: 0
|
1181
|
+
}
|
1182
|
+
|
1183
|
+
.bs-customizer-alert .glyphicon {
|
1184
|
+
margin-right: 5px
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
.bs-customizer-alert pre {
|
1188
|
+
margin: 10px 0 0;
|
1189
|
+
color: #fff;
|
1190
|
+
background-color: #a83c3a;
|
1191
|
+
border-color: #973634;
|
1192
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1)
|
1193
|
+
}
|
1194
|
+
|
1195
|
+
.bs-brand-logos {
|
1196
|
+
display: table;
|
1197
|
+
width: 100%;
|
1198
|
+
margin-bottom: 15px;
|
1199
|
+
overflow: hidden;
|
1200
|
+
color: #563d7c;
|
1201
|
+
background-color: #f9f9f9;
|
1202
|
+
border-radius: 4px
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.bs-brand-item {
|
1206
|
+
padding: 60px 0;
|
1207
|
+
text-align: center
|
1208
|
+
}
|
1209
|
+
|
1210
|
+
.bs-brand-item+.bs-brand-item {
|
1211
|
+
border-top: 1px solid #fff
|
1212
|
+
}
|
1213
|
+
|
1214
|
+
.bs-brand-logos .inverse {
|
1215
|
+
color: #fff;
|
1216
|
+
background-color: #563d7c
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
.bs-brand-item h1, .bs-brand-item h3 {
|
1220
|
+
margin-top: 0;
|
1221
|
+
margin-bottom: 0
|
1222
|
+
}
|
1223
|
+
|
1224
|
+
.bs-brand-item .bs-docs-booticon {
|
1225
|
+
margin-left: auto;
|
1226
|
+
margin-right: auto
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
.bs-brand-item .glyphicon {
|
1230
|
+
width: 30px;
|
1231
|
+
height: 30px;
|
1232
|
+
margin: 10px auto -10px;
|
1233
|
+
line-height: 30px;
|
1234
|
+
color: #fff;
|
1235
|
+
border-radius: 50%
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
.bs-brand-item .glyphicon-ok {
|
1239
|
+
background-color: #5cb85c
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
.bs-brand-item .glyphicon-remove {
|
1243
|
+
background-color: #d9534f
|
1244
|
+
}
|
1245
|
+
|
1246
|
+
@media (min-width:768px) {
|
1247
|
+
.bs-brand-item {
|
1248
|
+
display: table-cell;
|
1249
|
+
width: 1%
|
1250
|
+
}
|
1251
|
+
.bs-brand-item+.bs-brand-item {
|
1252
|
+
border-top: 0;
|
1253
|
+
border-left: 1px solid #fff
|
1254
|
+
}
|
1255
|
+
.bs-brand-item h1 {
|
1256
|
+
font-size: 60px
|
1257
|
+
}
|
1258
|
+
}
|
1259
|
+
|
1260
|
+
.bs-examples .thumbnail {
|
1261
|
+
margin-bottom: 10px
|
1262
|
+
}
|
1263
|
+
|
1264
|
+
.bs-examples h4 {
|
1265
|
+
margin-bottom: 5px
|
1266
|
+
}
|
1267
|
+
|
1268
|
+
.bs-examples p {
|
1269
|
+
margin-bottom: 20px
|
1270
|
+
}
|
1271
|
+
|
1272
|
+
#focusedInput {
|
1273
|
+
border-color: #ccc;
|
1274
|
+
border-color: rgba(82, 168, 236, .8);
|
1275
|
+
outline: 0;
|
1276
|
+
outline: thin dotted \9;
|
1277
|
+
-moz-box-shadow: 0 0 8px rgba(82, 168, 236, .6);
|
1278
|
+
box-shadow: 0 0 8px rgba(82, 168, 236, .6)
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.hll {
|
1282
|
+
background-color: #ffc
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.c {
|
1286
|
+
color: #999
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.err {
|
1290
|
+
color: #A00;
|
1291
|
+
background-color: #FAA
|
1292
|
+
}
|
1293
|
+
|
1294
|
+
.k {
|
1295
|
+
color: #069
|
1296
|
+
}
|
1297
|
+
|
1298
|
+
.o {
|
1299
|
+
color: #555
|
1300
|
+
}
|
1301
|
+
|
1302
|
+
.cm {
|
1303
|
+
color: #999
|
1304
|
+
}
|
1305
|
+
|
1306
|
+
.cp {
|
1307
|
+
color: #099
|
1308
|
+
}
|
1309
|
+
|
1310
|
+
.c1 {
|
1311
|
+
color: #999
|
1312
|
+
}
|
1313
|
+
|
1314
|
+
.cs {
|
1315
|
+
color: #999
|
1316
|
+
}
|
1317
|
+
|
1318
|
+
.gd {
|
1319
|
+
background-color: #FCC;
|
1320
|
+
border: 1px solid #C00
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
.ge {
|
1324
|
+
font-style: italic
|
1325
|
+
}
|
1326
|
+
|
1327
|
+
.gr {
|
1328
|
+
color: red
|
1329
|
+
}
|
1330
|
+
|
1331
|
+
.gh {
|
1332
|
+
color: #030
|
1333
|
+
}
|
1334
|
+
|
1335
|
+
.gi {
|
1336
|
+
background-color: #CFC;
|
1337
|
+
border: 1px solid #0C0
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.go {
|
1341
|
+
color: #AAA
|
1342
|
+
}
|
1343
|
+
|
1344
|
+
.gp {
|
1345
|
+
color: #009
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
.gu {
|
1349
|
+
color: #030
|
1350
|
+
}
|
1351
|
+
|
1352
|
+
.gt {
|
1353
|
+
color: #9C6
|
1354
|
+
}
|
1355
|
+
|
1356
|
+
.kc {
|
1357
|
+
color: #069
|
1358
|
+
}
|
1359
|
+
|
1360
|
+
.kd {
|
1361
|
+
color: #069
|
1362
|
+
}
|
1363
|
+
|
1364
|
+
.kn {
|
1365
|
+
color: #069
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
.kp {
|
1369
|
+
color: #069
|
1370
|
+
}
|
1371
|
+
|
1372
|
+
.kr {
|
1373
|
+
color: #069
|
1374
|
+
}
|
1375
|
+
|
1376
|
+
.kt {
|
1377
|
+
color: #078
|
1378
|
+
}
|
1379
|
+
|
1380
|
+
.m {
|
1381
|
+
color: #F60
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
.s {
|
1385
|
+
color: #d44950
|
1386
|
+
}
|
1387
|
+
|
1388
|
+
.na {
|
1389
|
+
color: #4f9fcf
|
1390
|
+
}
|
1391
|
+
|
1392
|
+
.nb {
|
1393
|
+
color: #366
|
1394
|
+
}
|
1395
|
+
|
1396
|
+
.nc {
|
1397
|
+
color: #0A8
|
1398
|
+
}
|
1399
|
+
|
1400
|
+
.no {
|
1401
|
+
color: #360
|
1402
|
+
}
|
1403
|
+
|
1404
|
+
.nd {
|
1405
|
+
color: #99F
|
1406
|
+
}
|
1407
|
+
|
1408
|
+
.ni {
|
1409
|
+
color: #999
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
.ne {
|
1413
|
+
color: #C00
|
1414
|
+
}
|
1415
|
+
|
1416
|
+
.nf {
|
1417
|
+
color: #C0F
|
1418
|
+
}
|
1419
|
+
|
1420
|
+
.nl {
|
1421
|
+
color: #99F
|
1422
|
+
}
|
1423
|
+
|
1424
|
+
.nn {
|
1425
|
+
color: #0CF
|
1426
|
+
}
|
1427
|
+
|
1428
|
+
.nt {
|
1429
|
+
color: #2f6f9f
|
1430
|
+
}
|
1431
|
+
|
1432
|
+
.nv {
|
1433
|
+
color: #033
|
1434
|
+
}
|
1435
|
+
|
1436
|
+
.ow {
|
1437
|
+
color: #000
|
1438
|
+
}
|
1439
|
+
|
1440
|
+
.w {
|
1441
|
+
color: #bbb
|
1442
|
+
}
|
1443
|
+
|
1444
|
+
.mf {
|
1445
|
+
color: #F60
|
1446
|
+
}
|
1447
|
+
|
1448
|
+
.mh {
|
1449
|
+
color: #F60
|
1450
|
+
}
|
1451
|
+
|
1452
|
+
.mi {
|
1453
|
+
color: #F60
|
1454
|
+
}
|
1455
|
+
|
1456
|
+
.mo {
|
1457
|
+
color: #F60
|
1458
|
+
}
|
1459
|
+
|
1460
|
+
.sb {
|
1461
|
+
color: #C30
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
.sc {
|
1465
|
+
color: #C30
|
1466
|
+
}
|
1467
|
+
|
1468
|
+
.sd {
|
1469
|
+
color: #C30;
|
1470
|
+
font-style: italic
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
.s2 {
|
1474
|
+
color: #C30
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
.se {
|
1478
|
+
color: #C30
|
1479
|
+
}
|
1480
|
+
|
1481
|
+
.sh {
|
1482
|
+
color: #C30
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
.si {
|
1486
|
+
color: #A00
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
.sx {
|
1490
|
+
color: #C30
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
.sr {
|
1494
|
+
color: #3AA
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
.s1 {
|
1498
|
+
color: #C30
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
.ss {
|
1502
|
+
color: #FC3
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
.bp {
|
1506
|
+
color: #366
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
.vc {
|
1510
|
+
color: #033
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
.vg {
|
1514
|
+
color: #033
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
.vi {
|
1518
|
+
color: #033
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
.il {
|
1522
|
+
color: #F60
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
.css .o, .css .o+.nt, .css .nt+.nt {
|
1526
|
+
color: #999
|
1527
|
+
}
|