beautiful-jekyll-theme 2.3.0 → 5.0.0

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.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/404.html +1 -1
  3. data/README.md +119 -139
  4. data/_data/ui-text.yml +1 -1
  5. data/_includes/comments.html +2 -2
  6. data/_includes/disqus.html +11 -11
  7. data/_includes/ext-css.html +2 -2
  8. data/_includes/fb-comment.html +12 -10
  9. data/_includes/footer-minimal.html +11 -11
  10. data/_includes/footer-scripts.html +8 -2
  11. data/_includes/footer.html +15 -11
  12. data/_includes/google_analytics.html +8 -8
  13. data/_includes/gtag.html +2 -3
  14. data/_includes/gtm_body.html +3 -4
  15. data/_includes/gtm_head.html +9 -7
  16. data/_includes/head.html +90 -74
  17. data/_includes/header.html +52 -40
  18. data/_includes/nav.html +33 -44
  19. data/_includes/readtime.html +10 -10
  20. data/_includes/social-networks-links.html +57 -21
  21. data/_includes/social-share.html +8 -3
  22. data/_includes/staticman-comments.html +8 -8
  23. data/_includes/utterances-comment.html +1 -1
  24. data/_layouts/base.html +26 -21
  25. data/_layouts/default.html +17 -1
  26. data/_layouts/home.html +58 -28
  27. data/_layouts/minimal.html +28 -6
  28. data/_layouts/page.html +19 -2
  29. data/_layouts/post.html +25 -13
  30. data/assets/css/{main-minimal.css → beautifuljekyll-minimal.css} +3 -3
  31. data/assets/css/{main.css → beautifuljekyll.css} +470 -297
  32. data/assets/css/staticman.css +2 -2
  33. data/assets/img/thumb.png +0 -0
  34. data/assets/js/beautifuljekyll.js +114 -0
  35. data/assets/js/staticman.js +13 -13
  36. data/feed.xml +4 -3
  37. data/staticman.yml +110 -0
  38. metadata +36 -16
  39. data/assets/css/bootstrap-theme.css +0 -476
  40. data/assets/css/bootstrap-theme.css.map +0 -1
  41. data/assets/css/bootstrap-theme.min.css +0 -5
  42. data/assets/css/bootstrap.css +0 -6566
  43. data/assets/css/bootstrap.css.map +0 -1
  44. data/assets/css/bootstrap.min.css +0 -5
  45. data/assets/css/normalize.css +0 -427
  46. data/assets/js/bootstrap.js +0 -2306
  47. data/assets/js/bootstrap.min.js +0 -7
  48. data/assets/js/jquery-1.11.2.min.js +0 -4
  49. data/assets/js/main.js +0 -140
@@ -81,10 +81,10 @@
81
81
  /*
82
82
  Help text
83
83
  ========================================================================== */
84
- .staticman-comments .help-block {
84
+ .staticman-comments .form-text {
85
85
  color: #898c8e;
86
86
  }
87
- .staticman-comments .help-block {
87
+ .staticman-comments .form-text {
88
88
  display: block;
89
89
  margin-bottom: 1em;
90
90
  line-height: 1em;
Binary file
@@ -0,0 +1,114 @@
1
+ // Dean Attali / Beautiful Jekyll 2020
2
+
3
+ var BeautifulJekyllJS = {
4
+
5
+ bigImgEl : null,
6
+ numImgs : null,
7
+
8
+ init : function() {
9
+ setTimeout(BeautifulJekyllJS.initNavbar, 10);
10
+
11
+ // Shorten the navbar after scrolling a little bit down
12
+ $(window).scroll(function() {
13
+ if ($(".navbar").offset().top > 50) {
14
+ $(".navbar").addClass("top-nav-short");
15
+ } else {
16
+ $(".navbar").removeClass("top-nav-short");
17
+ }
18
+ });
19
+
20
+ // On mobile, hide the avatar when expanding the navbar menu
21
+ $('#main-navbar').on('show.bs.collapse', function () {
22
+ $(".navbar").addClass("top-nav-expanded");
23
+ });
24
+ $('#main-navbar').on('hidden.bs.collapse', function () {
25
+ $(".navbar").removeClass("top-nav-expanded");
26
+ });
27
+
28
+ // show the big header image
29
+ BeautifulJekyllJS.initImgs();
30
+ },
31
+
32
+ initNavbar : function() {
33
+ // Set the navbar-dark/light class based on its background color
34
+ const rgb = $('.navbar').css("background-color").replace(/[^\d,]/g,'').split(",");
35
+ const brightness = Math.round(( // http://www.w3.org/TR/AERT#color-contrast
36
+ parseInt(rgb[0]) * 299 +
37
+ parseInt(rgb[1]) * 587 +
38
+ parseInt(rgb[2]) * 114
39
+ ) / 1000);
40
+ if (brightness <= 125) {
41
+ $(".navbar").removeClass("navbar-light").addClass("navbar-dark");
42
+ }
43
+ },
44
+
45
+ initImgs : function() {
46
+ // If the page was large images to randomly select from, choose an image
47
+ if ($("#header-big-imgs").length > 0) {
48
+ BeautifulJekyllJS.bigImgEl = $("#header-big-imgs");
49
+ BeautifulJekyllJS.numImgs = BeautifulJekyllJS.bigImgEl.attr("data-num-img");
50
+
51
+ // 2fc73a3a967e97599c9763d05e564189
52
+ // set an initial image
53
+ var imgInfo = BeautifulJekyllJS.getImgInfo();
54
+ var src = imgInfo.src;
55
+ var desc = imgInfo.desc;
56
+ BeautifulJekyllJS.setImg(src, desc);
57
+
58
+ // For better UX, prefetch the next image so that it will already be loaded when we want to show it
59
+ var getNextImg = function() {
60
+ var imgInfo = BeautifulJekyllJS.getImgInfo();
61
+ var src = imgInfo.src;
62
+ var desc = imgInfo.desc;
63
+
64
+ var prefetchImg = new Image();
65
+ prefetchImg.src = src;
66
+ // if I want to do something once the image is ready: `prefetchImg.onload = function(){}`
67
+
68
+ setTimeout(function(){
69
+ var img = $("<div></div>").addClass("big-img-transition").css("background-image", 'url(' + src + ')');
70
+ $(".intro-header.big-img").prepend(img);
71
+ setTimeout(function(){ img.css("opacity", "1"); }, 50);
72
+
73
+ // after the animation of fading in the new image is done, prefetch the next one
74
+ //img.one("transitioned webkitTransitionEnd oTransitionEnd MSTransitionEnd", function(){
75
+ setTimeout(function() {
76
+ BeautifulJekyllJS.setImg(src, desc);
77
+ img.remove();
78
+ getNextImg();
79
+ }, 1000);
80
+ //});
81
+ }, 6000);
82
+ };
83
+
84
+ // If there are multiple images, cycle through them
85
+ if (BeautifulJekyllJS.numImgs > 1) {
86
+ getNextImg();
87
+ }
88
+ }
89
+ },
90
+
91
+ getImgInfo : function() {
92
+ var randNum = Math.floor((Math.random() * BeautifulJekyllJS.numImgs) + 1);
93
+ var src = BeautifulJekyllJS.bigImgEl.attr("data-img-src-" + randNum);
94
+ var desc = BeautifulJekyllJS.bigImgEl.attr("data-img-desc-" + randNum);
95
+
96
+ return {
97
+ src : src,
98
+ desc : desc
99
+ }
100
+ },
101
+
102
+ setImg : function(src, desc) {
103
+ $(".intro-header.big-img").css("background-image", 'url(' + src + ')');
104
+ if (typeof desc !== typeof undefined && desc !== false) {
105
+ $(".img-desc").text(desc).show();
106
+ } else {
107
+ $(".img-desc").hide();
108
+ }
109
+ }
110
+ };
111
+
112
+ // 2fc73a3a967e97599c9763d05e564189
113
+
114
+ document.addEventListener('DOMContentLoaded', BeautifulJekyllJS.init);
@@ -21,18 +21,18 @@ layout: null
21
21
  data: $(this).serialize(),
22
22
  contentType: 'application/x-www-form-urlencoded',
23
23
  success: function (data) {
24
- $('#comment-form-submit').addClass('hidden');
25
- $('#comment-form-submitted').removeClass('hidden');
26
- $('.page__comments-form .js-notice').removeClass('notice--danger');
27
- $('.page__comments-form .js-notice').addClass('notice--success');
24
+ $('#comment-form-submit').addClass('d-none');
25
+ $('#comment-form-submitted').removeClass('d-none');
26
+ $('.page__comments-form .js-notice').removeClass('alert-danger');
27
+ $('.page__comments-form .js-notice').addClass('alert-success');
28
28
  showAlert('success');
29
29
  },
30
30
  error: function (err) {
31
31
  console.log(err);
32
- $('#comment-form-submitted').addClass('hidden');
33
- $('#comment-form-submit').removeClass('hidden');
34
- $('.page__comments-form .js-notice').removeClass('notice--success');
35
- $('.page__comments-form .js-notice').addClass('notice--danger');
32
+ $('#comment-form-submitted').addClass('d-none');
33
+ $('#comment-form-submit').removeClass('d-none');
34
+ $('.page__comments-form .js-notice').removeClass('alert-success');
35
+ $('.page__comments-form .js-notice').addClass('alert-danger');
36
36
  showAlert('failure');
37
37
  $(form).removeClass('disabled');
38
38
  }
@@ -42,13 +42,13 @@ layout: null
42
42
  });
43
43
 
44
44
  function showAlert(message) {
45
- $('.page__comments-form .js-notice').removeClass('hidden');
45
+ $('.page__comments-form .js-notice').removeClass('d-none');
46
46
  if (message == 'success') {
47
- $('.page__comments-form .js-notice-text-success').removeClass('hidden');
48
- $('.page__comments-form .js-notice-text-failure').addClass('hidden');
47
+ $('.page__comments-form .js-notice-text-success').removeClass('d-none');
48
+ $('.page__comments-form .js-notice-text-failure').addClass('d-none');
49
49
  } else {
50
- $('.page__comments-form .js-notice-text-success').addClass('hidden');
51
- $('.page__comments-form .js-notice-text-failure').removeClass('hidden');
50
+ $('.page__comments-form .js-notice-text-success').addClass('d-none');
51
+ $('.page__comments-form .js-notice-text-failure').removeClass('d-none');
52
52
  }
53
53
  }
54
54
  })(jQuery);
data/feed.xml CHANGED
@@ -7,17 +7,18 @@ layout: null
7
7
  {% if site.title %}
8
8
  <title>{{ site.title | xml_escape }}</title>
9
9
  {% endif %}
10
- {% if site.description %}
11
- <description>{{ site.description | xml_escape }}</description>
10
+ {% if site.rss-description %}
11
+ <description>{{ site.rss-description | xml_escape }}</description>
12
12
  {% endif %}
13
13
  <link>{{ '' | absolute_url }}</link>
14
14
  <atom:link href="{{ 'feed.xml' | absolute_url }}" rel="self" type="application/rss+xml" />
15
+ {% assign excerpt_length = site.excerpt_length | default: 50 %}
15
16
  {% for post in site.posts limit:20 %}
16
17
  <item>
17
18
  <title>{{ post.title | xml_escape }}</title>
18
19
  <description>
19
20
  {% if post.subtitle %}{{ post.subtitle | xml_escape }} - {% endif %}
20
- {{ post.content | strip_html | xml_escape | truncatewords: 50 }}
21
+ {{ post.content | strip_html | xml_escape | truncatewords: excerpt_length }}
21
22
  </description>
22
23
  <pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
23
24
  <link>{{ post.url | absolute_url }}</link>
@@ -0,0 +1,110 @@
1
+ # Name of the property. You can have multiple properties with completely
2
+ # different config blocks for different sections of your site.
3
+ # For example, you can have one property to handle comment submission and
4
+ # another one to handle posts.
5
+ # To encrypt strings use the following endpoint:
6
+ # https://{STATICMAN API INSTANCE}/v3/encrypt/{TEXT TO BE ENCRYPTED}
7
+ # {STATICMAN API INSTANCE} should match the `endpoint` in the theme config
8
+ # file. It defaults to "staticman3.herokuapp.com".
9
+
10
+ comments:
11
+ # (*) REQUIRED
12
+ #
13
+ # Names of the fields the form is allowed to submit. If a field that is
14
+ # not here is part of the request, an error will be thrown.
15
+ allowedFields: ["name", "email", "url", "message"]
16
+
17
+ # (*) REQUIRED WHEN USING NOTIFICATIONS
18
+ #
19
+ # When allowedOrigins is defined, only requests sent from one of the domains
20
+ # listed will be accepted. The origin is sent as part as the `options` object
21
+ # (e.g. <input name="options[origin]" value="https://yourdomain.com/post1")
22
+ # allowedOrigins: ["https://example.com"]
23
+
24
+ # (*) REQUIRED
25
+ #
26
+ # Name of the branch being used. Must match the `branch` in the theme config
27
+ # file.
28
+ branch: "master" # use "master" for user page or "gh-pages" for project pages
29
+
30
+ commitMessage: "New comment by {fields.name}"
31
+
32
+ # (*) REQUIRED
33
+ #
34
+ # Destination path (filename) for the data files. Accepts placeholders.
35
+ filename: "comment-{@timestamp}"
36
+
37
+ # The format of the generated data files. Accepted values are "json", "yaml"
38
+ # or "frontmatter"
39
+ format: "yaml"
40
+
41
+ # List of fields to be populated automatically by Staticman and included in
42
+ # the data file. Keys are the name of the field. The value can be an object
43
+ # with a `type` property, which configures the generated field, or any value
44
+ # to be used directly (e.g. a string, number or array)
45
+ generatedFields:
46
+ date:
47
+ type: "date"
48
+ options:
49
+ format: "iso8601" # "iso8601" (default), "timestamp-seconds", "timestamp-milliseconds"
50
+
51
+ # Whether entries need to be approved before they are published to the main
52
+ # branch. If set to `true`, a pull request will be created for your approval.
53
+ # Otherwise, entries will be published to the main branch automatically.
54
+ moderation: false
55
+
56
+ # Akismet spam detection.
57
+ # akismet:
58
+ # enabled: true
59
+ # author: "name"
60
+ # authorEmail: "email"
61
+ # authorUrl: "url"
62
+ # content: "message"
63
+ # type: "comment"
64
+
65
+ # Name of the site. Used in notification emails.
66
+ # name: "Your Site"
67
+
68
+ # Notification settings. When enabled, users can choose to receive notifications
69
+ # via email when someone adds a reply or a new comment. This requires an account
70
+ # with Mailgun, which you can get for free at https://mailgun.com.
71
+ # notifications:
72
+ # Enable notifications
73
+ # enabled: true
74
+
75
+ # (!) ENCRYPTED
76
+ #
77
+ # Mailgun API key
78
+ # apiKey: ""
79
+
80
+ # (!) ENCRYPTED
81
+ #
82
+ # Mailgun domain (encrypted)
83
+ # domain: ""
84
+
85
+ # (*) REQUIRED
86
+ #
87
+ # Destination path (directory) for the data files. Accepts placeholders.
88
+ path: "_data/comments/{options.slug}" # (default)
89
+
90
+ # Names of required files. If any of these isn't in the request or is empty,
91
+ # an error will be thrown.
92
+ requiredFields: ["name", "email", "message"]
93
+
94
+ # List of transformations to apply to any of the fields supplied. Keys are
95
+ # the name of the field and values are possible transformation types.
96
+ transforms:
97
+ email: md5
98
+
99
+ # reCAPTCHA (OPTIONAL)
100
+ # To enable reCAPTCHA:
101
+ # 1. Set `enabled` to `true`
102
+ # 2. Register your domain at https://www.google.com/recaptcha/ and choose reCAPTCHA V2
103
+ # 3. Uncomment `siteKey` and `secret` and fill them in with your values
104
+ reCaptcha:
105
+ enabled: false
106
+ #siteKey: ""
107
+ # ENCRYPT reCaptcha secret key using Staticman /encrypt endpoint
108
+ # i.e. https://{STATICMAN API INSTANCE}/v3/encrypt/{your-site-secret}
109
+ # For more information, visit https://staticman.net/docs/encryption
110
+ #secret: ""
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: 2.3.0
4
+ version: 5.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: 2020-04-29 00:00:00.000000000 Z
11
+ date: 2020-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -52,6 +52,34 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: kramdown-parser-gfm
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: kramdown
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 2.3.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 2.3.0
55
83
  - !ruby/object:Gem::Dependency
56
84
  name: bundler
57
85
  requirement: !ruby/object:Gem::Requirement
@@ -119,16 +147,9 @@ files:
119
147
  - _layouts/minimal.html
120
148
  - _layouts/page.html
121
149
  - _layouts/post.html
150
+ - assets/css/beautifuljekyll-minimal.css
151
+ - assets/css/beautifuljekyll.css
122
152
  - assets/css/bootstrap-social.css
123
- - assets/css/bootstrap-theme.css
124
- - assets/css/bootstrap-theme.css.map
125
- - assets/css/bootstrap-theme.min.css
126
- - assets/css/bootstrap.css
127
- - assets/css/bootstrap.css.map
128
- - assets/css/bootstrap.min.css
129
- - assets/css/main-minimal.css
130
- - assets/css/main.css
131
- - assets/css/normalize.css
132
153
  - assets/css/pygment_highlights.css
133
154
  - assets/css/staticman.css
134
155
  - assets/img/404-southpark.jpg
@@ -137,18 +158,17 @@ files:
137
158
  - assets/img/hello_world.jpeg
138
159
  - assets/img/install-steps.gif
139
160
  - assets/img/path.jpg
140
- - assets/js/bootstrap.js
141
- - assets/js/bootstrap.min.js
142
- - assets/js/jquery-1.11.2.min.js
143
- - assets/js/main.js
161
+ - assets/img/thumb.png
162
+ - assets/js/beautifuljekyll.js
144
163
  - assets/js/staticman.js
145
164
  - feed.xml
165
+ - staticman.yml
146
166
  - tags.html
147
167
  homepage: https://beautifuljekyll.com
148
168
  licenses:
149
169
  - MIT
150
170
  metadata:
151
- changelog_uri: https://github.com/daattali/beautiful-jekyll/blob/master/CHANGELOG.md
171
+ changelog_uri: https://beautifuljekyll.com/updates/
152
172
  documentation_uri: https://github.com/daattali/beautiful-jekyll#readme
153
173
  post_install_message:
154
174
  rdoc_options: []
@@ -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 */