jekyll-docs-theme 0.1.2 → 1.0.0.pre.beta.1
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 +4 -4
- data/LICENSE.md +20 -16
- data/README.md +8 -35
- data/_includes/anchor_headings.html +109 -0
- data/_includes/fa-icon.html +13 -0
- data/_includes/footer/content-post.html +4 -0
- data/_includes/footer/content-pre.html +4 -0
- data/_includes/footer/content.html +137 -0
- data/_includes/footer/full.html +13 -0
- data/_includes/footer/scripts-post.html +4 -0
- data/_includes/footer/scripts-pre.html +4 -0
- data/_includes/footer/scripts.html +48 -0
- data/_includes/head/base.html +3 -0
- data/_includes/head/content-post.html +0 -0
- data/_includes/head/content-pre.html +0 -0
- data/_includes/head/content.html +8 -0
- data/_includes/head/full.html +9 -0
- data/_includes/head/stylesheets-post.html +0 -0
- data/_includes/head/stylesheets-pre.html +0 -0
- data/_includes/head/stylesheets.html +16 -0
- data/_includes/internal/variables.html +21 -0
- data/_includes/masthead.html +13 -0
- data/_includes/masthead/button.html +11 -0
- data/_includes/masthead/buttons.html +30 -0
- data/_includes/masthead/title.html +7 -0
- data/_includes/navigation.html +37 -19
- data/_includes/toc.html +87 -0
- data/_layouts/default.html +4 -4
- data/_layouts/full.html +5 -3
- data/_layouts/page.html +46 -11
- data/_sass/abstracts/_highlight-dark.scss +136 -0
- data/_sass/abstracts/_highlight-light.scss +251 -0
- data/_sass/abstracts/_themer.scss +18 -0
- data/_sass/abstracts/_variables.scss +6 -0
- data/_sass/base/_anchor.scss +20 -0
- data/_sass/base/_body.scss +12 -0
- data/_sass/base/_scope-markdown.scss +94 -0
- data/_sass/components/_alert.scss +5 -0
- data/_sass/components/_footer.scss +39 -0
- data/_sass/components/_header.scss +22 -0
- data/_sass/components/_highlight.scss +59 -0
- data/_sass/components/_masthead.scss +62 -0
- data/_sass/components/_mobile-toc.scss +30 -0
- data/_sass/components/_sidebar.scss +84 -0
- data/_sass/utilities/_colors.scss +301 -0
- data/_sass/utilities/_js.scss +3 -0
- data/assets/css/styles.scss +38 -50
- data/assets/js/docs.js +49 -0
- metadata +48 -27
- data/_includes/footer.html +0 -91
- data/_includes/head.html +0 -26
- data/_includes/jumbotron.html +0 -21
- data/assets/css/docs.css +0 -1527
- data/assets/js/docs.min.js +0 -49
data/assets/css/styles.scss
CHANGED
@@ -1,53 +1,41 @@
|
|
1
1
|
---
|
2
2
|
---
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
}
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
}
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
position:relative;
|
43
|
-
|
44
|
-
&:after {
|
45
|
-
content: "";
|
46
|
-
position: absolute;
|
47
|
-
bottom: 0;
|
48
|
-
right: 0;
|
49
|
-
height: 50px;
|
50
|
-
width: 30%;
|
51
|
-
background: linear-gradient(135deg, transparent 50px, white 50px);
|
52
|
-
}
|
53
|
-
}
|
4
|
+
$site-ui-mode: {{ site.ui.mode | default: 'auto' }};
|
5
|
+
|
6
|
+
$site-ui-brand-dark: {{ site.ui.brand.dark | default: '#00ceff' }};
|
7
|
+
$site-ui-brand-light: {{ site.ui.brand.light | default: '#a20000' }};
|
8
|
+
|
9
|
+
$site-ui-border-color-dark: {{ site.ui.border_color.dark | default: '#5f5f5f' }};
|
10
|
+
$site-ui-border-color-light: {{ site.ui.border_color.light | default: '#dee2e6' }};
|
11
|
+
|
12
|
+
$site-ui-header-dark-color1: {{ site.ui.header.dark.color1 | default: '#062a48' }};
|
13
|
+
$site-ui-header-dark-color2: {{ site.ui.header.dark.color2 | default: '#304e67' }};
|
14
|
+
$site-ui-header-light-color1: {{ site.ui.header.light.color1 | default: '#080331' }};
|
15
|
+
$site-ui-header-light-color2: {{ site.ui.header.light.color2 | default: '#673051' }};
|
16
|
+
|
17
|
+
$site-ui-masthead-color-dark: {{ site.ui.masthead.color.dark | default: '#fff' }};
|
18
|
+
$site-ui-masthead-color-light: {{ site.ui.masthead.color.light | default: '#fff' }};
|
19
|
+
|
20
|
+
@import 'abstracts/highlight-dark';
|
21
|
+
@import 'abstracts/highlight-light';
|
22
|
+
@import 'abstracts/themer';
|
23
|
+
@import 'abstracts/variables';
|
24
|
+
|
25
|
+
// Base Styles
|
26
|
+
@import 'base/anchor';
|
27
|
+
@import 'base/body';
|
28
|
+
@import 'base/scope-markdown';
|
29
|
+
|
30
|
+
// Components
|
31
|
+
@import 'components/alert';
|
32
|
+
@import 'components/footer';
|
33
|
+
@import 'components/header';
|
34
|
+
@import 'components/highlight';
|
35
|
+
@import 'components/masthead';
|
36
|
+
@import 'components/mobile-toc';
|
37
|
+
@import 'components/sidebar';
|
38
|
+
|
39
|
+
// Utilities
|
40
|
+
@import 'utilities/colors';
|
41
|
+
@import 'utilities/js';
|
data/assets/js/docs.js
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
$(function() {
|
2
|
+
$('html').toggleClass('no-js js');
|
3
|
+
|
4
|
+
// Update sidebar highlighting based on Scrollspy
|
5
|
+
$(window).on('activate.bs.scrollspy', function () {
|
6
|
+
const spyTarget = $('[data-spy="scroll"]').data('target');
|
7
|
+
const $activeSpy = $(spyTarget).find('.nav-link.active');
|
8
|
+
const $tree = $activeSpy.parentsUntil('.bs-docs-sidenav', 'li');
|
9
|
+
|
10
|
+
$tree.find('> a').addClass('active');
|
11
|
+
});
|
12
|
+
|
13
|
+
// Toggleable mobile table of contents button
|
14
|
+
$('.toggle-toc').on('click', function () {
|
15
|
+
const $this = $(this);
|
16
|
+
const $toc = $("#mobileTOC");
|
17
|
+
|
18
|
+
$toc.toggle();
|
19
|
+
$this.attr('aria-expanded', $toc.is(':visible'));
|
20
|
+
|
21
|
+
const $btn = $this.find('[data-role="toggle"]');
|
22
|
+
|
23
|
+
if ($btn.text() === 'Hide') {
|
24
|
+
$btn.text('Show');
|
25
|
+
} else {
|
26
|
+
$btn.text('Hide');
|
27
|
+
}
|
28
|
+
});
|
29
|
+
|
30
|
+
// Make the triangular pattern in the header
|
31
|
+
if (uiColors) {
|
32
|
+
const $masthead = $('.site-masthead');
|
33
|
+
|
34
|
+
if ($masthead.length) {
|
35
|
+
const t = new Trianglify({
|
36
|
+
cellsize: 90,
|
37
|
+
noiseIntensity: 0,
|
38
|
+
x_gradient: [
|
39
|
+
uiColors[0],
|
40
|
+
uiColors[1],
|
41
|
+
],
|
42
|
+
});
|
43
|
+
const pattern = t.generate(window.screen.width | $masthead.outerWidth(), $masthead.outerHeight() * 1.2);
|
44
|
+
|
45
|
+
const style = $('<style>.site-masthead { background-image: ' + pattern.dataUrl + '; }</style>');
|
46
|
+
$('html > head').append(style);
|
47
|
+
}
|
48
|
+
}
|
49
|
+
});
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-docs-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 1.0.0.pre.beta.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladimir 'allejo' Jimenez
|
@@ -16,65 +16,86 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.5'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
26
|
+
version: '3.5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '1
|
33
|
+
version: '2.1'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '1
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '10.0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '10.0'
|
40
|
+
version: '2.1'
|
55
41
|
description:
|
56
42
|
email:
|
57
|
-
- allejo
|
43
|
+
- me@allejo.io
|
58
44
|
executables: []
|
59
45
|
extensions: []
|
60
46
|
extra_rdoc_files: []
|
61
47
|
files:
|
62
48
|
- LICENSE.md
|
63
49
|
- README.md
|
50
|
+
- _includes/anchor_headings.html
|
64
51
|
- _includes/disqus.html
|
52
|
+
- _includes/fa-icon.html
|
65
53
|
- _includes/facebook.html
|
66
|
-
- _includes/footer.html
|
54
|
+
- _includes/footer/content-post.html
|
55
|
+
- _includes/footer/content-pre.html
|
56
|
+
- _includes/footer/content.html
|
57
|
+
- _includes/footer/full.html
|
58
|
+
- _includes/footer/scripts-post.html
|
59
|
+
- _includes/footer/scripts-pre.html
|
60
|
+
- _includes/footer/scripts.html
|
67
61
|
- _includes/google-analytics.html
|
68
|
-
- _includes/head.html
|
69
|
-
- _includes/
|
62
|
+
- _includes/head/base.html
|
63
|
+
- _includes/head/content-post.html
|
64
|
+
- _includes/head/content-pre.html
|
65
|
+
- _includes/head/content.html
|
66
|
+
- _includes/head/full.html
|
67
|
+
- _includes/head/stylesheets-post.html
|
68
|
+
- _includes/head/stylesheets-pre.html
|
69
|
+
- _includes/head/stylesheets.html
|
70
|
+
- _includes/internal/variables.html
|
71
|
+
- _includes/masthead.html
|
72
|
+
- _includes/masthead/button.html
|
73
|
+
- _includes/masthead/buttons.html
|
74
|
+
- _includes/masthead/title.html
|
70
75
|
- _includes/navigation.html
|
76
|
+
- _includes/toc.html
|
71
77
|
- _includes/twitter.html
|
72
78
|
- _layouts/default.html
|
73
79
|
- _layouts/full.html
|
74
80
|
- _layouts/page.html
|
75
|
-
-
|
81
|
+
- _sass/abstracts/_highlight-dark.scss
|
82
|
+
- _sass/abstracts/_highlight-light.scss
|
83
|
+
- _sass/abstracts/_themer.scss
|
84
|
+
- _sass/abstracts/_variables.scss
|
85
|
+
- _sass/base/_anchor.scss
|
86
|
+
- _sass/base/_body.scss
|
87
|
+
- _sass/base/_scope-markdown.scss
|
88
|
+
- _sass/components/_alert.scss
|
89
|
+
- _sass/components/_footer.scss
|
90
|
+
- _sass/components/_header.scss
|
91
|
+
- _sass/components/_highlight.scss
|
92
|
+
- _sass/components/_masthead.scss
|
93
|
+
- _sass/components/_mobile-toc.scss
|
94
|
+
- _sass/components/_sidebar.scss
|
95
|
+
- _sass/utilities/_colors.scss
|
96
|
+
- _sass/utilities/_js.scss
|
76
97
|
- assets/css/styles.scss
|
77
|
-
- assets/js/docs.
|
98
|
+
- assets/js/docs.js
|
78
99
|
homepage: https://github.com/allejo/jekyll-docs-theme
|
79
100
|
licenses:
|
80
101
|
- MIT
|
@@ -91,9 +112,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
112
|
version: '0'
|
92
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
114
|
requirements:
|
94
|
-
- - "
|
115
|
+
- - ">"
|
95
116
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
117
|
+
version: 1.3.1
|
97
118
|
requirements: []
|
98
119
|
rubygems_version: 3.0.3
|
99
120
|
signing_key:
|
data/_includes/footer.html
DELETED
@@ -1,91 +0,0 @@
|
|
1
|
-
<footer class="bs-docs-footer" role="contentinfo">
|
2
|
-
<div class="container">
|
3
|
-
<div class="bs-docs-social">
|
4
|
-
<ul class="bs-docs-social-buttons">
|
5
|
-
{% if site.social.github.user and site.social.github.repo %}
|
6
|
-
<li>
|
7
|
-
<iframe class="github-btn"
|
8
|
-
src="https://ghbtns.com/github-btn.html?user={{ site.social.github.user }}&repo={{ site.social.github.repo }}&type=watch&count=true"
|
9
|
-
width="90"
|
10
|
-
height="20"
|
11
|
-
title="Star on GitHub"></iframe>
|
12
|
-
</li>
|
13
|
-
<li>
|
14
|
-
<iframe class="github-btn"
|
15
|
-
src="https://ghbtns.com/github-btn.html?user={{ site.social.github.user }}&repo={{ site.social.github.repo }}&type=fork&count=true"
|
16
|
-
width="90"
|
17
|
-
height="20"
|
18
|
-
title="Fork on GitHub"></iframe>
|
19
|
-
</li>
|
20
|
-
{% endif %}
|
21
|
-
{% if site.social.twitter.enabled %}
|
22
|
-
<li>
|
23
|
-
<a href="https://twitter.com/share"
|
24
|
-
class="twitter-share-button"
|
25
|
-
data-url="{{ site.github.url }}"
|
26
|
-
data-count="horizontal"
|
27
|
-
data-via="{{ site.social.twitter.via }}"
|
28
|
-
data-text="{{ site.name }}"
|
29
|
-
data-hashtags="{{ site.social.twitter.hash }}">Tweet</a>
|
30
|
-
</li>
|
31
|
-
{% endif %}
|
32
|
-
{% if site.twitter.account %}
|
33
|
-
<li>
|
34
|
-
<a href="https://twitter.com/{{ site.social.twitter.account }}"
|
35
|
-
class="twitter-follow-button"
|
36
|
-
data-show-count="true">Follow @{{ site.social.twitter.account }}</a>
|
37
|
-
</li>
|
38
|
-
{% endif %}
|
39
|
-
{% if site.facebook.enabled %}
|
40
|
-
<li>
|
41
|
-
<div class="fb-like"
|
42
|
-
data-href="{{ site.github.url }}"
|
43
|
-
data-layout="button_count"
|
44
|
-
data-action="like"
|
45
|
-
data-show-faces="false"
|
46
|
-
data-share="true"></div>
|
47
|
-
</li>
|
48
|
-
{% endif %}
|
49
|
-
{% if site.facebook.profileUrl %}
|
50
|
-
<li>
|
51
|
-
<div class="fb-follow"
|
52
|
-
data-href="{{ site.social.facebook.profileUrl }}"
|
53
|
-
data-layout="button_count"
|
54
|
-
data-show-faces="false"></div>
|
55
|
-
</li>
|
56
|
-
{% endif %}
|
57
|
-
</ul>
|
58
|
-
</div>
|
59
|
-
|
60
|
-
<p>
|
61
|
-
Licensed under <a href="{{ site.license.software_url }}" target="_blank">{{ site.license.software }}</a>, documentation under <a href="{{ site.license.docs_url }}">{{ site.license.docs }}</a>.
|
62
|
-
</p>
|
63
|
-
<p>
|
64
|
-
Documentation template by <a href="http://getbootstrap.com">Bootstrap team</a>, generated with <a href="https://github.com/allejo/jekyll-docs-theme">Jekyll Docs Theme</a>
|
65
|
-
</p>
|
66
|
-
|
67
|
-
<ul class="bs-docs-footer-links muted">
|
68
|
-
{% if site.project.version %}
|
69
|
-
<li>Currently v{{ site.project.version }}</li>
|
70
|
-
{% endif %}
|
71
|
-
{% for l in site.links.footer %}
|
72
|
-
<li>·</li>
|
73
|
-
<li>
|
74
|
-
<a href="{{ l.url }}">{{ l.title }}</a>
|
75
|
-
</li>
|
76
|
-
{% endfor %}
|
77
|
-
</ul>
|
78
|
-
</div>
|
79
|
-
</footer>
|
80
|
-
|
81
|
-
{% if site.ui.header.trianglify %}
|
82
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
|
83
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/trianglify/0.1.2/trianglify.min.js"></script>
|
84
|
-
<script>
|
85
|
-
trianglify("{{ site.ui.header.color1 }}", "{{ site.ui.header.color2 }}");
|
86
|
-
</script>
|
87
|
-
{% endif %}
|
88
|
-
|
89
|
-
{% if site.analytics.google %}
|
90
|
-
{% include google-analytics.html %}
|
91
|
-
{% endif %}
|
data/_includes/head.html
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
<meta charset="utf-8">
|
2
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
3
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
4
|
-
|
5
|
-
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.name | escape }} {{ site.project.version | escape }}{% endif %}</title>
|
6
|
-
<meta name="description"
|
7
|
-
content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
8
|
-
|
9
|
-
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
10
|
-
<link rel="stylesheet" href="{{ "/assets/css/docs.css" | relative_url }}">
|
11
|
-
<link rel="stylesheet" href="{{ "/assets/css/styles.css" | relative_url }}">
|
12
|
-
|
13
|
-
<link rel="canonical" href="{{ page.url | replace: 'index.html', '' | absolute_url }}">
|
14
|
-
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
15
|
-
|
16
|
-
<style>
|
17
|
-
#jumbotron-header {
|
18
|
-
background: {{ site.ui.header.color1 }};
|
19
|
-
background: linear-gradient(135deg, {{ site.ui.header.color1 }}, {{ site.ui.header.color2 }});
|
20
|
-
}
|
21
|
-
</style>
|
22
|
-
|
23
|
-
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
|
24
|
-
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
25
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/stickyfill/1.1.4/stickyfill.min.js"></script>
|
26
|
-
<script src="{{ '/assets/js/docs.min.js' | relative_url }}"></script>
|
data/_includes/jumbotron.html
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
{% if page.homepage %}
|
2
|
-
<div class="bs-docs-masthead" id="jumbotron-header">
|
3
|
-
<div class="container">
|
4
|
-
<h1 class="home-title">{{ site.name }}</h1>
|
5
|
-
<p class="lead">{{ page.description }}</p>
|
6
|
-
<p class="lead">
|
7
|
-
<a href="{{ site.project.download_url }}" class="btn btn-outline-inverse btn-lg">Download</a>
|
8
|
-
</p>
|
9
|
-
{% if site.project.version %}
|
10
|
-
<p class="version">Currently v{{ site.project.version }}</p>
|
11
|
-
{% endif %}
|
12
|
-
</div>
|
13
|
-
</div>
|
14
|
-
{% else %}
|
15
|
-
<div class="bs-docs-header" id="jumbotron-header">
|
16
|
-
<div class="container">
|
17
|
-
<h1>{{ page.title }}</h1>
|
18
|
-
<p>{{ page.description }}</p>
|
19
|
-
</div>
|
20
|
-
</div>
|
21
|
-
{% endif %}
|
data/assets/css/docs.css
DELETED
@@ -1,1527 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* Bootstrap Docs (http://getbootstrap.com)
|
3
|
-
* Copyright 2011-2014 Twitter, Inc.
|
4
|
-
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
5
|
-
* details, see http://creativecommons.org/licenses/by/3.0/.
|
6
|
-
*/
|
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
|
-
}
|