snowman-io 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +3 -17
- data/bin/snowman +1 -0
- data/lib/snowman-io/api/public/README.md +36 -0
- data/lib/snowman-io/api/public/bootstrap/css/bootstrap-theme.css +470 -0
- data/lib/snowman-io/api/public/bootstrap/css/bootstrap-theme.css.map +1 -0
- data/lib/snowman-io/api/public/bootstrap/css/bootstrap-theme.min.css +5 -0
- data/lib/snowman-io/api/public/bootstrap/css/bootstrap.css +6332 -0
- data/lib/snowman-io/api/public/bootstrap/css/bootstrap.css.map +1 -0
- data/lib/snowman-io/api/public/bootstrap/css/bootstrap.min.css +5 -0
- data/lib/snowman-io/api/public/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- data/lib/snowman-io/api/public/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
- data/lib/snowman-io/api/public/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/lib/snowman-io/api/public/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- data/lib/snowman-io/api/public/bootstrap/js/bootstrap.js +2320 -0
- data/lib/snowman-io/api/public/bootstrap/js/bootstrap.min.js +7 -0
- data/lib/snowman-io/api/public/bootstrap/js/npm.js +13 -0
- data/lib/snowman-io/api/public/css/normalize.css +406 -0
- data/lib/snowman-io/api/public/css/style.css +4 -0
- data/lib/snowman-io/api/public/js/app.js +13 -0
- data/lib/snowman-io/api/public/js/libs/ember-1.8.1.js +49740 -0
- data/lib/snowman-io/api/public/js/libs/handlebars-v1.3.0.js +2746 -0
- data/lib/snowman-io/api/public/js/libs/jquery-1.10.2.js +9789 -0
- data/lib/snowman-io/api/public/tests/runner.css +14 -0
- data/lib/snowman-io/api/public/tests/runner.js +13 -0
- data/lib/snowman-io/api/public/tests/tests.js +30 -0
- data/lib/snowman-io/api/public/tests/vendor/qunit-1.12.0.css +244 -0
- data/lib/snowman-io/api/public/tests/vendor/qunit-1.12.0.js +2212 -0
- data/lib/snowman-io/api/views/index.erb +26 -0
- data/lib/snowman-io/api/views/layout.erb +24 -0
- data/lib/snowman-io/api/views/login.erb +21 -0
- data/lib/snowman-io/api/views/unpacking.erb +21 -0
- data/lib/snowman-io/api.rb +61 -1
- data/lib/snowman-io/check.rb +49 -0
- data/lib/snowman-io/check_result.rb +15 -0
- data/lib/snowman-io/checks/hosted_graphite.rb +23 -0
- data/lib/snowman-io/handler.rb +27 -0
- data/lib/snowman-io/launcher.rb +24 -0
- data/lib/snowman-io/notifiers/slack.rb +76 -0
- data/lib/snowman-io/options.rb +3 -14
- data/lib/snowman-io/processor.rb +32 -0
- data/lib/snowman-io/scheduler.rb +42 -0
- data/lib/snowman-io/version.rb +1 -1
- data/lib/snowman-io.rb +34 -5
- data/snowman-io.gemspec +9 -2
- metadata +131 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5124f50d680bd5e89354183e0e4cac5cbb3fe73
|
4
|
+
data.tar.gz: 5780d7324eb1f25f1073b0eff05342257a941a3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9de1539ff5b8ff4c24ed3c51f50358dac3e813499a080efc86a1676493966871590a76ef800f7719570f079e5ce9090dad270e3a2cdc6515a139a3cef94ba9c
|
7
|
+
data.tar.gz: 86125496a5fb7781cba02bdf34489530184e4473e314194fa1269bdb4669d057aa3735db6d0c924b1c543b5347db31658cb03c767c16f87a678b3202a783d0dd
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,11 @@
|
|
1
1
|
# SnowmanIO
|
2
2
|
|
3
|
+
Version 0.0.4 - 2014.12.4
|
4
|
+
- First kernel version
|
5
|
+
- Very simple web UI
|
6
|
+
|
3
7
|
Version 0.0.3 - 2014.11.30
|
4
|
-
- API changes: to run
|
8
|
+
- API changes: to run SnowmanIO server fire command `snowman server`
|
5
9
|
|
6
10
|
Version 0.0.2 - 2014.11.29
|
7
11
|
- Add travis.ci support
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# SnowmanIO
|
2
2
|
|
3
3
|
Zero maintenance power parameters checks.
|
4
4
|
|
@@ -6,23 +6,9 @@ Zero maintenance power parameters checks.
|
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
|
9
|
+
Press a button below to install your private Heroku SnowmanIO instance for free.
|
10
10
|
|
11
|
-
|
12
|
-
gem 'snowman-io'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install snowman-io
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
11
|
+
[](https://heroku.com/deploy?template=https://github.com/snowman-io/sample-app)
|
26
12
|
|
27
13
|
## Authors
|
28
14
|
|
data/bin/snowman
CHANGED
@@ -0,0 +1,36 @@
|
|
1
|
+
starter-kit
|
2
|
+
===========
|
3
|
+
|
4
|
+
A starter kit for Ember
|
5
|
+
|
6
|
+
Your Ember.js project is almost ready! Here's how to get started:
|
7
|
+
|
8
|
+
- Start writing your app in `js/app.js`.
|
9
|
+
|
10
|
+
- Describe your application HTML in `index.html`.
|
11
|
+
|
12
|
+
- During development, you can link to `js/libs/ember-*.js` to get the
|
13
|
+
unminified version of Ember.js.
|
14
|
+
|
15
|
+
- Add CSS to `css/style.css`.
|
16
|
+
|
17
|
+
- Open `index.html` in your browser.
|
18
|
+
|
19
|
+
Tests
|
20
|
+
=====
|
21
|
+
|
22
|
+
This starter kit comes with an integration test sample, written for QUnit runner.
|
23
|
+
|
24
|
+
You can run the tests by opening the `index.html?test` page in your browser.
|
25
|
+
|
26
|
+
The test is located in the `tests/tests.js` file. You can see how such an
|
27
|
+
integration test should be written, using QUnit assertions and ember-testing helpers.
|
28
|
+
|
29
|
+
For more information about ember-testing package see [ember-testing](http://emberjs.com/guides/testing/integration/).
|
30
|
+
|
31
|
+
For more information about the QUnit testing framework, see [QUnit](http://qunitjs.com/).
|
32
|
+
|
33
|
+
Contact
|
34
|
+
====
|
35
|
+
|
36
|
+
[www.emberjs.com](http://www.emberjs.com)
|
@@ -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 */
|