problem_child 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +7 -0
  2. data/.bowerrc +3 -0
  3. data/.gitignore +10 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/Procfile +1 -0
  7. data/README.md +53 -0
  8. data/Rakefile +8 -0
  9. data/bower.json +13 -0
  10. data/config.ru +3 -0
  11. data/lib/problem_child.rb +126 -0
  12. data/lib/problem_child/public/vendor/bootstrap/.bower.json +47 -0
  13. data/lib/problem_child/public/vendor/bootstrap/Gruntfile.js +472 -0
  14. data/lib/problem_child/public/vendor/bootstrap/LICENSE +21 -0
  15. data/lib/problem_child/public/vendor/bootstrap/README.md +129 -0
  16. data/lib/problem_child/public/vendor/bootstrap/bower.json +38 -0
  17. data/lib/problem_child/public/vendor/bootstrap/dist/css/bootstrap-theme.css +470 -0
  18. data/lib/problem_child/public/vendor/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
  19. data/lib/problem_child/public/vendor/bootstrap/dist/css/bootstrap-theme.min.css +5 -0
  20. data/lib/problem_child/public/vendor/bootstrap/dist/css/bootstrap.css +6332 -0
  21. data/lib/problem_child/public/vendor/bootstrap/dist/css/bootstrap.css.map +1 -0
  22. data/lib/problem_child/public/vendor/bootstrap/dist/css/bootstrap.min.css +5 -0
  23. data/lib/problem_child/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  24. data/lib/problem_child/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  25. data/lib/problem_child/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  26. data/lib/problem_child/public/vendor/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  27. data/lib/problem_child/public/vendor/bootstrap/dist/js/bootstrap.js +2320 -0
  28. data/lib/problem_child/public/vendor/bootstrap/dist/js/bootstrap.min.js +7 -0
  29. data/lib/problem_child/public/vendor/bootstrap/dist/js/npm.js +13 -0
  30. data/lib/problem_child/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  31. data/lib/problem_child/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  32. data/lib/problem_child/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  33. data/lib/problem_child/public/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  34. data/lib/problem_child/public/vendor/bootstrap/js/.jscsrc +34 -0
  35. data/lib/problem_child/public/vendor/bootstrap/js/.jshintrc +15 -0
  36. data/lib/problem_child/public/vendor/bootstrap/js/affix.js +162 -0
  37. data/lib/problem_child/public/vendor/bootstrap/js/alert.js +94 -0
  38. data/lib/problem_child/public/vendor/bootstrap/js/button.js +116 -0
  39. data/lib/problem_child/public/vendor/bootstrap/js/carousel.js +240 -0
  40. data/lib/problem_child/public/vendor/bootstrap/js/collapse.js +211 -0
  41. data/lib/problem_child/public/vendor/bootstrap/js/dropdown.js +161 -0
  42. data/lib/problem_child/public/vendor/bootstrap/js/modal.js +324 -0
  43. data/lib/problem_child/public/vendor/bootstrap/js/popover.js +119 -0
  44. data/lib/problem_child/public/vendor/bootstrap/js/scrollspy.js +175 -0
  45. data/lib/problem_child/public/vendor/bootstrap/js/tab.js +153 -0
  46. data/lib/problem_child/public/vendor/bootstrap/js/tooltip.js +478 -0
  47. data/lib/problem_child/public/vendor/bootstrap/js/transition.js +59 -0
  48. data/lib/problem_child/public/vendor/bootstrap/package.json +82 -0
  49. data/lib/problem_child/public/vendor/jquery/.bower.json +37 -0
  50. data/lib/problem_child/public/vendor/jquery/MIT-LICENSE.txt +21 -0
  51. data/lib/problem_child/public/vendor/jquery/bower.json +27 -0
  52. data/lib/problem_child/public/vendor/jquery/dist/jquery.js +9205 -0
  53. data/lib/problem_child/public/vendor/jquery/dist/jquery.min.js +5 -0
  54. data/lib/problem_child/public/vendor/jquery/dist/jquery.min.map +1 -0
  55. data/lib/problem_child/version.rb +3 -0
  56. data/lib/problem_child/views/form.erb +22 -0
  57. data/lib/problem_child/views/layout.erb +27 -0
  58. data/problem_child.gemspec +32 -0
  59. data/script/bootstrap +1 -0
  60. data/script/console +1 -0
  61. data/script/release +38 -0
  62. data/script/server +1 -0
  63. metadata +260 -0
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2011-2014 Twitter, Inc
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,129 @@
1
+ # [Bootstrap](http://getbootstrap.com)
2
+ [![Bower version](https://badge.fury.io/bo/bootstrap.svg)](http://badge.fury.io/bo/bootstrap)
3
+ [![NPM version](https://badge.fury.io/js/bootstrap.svg)](http://badge.fury.io/js/bootstrap)
4
+ [![Build Status](https://secure.travis-ci.org/twbs/bootstrap.svg?branch=master)](https://travis-ci.org/twbs/bootstrap)
5
+ [![devDependency Status](https://david-dm.org/twbs/bootstrap/dev-status.svg)](https://david-dm.org/twbs/bootstrap#info=devDependencies)
6
+ [![Selenium Test Status](https://saucelabs.com/browser-matrix/bootstrap.svg)](https://saucelabs.com/u/bootstrap)
7
+
8
+ Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thornton](https://twitter.com/fat), and maintained by the [core team](https://github.com/twbs?tab=members) with the massive support and involvement of the community.
9
+
10
+ To get started, check out <http://getbootstrap.com>!
11
+
12
+ ## Table of contents
13
+
14
+ - [Quick start](#quick-start)
15
+ - [Bugs and feature requests](#bugs-and-feature-requests)
16
+ - [Documentation](#documentation)
17
+ - [Contributing](#contributing)
18
+ - [Community](#community)
19
+ - [Versioning](#versioning)
20
+ - [Creators](#creators)
21
+ - [Copyright and license](#copyright-and-license)
22
+
23
+ ## Quick start
24
+
25
+ Four quick start options are available:
26
+
27
+ - [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.3.1.zip).
28
+ - Clone the repo: `git clone https://github.com/twbs/bootstrap.git`.
29
+ - Install with [Bower](http://bower.io): `bower install bootstrap`.
30
+ - Install with [npm](https://www.npmjs.org): `npm install bootstrap`.
31
+
32
+ Read the [Getting started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
33
+
34
+ ### What's included
35
+
36
+ Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
37
+
38
+ ```
39
+ bootstrap/
40
+ ├── css/
41
+ │ ├── bootstrap.css
42
+ │ ├── bootstrap.min.css
43
+ │ ├── bootstrap-theme.css
44
+ │ └── bootstrap-theme.min.css
45
+ ├── js/
46
+ │ ├── bootstrap.js
47
+ │ └── bootstrap.min.js
48
+ └── fonts/
49
+ ├── glyphicons-halflings-regular.eot
50
+ ├── glyphicons-halflings-regular.svg
51
+ ├── glyphicons-halflings-regular.ttf
52
+ └── glyphicons-halflings-regular.woff
53
+ ```
54
+
55
+ We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). Fonts from Glyphicons are included, as is the optional Bootstrap theme.
56
+
57
+
58
+
59
+ ## Bugs and feature requests
60
+
61
+ Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new).
62
+
63
+
64
+ ## Documentation
65
+
66
+ Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://getbootstrap.com>. The docs may also be run locally.
67
+
68
+ ### Running documentation locally
69
+
70
+ 1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v2.5.x).
71
+ - **Windows users:** Read [this unofficial guide](http://jekyll-windows.juthilo.com/) to get Jekyll up and running without problems.
72
+ 2. Install the Ruby-based syntax highlighter, [Rouge](https://github.com/jneen/rouge), with `gem install rouge`.
73
+ 3. From the root `/bootstrap` directory, run `jekyll serve` in the command line.
74
+ 4. Open <http://localhost:9001> in your browser, and voilà.
75
+
76
+ Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).
77
+
78
+ ### Documentation for previous releases
79
+
80
+ Documentation for v2.3.2 has been made available for the time being at <http://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
81
+
82
+ [Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
83
+
84
+
85
+
86
+ ## Contributing
87
+
88
+ Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
89
+
90
+ Moreover, if your pull request contains JavaScript patches or features, you must include relevant unit tests. All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo).
91
+
92
+ Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at <http://editorconfig.org>.
93
+
94
+
95
+
96
+ ## Community
97
+
98
+ Keep track of development and community news.
99
+
100
+ - Follow [@twbootstrap on Twitter](https://twitter.com/twbootstrap).
101
+ - Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).
102
+ - Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel.
103
+ - Implementation help may be found at Stack Overflow (tagged [`twitter-bootstrap-3`](http://stackoverflow.com/questions/tagged/twitter-bootstrap-3)).
104
+
105
+
106
+
107
+ ## Versioning
108
+
109
+ For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible.
110
+
111
+
112
+
113
+ ## Creators
114
+
115
+ **Mark Otto**
116
+
117
+ - <https://twitter.com/mdo>
118
+ - <https://github.com/mdo>
119
+
120
+ **Jacob Thornton**
121
+
122
+ - <https://twitter.com/fat>
123
+ - <https://github.com/fat>
124
+
125
+
126
+
127
+ ## Copyright and license
128
+
129
+ Code and documentation copyright 2011-2014 Twitter, Inc. Code released under [the MIT license](LICENSE). Docs released under [Creative Commons](docs/LICENSE).
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "bootstrap",
3
+ "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4
+ "version": "3.3.1",
5
+ "keywords": [
6
+ "css",
7
+ "js",
8
+ "less",
9
+ "mobile-first",
10
+ "responsive",
11
+ "front-end",
12
+ "framework",
13
+ "web"
14
+ ],
15
+ "homepage": "http://getbootstrap.com",
16
+ "main": [
17
+ "less/bootstrap.less",
18
+ "dist/css/bootstrap.css",
19
+ "dist/js/bootstrap.js",
20
+ "dist/fonts/glyphicons-halflings-regular.eot",
21
+ "dist/fonts/glyphicons-halflings-regular.svg",
22
+ "dist/fonts/glyphicons-halflings-regular.ttf",
23
+ "dist/fonts/glyphicons-halflings-regular.woff"
24
+ ],
25
+ "ignore": [
26
+ "/.*",
27
+ "_config.yml",
28
+ "CNAME",
29
+ "composer.json",
30
+ "CONTRIBUTING.md",
31
+ "docs",
32
+ "js/tests",
33
+ "test-infra"
34
+ ],
35
+ "dependencies": {
36
+ "jquery": ">= 1.9.1"
37
+ }
38
+ }
@@ -0,0 +1,470 @@
1
+ /*!
2
+ * Bootstrap v3.3.1 (http://getbootstrap.com)
3
+ * Copyright 2011-2014 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
+ background-color: #e0e0e0;
69
+ background-image: none;
70
+ }
71
+ .btn-primary {
72
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
73
+ background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
74
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
75
+ background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
76
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
77
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
78
+ background-repeat: repeat-x;
79
+ border-color: #245580;
80
+ }
81
+ .btn-primary:hover,
82
+ .btn-primary:focus {
83
+ background-color: #265a88;
84
+ background-position: 0 -15px;
85
+ }
86
+ .btn-primary:active,
87
+ .btn-primary.active {
88
+ background-color: #265a88;
89
+ border-color: #245580;
90
+ }
91
+ .btn-primary:disabled,
92
+ .btn-primary[disabled] {
93
+ background-color: #265a88;
94
+ background-image: none;
95
+ }
96
+ .btn-success {
97
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
98
+ background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
99
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
100
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
101
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
102
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
103
+ background-repeat: repeat-x;
104
+ border-color: #3e8f3e;
105
+ }
106
+ .btn-success:hover,
107
+ .btn-success:focus {
108
+ background-color: #419641;
109
+ background-position: 0 -15px;
110
+ }
111
+ .btn-success:active,
112
+ .btn-success.active {
113
+ background-color: #419641;
114
+ border-color: #3e8f3e;
115
+ }
116
+ .btn-success:disabled,
117
+ .btn-success[disabled] {
118
+ background-color: #419641;
119
+ background-image: none;
120
+ }
121
+ .btn-info {
122
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
123
+ background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
124
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
125
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
126
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
127
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
128
+ background-repeat: repeat-x;
129
+ border-color: #28a4c9;
130
+ }
131
+ .btn-info:hover,
132
+ .btn-info:focus {
133
+ background-color: #2aabd2;
134
+ background-position: 0 -15px;
135
+ }
136
+ .btn-info:active,
137
+ .btn-info.active {
138
+ background-color: #2aabd2;
139
+ border-color: #28a4c9;
140
+ }
141
+ .btn-info:disabled,
142
+ .btn-info[disabled] {
143
+ background-color: #2aabd2;
144
+ background-image: none;
145
+ }
146
+ .btn-warning {
147
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
148
+ background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
149
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
150
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
151
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
152
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
153
+ background-repeat: repeat-x;
154
+ border-color: #e38d13;
155
+ }
156
+ .btn-warning:hover,
157
+ .btn-warning:focus {
158
+ background-color: #eb9316;
159
+ background-position: 0 -15px;
160
+ }
161
+ .btn-warning:active,
162
+ .btn-warning.active {
163
+ background-color: #eb9316;
164
+ border-color: #e38d13;
165
+ }
166
+ .btn-warning:disabled,
167
+ .btn-warning[disabled] {
168
+ background-color: #eb9316;
169
+ background-image: none;
170
+ }
171
+ .btn-danger {
172
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
173
+ background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
174
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
175
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
176
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
177
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
178
+ background-repeat: repeat-x;
179
+ border-color: #b92c28;
180
+ }
181
+ .btn-danger:hover,
182
+ .btn-danger:focus {
183
+ background-color: #c12e2a;
184
+ background-position: 0 -15px;
185
+ }
186
+ .btn-danger:active,
187
+ .btn-danger.active {
188
+ background-color: #c12e2a;
189
+ border-color: #b92c28;
190
+ }
191
+ .btn-danger:disabled,
192
+ .btn-danger[disabled] {
193
+ background-color: #c12e2a;
194
+ background-image: none;
195
+ }
196
+ .thumbnail,
197
+ .img-thumbnail {
198
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
199
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
200
+ }
201
+ .dropdown-menu > li > a:hover,
202
+ .dropdown-menu > li > a:focus {
203
+ background-color: #e8e8e8;
204
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
205
+ background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
206
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
207
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
208
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
209
+ background-repeat: repeat-x;
210
+ }
211
+ .dropdown-menu > .active > a,
212
+ .dropdown-menu > .active > a:hover,
213
+ .dropdown-menu > .active > a:focus {
214
+ background-color: #2e6da4;
215
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
216
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
217
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
218
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
219
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
220
+ background-repeat: repeat-x;
221
+ }
222
+ .navbar-default {
223
+ background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
224
+ background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
225
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
226
+ background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
227
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
228
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
229
+ background-repeat: repeat-x;
230
+ border-radius: 4px;
231
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
232
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
233
+ }
234
+ .navbar-default .navbar-nav > .open > a,
235
+ .navbar-default .navbar-nav > .active > a {
236
+ background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
237
+ background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
238
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
239
+ background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
240
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
241
+ background-repeat: repeat-x;
242
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
243
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
244
+ }
245
+ .navbar-brand,
246
+ .navbar-nav > li > a {
247
+ text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
248
+ }
249
+ .navbar-inverse {
250
+ background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
251
+ background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
252
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
253
+ background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
254
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
255
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
256
+ background-repeat: repeat-x;
257
+ }
258
+ .navbar-inverse .navbar-nav > .open > a,
259
+ .navbar-inverse .navbar-nav > .active > a {
260
+ background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
261
+ background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
262
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
263
+ background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
264
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
265
+ background-repeat: repeat-x;
266
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
267
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
268
+ }
269
+ .navbar-inverse .navbar-brand,
270
+ .navbar-inverse .navbar-nav > li > a {
271
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
272
+ }
273
+ .navbar-static-top,
274
+ .navbar-fixed-top,
275
+ .navbar-fixed-bottom {
276
+ border-radius: 0;
277
+ }
278
+ @media (max-width: 767px) {
279
+ .navbar .navbar-nav .open .dropdown-menu > .active > a,
280
+ .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
281
+ .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
282
+ color: #fff;
283
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
284
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
285
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
286
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
287
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
288
+ background-repeat: repeat-x;
289
+ }
290
+ }
291
+ .alert {
292
+ text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
293
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
294
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
295
+ }
296
+ .alert-success {
297
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
298
+ background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
299
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
300
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
301
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
302
+ background-repeat: repeat-x;
303
+ border-color: #b2dba1;
304
+ }
305
+ .alert-info {
306
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
307
+ background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
308
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
309
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
310
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
311
+ background-repeat: repeat-x;
312
+ border-color: #9acfea;
313
+ }
314
+ .alert-warning {
315
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
316
+ background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
317
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
318
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
319
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
320
+ background-repeat: repeat-x;
321
+ border-color: #f5e79e;
322
+ }
323
+ .alert-danger {
324
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
325
+ background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
326
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
327
+ background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
328
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
329
+ background-repeat: repeat-x;
330
+ border-color: #dca7a7;
331
+ }
332
+ .progress {
333
+ background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
334
+ background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
335
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
336
+ background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
337
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
338
+ background-repeat: repeat-x;
339
+ }
340
+ .progress-bar {
341
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
342
+ background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
343
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
344
+ background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
345
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
346
+ background-repeat: repeat-x;
347
+ }
348
+ .progress-bar-success {
349
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
350
+ background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
351
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
352
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
353
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
354
+ background-repeat: repeat-x;
355
+ }
356
+ .progress-bar-info {
357
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
358
+ background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
359
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
360
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
361
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
362
+ background-repeat: repeat-x;
363
+ }
364
+ .progress-bar-warning {
365
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
366
+ background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
367
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
368
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
369
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
370
+ background-repeat: repeat-x;
371
+ }
372
+ .progress-bar-danger {
373
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
374
+ background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
375
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
376
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
377
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
378
+ background-repeat: repeat-x;
379
+ }
380
+ .progress-bar-striped {
381
+ 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);
382
+ 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);
383
+ 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);
384
+ }
385
+ .list-group {
386
+ border-radius: 4px;
387
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
388
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
389
+ }
390
+ .list-group-item.active,
391
+ .list-group-item.active:hover,
392
+ .list-group-item.active:focus {
393
+ text-shadow: 0 -1px 0 #286090;
394
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
395
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
396
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
397
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
398
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
399
+ background-repeat: repeat-x;
400
+ border-color: #2b669a;
401
+ }
402
+ .list-group-item.active .badge,
403
+ .list-group-item.active:hover .badge,
404
+ .list-group-item.active:focus .badge {
405
+ text-shadow: none;
406
+ }
407
+ .panel {
408
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
409
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
410
+ }
411
+ .panel-default > .panel-heading {
412
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
413
+ background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
414
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
415
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
416
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
417
+ background-repeat: repeat-x;
418
+ }
419
+ .panel-primary > .panel-heading {
420
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
421
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
422
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
423
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
424
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
425
+ background-repeat: repeat-x;
426
+ }
427
+ .panel-success > .panel-heading {
428
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
429
+ background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
430
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
431
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
432
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
433
+ background-repeat: repeat-x;
434
+ }
435
+ .panel-info > .panel-heading {
436
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
437
+ background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
438
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
439
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
440
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
441
+ background-repeat: repeat-x;
442
+ }
443
+ .panel-warning > .panel-heading {
444
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
445
+ background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
446
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
447
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
448
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
449
+ background-repeat: repeat-x;
450
+ }
451
+ .panel-danger > .panel-heading {
452
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
453
+ background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
454
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
455
+ background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
456
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
457
+ background-repeat: repeat-x;
458
+ }
459
+ .well {
460
+ background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
461
+ background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
462
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
463
+ background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
464
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
465
+ background-repeat: repeat-x;
466
+ border-color: #dcdcdc;
467
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
468
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
469
+ }
470
+ /*# sourceMappingURL=bootstrap-theme.css.map */