beautiful-jekyll-theme 1.1.1 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +5 -5
  2. data/404.html +13 -0
  3. data/{LICENSE.txt → LICENSE} +6 -6
  4. data/README.md +185 -210
  5. data/_data/ui-text.yml +494 -0
  6. data/_includes/comments.html +6 -0
  7. data/_includes/disqus.html +18 -16
  8. data/_includes/ext-css.html +7 -0
  9. data/_includes/ext-js.html +7 -0
  10. data/_includes/fb-comment.html +16 -0
  11. data/_includes/footer-minimal.html +13 -14
  12. data/_includes/footer-scripts.html +16 -18
  13. data/_includes/footer.html +30 -170
  14. data/_includes/google_analytics.html +13 -11
  15. data/_includes/gtag.html +10 -0
  16. data/_includes/gtm_body.html +5 -0
  17. data/_includes/gtm_head.html +11 -0
  18. data/_includes/head.html +77 -45
  19. data/_includes/header.html +47 -39
  20. data/_includes/matomo.html +17 -0
  21. data/_includes/nav.html +38 -51
  22. data/_includes/readtime.html +16 -0
  23. data/_includes/social-networks-links.html +267 -0
  24. data/_includes/social-share.html +32 -24
  25. data/_includes/staticman-comment.html +22 -0
  26. data/_includes/staticman-comments.html +83 -0
  27. data/_includes/utterances-comment.html +13 -0
  28. data/_layouts/base.html +16 -9
  29. data/_layouts/default.html +2 -2
  30. data/_layouts/home.html +88 -0
  31. data/_layouts/minimal.html +14 -8
  32. data/_layouts/page.html +3 -7
  33. data/_layouts/post.html +40 -16
  34. data/assets/css/main-minimal.css +2 -2
  35. data/assets/css/main.css +531 -250
  36. data/assets/css/pygment_highlights.css +0 -5
  37. data/assets/css/staticman.css +180 -0
  38. data/assets/img/404-southpark.jpg +0 -0
  39. data/assets/img/avatar-icon.png +0 -0
  40. data/assets/img/bgimage.png +0 -0
  41. data/assets/img/hello_world.jpeg +0 -0
  42. data/assets/img/install-steps.gif +0 -0
  43. data/assets/img/path.jpg +0 -0
  44. data/assets/img/thumb.png +0 -0
  45. data/assets/js/main.js +64 -103
  46. data/assets/js/staticman.js +54 -0
  47. data/{assets/feed.xml → feed.xml} +8 -4
  48. data/tags.html +36 -0
  49. metadata +57 -28
  50. data/_includes/navbarlink.html +0 -16
  51. data/_layouts/tag_index.html +0 -41
  52. data/assets/css/bootstrap-theme.css +0 -476
  53. data/assets/css/bootstrap-theme.css.map +0 -1
  54. data/assets/css/bootstrap-theme.min.css +0 -5
  55. data/assets/css/bootstrap.css +0 -6566
  56. data/assets/css/bootstrap.css.map +0 -1
  57. data/assets/css/bootstrap.min.css +0 -5
  58. data/assets/css/normalize.css +0 -427
  59. data/assets/js/bootstrap.js +0 -2306
  60. data/assets/js/bootstrap.min.js +0 -7
  61. data/assets/js/jquery-1.11.2.min.js +0 -4
@@ -4,10 +4,14 @@ layout: null
4
4
  <?xml version="1.0" encoding="UTF-8"?>
5
5
  <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6
6
  <channel>
7
+ {% if site.title %}
7
8
  <title>{{ site.title | xml_escape }}</title>
9
+ {% endif %}
10
+ {% if site.description %}
8
11
  <description>{{ site.description | xml_escape }}</description>
9
- <link>{{ site.url }}</link>
10
- <atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
12
+ {% endif %}
13
+ <link>{{ '' | absolute_url }}</link>
14
+ <atom:link href="{{ 'feed.xml' | absolute_url }}" rel="self" type="application/rss+xml" />
11
15
  {% for post in site.posts limit:20 %}
12
16
  <item>
13
17
  <title>{{ post.title | xml_escape }}</title>
@@ -16,8 +20,8 @@ layout: null
16
20
  {{ post.content | strip_html | xml_escape | truncatewords: 50 }}
17
21
  </description>
18
22
  <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
19
- <link>{{ site.url }}{{ post.url }}</link>
20
- <guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
23
+ <link>{{ post.url | absolute_url }}</link>
24
+ <guid isPermaLink="true">{{ post.url | absolute_url }}</guid>
21
25
  </item>
22
26
  {% endfor %}
23
27
  </channel>
@@ -0,0 +1,36 @@
1
+ ---
2
+ layout: page
3
+ title: 'Tag Index'
4
+ ---
5
+
6
+ {% assign date_format = site.date_format | default: "%B %-d, %Y" %}
7
+
8
+ {%- capture site_tags -%}
9
+ {%- for tag in site.tags -%}
10
+ {{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%}
11
+ {%- endfor -%}
12
+ {%- endcapture -%}
13
+ {%- assign tags_list = site_tags | split:',' | sort -%}
14
+
15
+ {%- for tag in tags_list -%}
16
+ <a href="#{{- tag -}}" class="btn btn-primary tag-btn"><i class="fas fa-tag" aria-hidden="true"></i>&nbsp;{{- tag -}}&nbsp;({{site.tags[tag].size}})</a>
17
+ {%- endfor -%}
18
+
19
+ <div id="full-tags-list">
20
+ {%- for tag in tags_list -%}
21
+ <h2 id="{{- tag -}}" class="linked-section">
22
+ <i class="fas fa-tag" aria-hidden="true"></i>
23
+ &nbsp;{{- tag -}}&nbsp;({{site.tags[tag].size}})
24
+ </h2>
25
+ <div class="post-list">
26
+ {%- for post in site.tags[tag] -%}
27
+ <div class="tag-entry">
28
+ <a href="{{ post.url | relative_url }}">{{- post.title -}}</a>
29
+ <div class="entry-date">
30
+ <time datetime="{{- post.date | date_to_xmlschema -}}">{{- post.date | date: date_format -}}</time>
31
+ </div>
32
+ </div>
33
+ {%- endfor -%}
34
+ </div>
35
+ {%- endfor -%}
36
+ </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beautiful-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dean Attali
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-25 00:00:00.000000000 Z
11
+ date: 2020-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.3'
19
+ version: '3.8'
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.3'
26
+ version: '3.8'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jekyll-paginate
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -39,33 +39,47 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.1'
41
41
  - !ruby/object:Gem::Dependency
42
- name: bundler
42
+ name: jekyll-sitemap
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.12'
48
- type: :development
47
+ version: '1.4'
48
+ type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.12'
54
+ version: '1.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '1.16'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '1.16'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rake
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
73
  - - "~>"
60
74
  - !ruby/object:Gem::Version
61
- version: '10.0'
75
+ version: '12.0'
62
76
  type: :development
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
80
  - - "~>"
67
81
  - !ruby/object:Gem::Version
68
- version: '10.0'
82
+ version: '12.0'
69
83
  description:
70
84
  email:
71
85
  - daattali@gmail.com
@@ -73,44 +87,60 @@ executables: []
73
87
  extensions: []
74
88
  extra_rdoc_files: []
75
89
  files:
76
- - LICENSE.txt
90
+ - 404.html
91
+ - LICENSE
77
92
  - README.md
93
+ - _data/ui-text.yml
94
+ - _includes/comments.html
78
95
  - _includes/disqus.html
96
+ - _includes/ext-css.html
97
+ - _includes/ext-js.html
98
+ - _includes/fb-comment.html
79
99
  - _includes/footer-minimal.html
80
100
  - _includes/footer-scripts.html
81
101
  - _includes/footer.html
82
102
  - _includes/google_analytics.html
103
+ - _includes/gtag.html
104
+ - _includes/gtm_body.html
105
+ - _includes/gtm_head.html
83
106
  - _includes/head.html
84
107
  - _includes/header.html
108
+ - _includes/matomo.html
85
109
  - _includes/nav.html
86
- - _includes/navbarlink.html
110
+ - _includes/readtime.html
111
+ - _includes/social-networks-links.html
87
112
  - _includes/social-share.html
113
+ - _includes/staticman-comment.html
114
+ - _includes/staticman-comments.html
115
+ - _includes/utterances-comment.html
88
116
  - _layouts/base.html
89
117
  - _layouts/default.html
118
+ - _layouts/home.html
90
119
  - _layouts/minimal.html
91
120
  - _layouts/page.html
92
121
  - _layouts/post.html
93
- - _layouts/tag_index.html
94
122
  - assets/css/bootstrap-social.css
95
- - assets/css/bootstrap-theme.css
96
- - assets/css/bootstrap-theme.css.map
97
- - assets/css/bootstrap-theme.min.css
98
- - assets/css/bootstrap.css
99
- - assets/css/bootstrap.css.map
100
- - assets/css/bootstrap.min.css
101
123
  - assets/css/main-minimal.css
102
124
  - assets/css/main.css
103
- - assets/css/normalize.css
104
125
  - assets/css/pygment_highlights.css
105
- - assets/feed.xml
106
- - assets/js/bootstrap.js
107
- - assets/js/bootstrap.min.js
108
- - assets/js/jquery-1.11.2.min.js
126
+ - assets/css/staticman.css
127
+ - assets/img/404-southpark.jpg
128
+ - assets/img/avatar-icon.png
129
+ - assets/img/bgimage.png
130
+ - assets/img/hello_world.jpeg
131
+ - assets/img/install-steps.gif
132
+ - assets/img/path.jpg
133
+ - assets/img/thumb.png
109
134
  - assets/js/main.js
110
- homepage: http://deanattali.com/beautiful-jekyll
135
+ - assets/js/staticman.js
136
+ - feed.xml
137
+ - tags.html
138
+ homepage: https://beautifuljekyll.com
111
139
  licenses:
112
140
  - MIT
113
- metadata: {}
141
+ metadata:
142
+ changelog_uri: https://github.com/daattali/beautiful-jekyll/blob/master/CHANGELOG.md
143
+ documentation_uri: https://github.com/daattali/beautiful-jekyll#readme
114
144
  post_install_message:
115
145
  rdoc_options: []
116
146
  require_paths:
@@ -126,8 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
156
  - !ruby/object:Gem::Version
127
157
  version: '0'
128
158
  requirements: []
129
- rubyforge_project:
130
- rubygems_version: 2.5.1
159
+ rubygems_version: 3.1.2
131
160
  signing_key:
132
161
  specification_version: 4
133
162
  summary: Beautiful Jekyll is a ready-to-use Jekyll theme to help you create an awesome
@@ -1,16 +0,0 @@
1
- {% capture before %}{{ include.link[1] | split: "://" | first }}{% endcapture %}
2
- {% capture after %}{{ include.link[1] | split: "://" | last }}{% endcapture %}
3
- {% assign internal = true %}
4
- {% if before != after %}
5
- {% if before == "http" or before == "https" %}
6
- {% assign internal = false %}
7
- {% endif %}
8
- {% endif %}
9
-
10
- {% if internal %}
11
- {% capture linkurl %}/{{ include.link[1] }}{% endcapture %}
12
- {% else %}
13
- {% capture linkurl %}{{ include.link[1] }}{% endcapture %}
14
- {% endif %}
15
-
16
- <a href="{{ linkurl }}">{{ include.link[0] }}</a>
@@ -1,41 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
-
5
- <h2 class="post_title">{{page.title}}:</h2>
6
-
7
- <div class="posts-list">
8
- {% for post in site.posts %}
9
- {% for tag in post.tags %}
10
- {% if tag == page.tag %}
11
- <article class="post-preview">
12
- <a href="{{ post.url }}">
13
- <h3 class="post-title">{{ post.title }}</h3>
14
-
15
- {% if post.subtitle %}
16
- <h4 class="post-subtitle">
17
- {{ post.subtitle }}
18
- </h4>
19
- {% endif %}
20
- </a>
21
-
22
- <p class="post-meta">
23
- Posted on {{ post.date | date: "%B %-d, %Y" }}
24
- </p>
25
-
26
- <div class="post-entry">
27
- {{ post.content | strip_html | xml_escape | truncatewords: 50 }}
28
- <a href="{{ post.url }}" class="post-read-more">[Read&nbsp;More]</a>
29
- </div>
30
-
31
- <div class="blog-tags">
32
- Tags:
33
- {% for tag in post.tags %}
34
- <a href="/tag/{{ tag }}">{{ tag }}</a>
35
- {% endfor %}
36
- </div>
37
- </article>
38
- {% endif %}
39
- {% endfor %}
40
- {% endfor %}
41
- </div>
@@ -1,476 +0,0 @@
1
- /*!
2
- * Bootstrap v3.3.2 (http://getbootstrap.com)
3
- * Copyright 2011-2015 Twitter, Inc.
4
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */
6
-
7
- .btn-default,
8
- .btn-primary,
9
- .btn-success,
10
- .btn-info,
11
- .btn-warning,
12
- .btn-danger {
13
- text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
14
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
15
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
16
- }
17
- .btn-default:active,
18
- .btn-primary:active,
19
- .btn-success:active,
20
- .btn-info:active,
21
- .btn-warning:active,
22
- .btn-danger:active,
23
- .btn-default.active,
24
- .btn-primary.active,
25
- .btn-success.active,
26
- .btn-info.active,
27
- .btn-warning.active,
28
- .btn-danger.active {
29
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
30
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
31
- }
32
- .btn-default .badge,
33
- .btn-primary .badge,
34
- .btn-success .badge,
35
- .btn-info .badge,
36
- .btn-warning .badge,
37
- .btn-danger .badge {
38
- text-shadow: none;
39
- }
40
- .btn:active,
41
- .btn.active {
42
- background-image: none;
43
- }
44
- .btn-default {
45
- text-shadow: 0 1px 0 #fff;
46
- background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
47
- background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
48
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
49
- background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
50
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
51
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
52
- background-repeat: repeat-x;
53
- border-color: #dbdbdb;
54
- border-color: #ccc;
55
- }
56
- .btn-default:hover,
57
- .btn-default:focus {
58
- background-color: #e0e0e0;
59
- background-position: 0 -15px;
60
- }
61
- .btn-default:active,
62
- .btn-default.active {
63
- background-color: #e0e0e0;
64
- border-color: #dbdbdb;
65
- }
66
- .btn-default.disabled,
67
- .btn-default:disabled,
68
- .btn-default[disabled] {
69
- background-color: #e0e0e0;
70
- background-image: none;
71
- }
72
- .btn-primary {
73
- background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
74
- background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
75
- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
76
- background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
77
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
78
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
79
- background-repeat: repeat-x;
80
- border-color: #245580;
81
- }
82
- .btn-primary:hover,
83
- .btn-primary:focus {
84
- background-color: #265a88;
85
- background-position: 0 -15px;
86
- }
87
- .btn-primary:active,
88
- .btn-primary.active {
89
- background-color: #265a88;
90
- border-color: #245580;
91
- }
92
- .btn-primary.disabled,
93
- .btn-primary:disabled,
94
- .btn-primary[disabled] {
95
- background-color: #265a88;
96
- background-image: none;
97
- }
98
- .btn-success {
99
- background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
100
- background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
101
- background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
102
- background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
103
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
104
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
105
- background-repeat: repeat-x;
106
- border-color: #3e8f3e;
107
- }
108
- .btn-success:hover,
109
- .btn-success:focus {
110
- background-color: #419641;
111
- background-position: 0 -15px;
112
- }
113
- .btn-success:active,
114
- .btn-success.active {
115
- background-color: #419641;
116
- border-color: #3e8f3e;
117
- }
118
- .btn-success.disabled,
119
- .btn-success:disabled,
120
- .btn-success[disabled] {
121
- background-color: #419641;
122
- background-image: none;
123
- }
124
- .btn-info {
125
- background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
126
- background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
127
- background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
128
- background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
129
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
130
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
131
- background-repeat: repeat-x;
132
- border-color: #28a4c9;
133
- }
134
- .btn-info:hover,
135
- .btn-info:focus {
136
- background-color: #2aabd2;
137
- background-position: 0 -15px;
138
- }
139
- .btn-info:active,
140
- .btn-info.active {
141
- background-color: #2aabd2;
142
- border-color: #28a4c9;
143
- }
144
- .btn-info.disabled,
145
- .btn-info:disabled,
146
- .btn-info[disabled] {
147
- background-color: #2aabd2;
148
- background-image: none;
149
- }
150
- .btn-warning {
151
- background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
152
- background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
153
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
154
- background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
155
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
156
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
157
- background-repeat: repeat-x;
158
- border-color: #e38d13;
159
- }
160
- .btn-warning:hover,
161
- .btn-warning:focus {
162
- background-color: #eb9316;
163
- background-position: 0 -15px;
164
- }
165
- .btn-warning:active,
166
- .btn-warning.active {
167
- background-color: #eb9316;
168
- border-color: #e38d13;
169
- }
170
- .btn-warning.disabled,
171
- .btn-warning:disabled,
172
- .btn-warning[disabled] {
173
- background-color: #eb9316;
174
- background-image: none;
175
- }
176
- .btn-danger {
177
- background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
178
- background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
179
- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
180
- background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
181
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
182
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
183
- background-repeat: repeat-x;
184
- border-color: #b92c28;
185
- }
186
- .btn-danger:hover,
187
- .btn-danger:focus {
188
- background-color: #c12e2a;
189
- background-position: 0 -15px;
190
- }
191
- .btn-danger:active,
192
- .btn-danger.active {
193
- background-color: #c12e2a;
194
- border-color: #b92c28;
195
- }
196
- .btn-danger.disabled,
197
- .btn-danger:disabled,
198
- .btn-danger[disabled] {
199
- background-color: #c12e2a;
200
- background-image: none;
201
- }
202
- .thumbnail,
203
- .img-thumbnail {
204
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
205
- box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
206
- }
207
- .dropdown-menu > li > a:hover,
208
- .dropdown-menu > li > a:focus {
209
- background-color: #e8e8e8;
210
- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
211
- background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
212
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
213
- background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
214
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
215
- background-repeat: repeat-x;
216
- }
217
- .dropdown-menu > .active > a,
218
- .dropdown-menu > .active > a:hover,
219
- .dropdown-menu > .active > a:focus {
220
- background-color: #2e6da4;
221
- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
222
- background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
223
- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
224
- background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
225
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
226
- background-repeat: repeat-x;
227
- }
228
- .navbar-default {
229
- background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
230
- background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
231
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
232
- background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
233
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
234
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
235
- background-repeat: repeat-x;
236
- border-radius: 4px;
237
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
238
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
239
- }
240
- .navbar-default .navbar-nav > .open > a,
241
- .navbar-default .navbar-nav > .active > a {
242
- background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
243
- background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
244
- background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
245
- background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
246
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
247
- background-repeat: repeat-x;
248
- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
249
- box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
250
- }
251
- .navbar-brand,
252
- .navbar-nav > li > a {
253
- text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
254
- }
255
- .navbar-inverse {
256
- background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
257
- background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
258
- background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
259
- background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
260
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
261
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
262
- background-repeat: repeat-x;
263
- }
264
- .navbar-inverse .navbar-nav > .open > a,
265
- .navbar-inverse .navbar-nav > .active > a {
266
- background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
267
- background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
268
- background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
269
- background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
270
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
271
- background-repeat: repeat-x;
272
- -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
273
- box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
274
- }
275
- .navbar-inverse .navbar-brand,
276
- .navbar-inverse .navbar-nav > li > a {
277
- text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
278
- }
279
- .navbar-static-top,
280
- .navbar-fixed-top,
281
- .navbar-fixed-bottom {
282
- border-radius: 0;
283
- }
284
- @media (max-width: 767px) {
285
- .navbar .navbar-nav .open .dropdown-menu > .active > a,
286
- .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
287
- .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
288
- color: #fff;
289
- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
290
- background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
291
- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
292
- background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
293
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
294
- background-repeat: repeat-x;
295
- }
296
- }
297
- .alert {
298
- text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
299
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
300
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
301
- }
302
- .alert-success {
303
- background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
304
- background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
305
- background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
306
- background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
307
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
308
- background-repeat: repeat-x;
309
- border-color: #b2dba1;
310
- }
311
- .alert-info {
312
- background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
313
- background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
314
- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
315
- background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
316
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
317
- background-repeat: repeat-x;
318
- border-color: #9acfea;
319
- }
320
- .alert-warning {
321
- background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
322
- background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
323
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
324
- background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
325
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
326
- background-repeat: repeat-x;
327
- border-color: #f5e79e;
328
- }
329
- .alert-danger {
330
- background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
331
- background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
332
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
333
- background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
334
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
335
- background-repeat: repeat-x;
336
- border-color: #dca7a7;
337
- }
338
- .progress {
339
- background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
340
- background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
341
- background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
342
- background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
343
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
344
- background-repeat: repeat-x;
345
- }
346
- .progress-bar {
347
- background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
348
- background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
349
- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
350
- background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
351
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
352
- background-repeat: repeat-x;
353
- }
354
- .progress-bar-success {
355
- background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
356
- background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
357
- background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
358
- background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
359
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
360
- background-repeat: repeat-x;
361
- }
362
- .progress-bar-info {
363
- background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
364
- background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
365
- background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
366
- background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
367
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
368
- background-repeat: repeat-x;
369
- }
370
- .progress-bar-warning {
371
- background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
372
- background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
373
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
374
- background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
375
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
376
- background-repeat: repeat-x;
377
- }
378
- .progress-bar-danger {
379
- background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
380
- background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
381
- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
382
- background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
383
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
384
- background-repeat: repeat-x;
385
- }
386
- .progress-bar-striped {
387
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
388
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
389
- background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
390
- }
391
- .list-group {
392
- border-radius: 4px;
393
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
394
- box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
395
- }
396
- .list-group-item.active,
397
- .list-group-item.active:hover,
398
- .list-group-item.active:focus {
399
- text-shadow: 0 -1px 0 #286090;
400
- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
401
- background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
402
- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
403
- background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
404
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
405
- background-repeat: repeat-x;
406
- border-color: #2b669a;
407
- }
408
- .list-group-item.active .badge,
409
- .list-group-item.active:hover .badge,
410
- .list-group-item.active:focus .badge {
411
- text-shadow: none;
412
- }
413
- .panel {
414
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
415
- box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
416
- }
417
- .panel-default > .panel-heading {
418
- background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
419
- background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
420
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
421
- background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
422
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
423
- background-repeat: repeat-x;
424
- }
425
- .panel-primary > .panel-heading {
426
- background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
427
- background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
428
- background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
429
- background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
430
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
431
- background-repeat: repeat-x;
432
- }
433
- .panel-success > .panel-heading {
434
- background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
435
- background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
436
- background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
437
- background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
438
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
439
- background-repeat: repeat-x;
440
- }
441
- .panel-info > .panel-heading {
442
- background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
443
- background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
444
- background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
445
- background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
446
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
447
- background-repeat: repeat-x;
448
- }
449
- .panel-warning > .panel-heading {
450
- background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
451
- background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
452
- background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
453
- background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
454
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
455
- background-repeat: repeat-x;
456
- }
457
- .panel-danger > .panel-heading {
458
- background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
459
- background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
460
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
461
- background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
462
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
463
- background-repeat: repeat-x;
464
- }
465
- .well {
466
- background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
467
- background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
468
- background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
469
- background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
470
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
471
- background-repeat: repeat-x;
472
- border-color: #dcdcdc;
473
- -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
474
- box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
475
- }
476
- /*# sourceMappingURL=bootstrap-theme.css.map */