flammarion 0.1.4pre → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. data/Readme.md +1 -1
  2. data/lib/flammarion/version.rb +1 -1
  3. data/lib/html/build/fonts/Lora-Bold.ttf +0 -0
  4. data/lib/html/build/fonts/Lora-BoldItalic.ttf +0 -0
  5. data/lib/html/build/fonts/Lora-Italic.ttf +0 -0
  6. data/lib/html/build/fonts/Lora-Regular.ttf +0 -0
  7. data/lib/html/build/fonts/Lora/OFL.txt +93 -0
  8. data/lib/html/build/fonts/SourceSansPro-Black.ttf +0 -0
  9. data/lib/html/build/fonts/SourceSansPro-BlackItalic.ttf +0 -0
  10. data/lib/html/build/fonts/SourceSansPro-Bold.ttf +0 -0
  11. data/lib/html/build/fonts/SourceSansPro-BoldItalic.ttf +0 -0
  12. data/lib/html/build/fonts/SourceSansPro-ExtraLight.ttf +0 -0
  13. data/lib/html/build/fonts/SourceSansPro-ExtraLightItalic.ttf +0 -0
  14. data/lib/html/build/fonts/SourceSansPro-Italic.ttf +0 -0
  15. data/lib/html/build/fonts/SourceSansPro-Light.ttf +0 -0
  16. data/lib/html/build/fonts/SourceSansPro-LightItalic.ttf +0 -0
  17. data/lib/html/build/fonts/SourceSansPro-Regular.ttf +0 -0
  18. data/lib/html/build/fonts/SourceSansPro-Semibold.ttf +0 -0
  19. data/lib/html/build/fonts/SourceSansPro-SemiboldItalic.ttf +0 -0
  20. data/lib/html/build/fonts/SourceSansPro/OFL.txt +92 -0
  21. data/lib/html/build/index.html +1 -1
  22. data/lib/html/build/javascripts/all.js +35 -27
  23. data/lib/html/build/javascripts/input.js +35 -27
  24. data/lib/html/build/stylesheets/all.css +276 -156
  25. data/lib/html/build/stylesheets/ansi_colors.css +16 -46
  26. data/lib/html/build/stylesheets/buttons.css +64 -60
  27. data/lib/html/build/stylesheets/code.css +1 -1
  28. data/lib/html/build/stylesheets/dialog.css +2 -2
  29. data/lib/html/build/stylesheets/engraving.css +11 -10
  30. data/lib/html/build/stylesheets/google_fonts.css +145 -0
  31. data/lib/html/build/stylesheets/plot.css +8 -8
  32. data/lib/html/build/stylesheets/scrollbar.css +15 -15
  33. data/lib/html/build/stylesheets/searchbar.css +3 -3
  34. data/lib/html/build/stylesheets/status.css +7 -7
  35. data/lib/html/build/stylesheets/table.css +4 -4
  36. data/lib/html/source/fonts/Lora-Bold.ttf +0 -0
  37. data/lib/html/source/fonts/Lora-BoldItalic.ttf +0 -0
  38. data/lib/html/source/fonts/Lora-Italic.ttf +0 -0
  39. data/lib/html/source/fonts/Lora-Regular.ttf +0 -0
  40. data/lib/html/source/fonts/Lora/OFL.txt +93 -0
  41. data/lib/html/source/fonts/SourceSansPro-Black.ttf +0 -0
  42. data/lib/html/source/fonts/SourceSansPro-BlackItalic.ttf +0 -0
  43. data/lib/html/source/fonts/SourceSansPro-Bold.ttf +0 -0
  44. data/lib/html/source/fonts/SourceSansPro-BoldItalic.ttf +0 -0
  45. data/lib/html/source/fonts/SourceSansPro-ExtraLight.ttf +0 -0
  46. data/lib/html/source/fonts/SourceSansPro-ExtraLightItalic.ttf +0 -0
  47. data/lib/html/source/fonts/SourceSansPro-Italic.ttf +0 -0
  48. data/lib/html/source/fonts/SourceSansPro-Light.ttf +0 -0
  49. data/lib/html/source/fonts/SourceSansPro-LightItalic.ttf +0 -0
  50. data/lib/html/source/fonts/SourceSansPro-Regular.ttf +0 -0
  51. data/lib/html/source/fonts/SourceSansPro-Semibold.ttf +0 -0
  52. data/lib/html/source/fonts/SourceSansPro-SemiboldItalic.ttf +0 -0
  53. data/lib/html/source/fonts/SourceSansPro/OFL.txt +92 -0
  54. data/lib/html/source/index.html.slim +0 -4
  55. data/lib/html/source/javascripts/input.coffee +24 -19
  56. data/lib/html/source/stylesheets/buttons.styl +6 -7
  57. data/lib/html/source/stylesheets/colors.styl +2 -1
  58. data/lib/html/source/stylesheets/engraving.styl +4 -4
  59. data/lib/html/source/stylesheets/google_fonts.css +144 -0
  60. data/lib/html/source/stylesheets/markdown.styl +0 -1
  61. data/lib/html/source/stylesheets/mixins.styl +18 -0
  62. data/lib/html/source/stylesheets/status.styl +1 -0
  63. metadata +59 -5
data/Readme.md CHANGED
@@ -139,7 +139,7 @@ f.wait_until_closed
139
139
  ### Tables
140
140
 
141
141
  ```ruby
142
- f = Flammerion::Engraving.new
142
+ f = Flammarion::Engraving.new
143
143
  f.orientation = :horizontal
144
144
  f.table([["Id", "Name", "Address"].map{|h| h.light_magenta}] + 20.times.map do |i|
145
145
  [i, Faker::Name.name, Faker::Address.street_address]
@@ -1,3 +1,3 @@
1
1
  module Flammarion
2
- VERSION = "0.1.4pre"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -0,0 +1,93 @@
1
+ Copyright (c) 2011-2013, Cyreal (www.cyreal.org a@cyreal.org), with
2
+ Reserved Font Name 'Lora'
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+ This license is copied below, and is also available with a FAQ at:
5
+ http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -0,0 +1,92 @@
1
+ Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
2
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
3
+ This license is copied below, and is also available with a FAQ at:
4
+ http://scripts.sil.org/OFL
5
+
6
+
7
+ -----------------------------------------------------------
8
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
9
+ -----------------------------------------------------------
10
+
11
+ PREAMBLE
12
+ The goals of the Open Font License (OFL) are to stimulate worldwide
13
+ development of collaborative font projects, to support the font creation
14
+ efforts of academic and linguistic communities, and to provide a free and
15
+ open framework in which fonts may be shared and improved in partnership
16
+ with others.
17
+
18
+ The OFL allows the licensed fonts to be used, studied, modified and
19
+ redistributed freely as long as they are not sold by themselves. The
20
+ fonts, including any derivative works, can be bundled, embedded,
21
+ redistributed and/or sold with any software provided that any reserved
22
+ names are not used by derivative works. The fonts and derivatives,
23
+ however, cannot be released under any other type of license. The
24
+ requirement for fonts to remain under this license does not apply
25
+ to any document created using the fonts or their derivatives.
26
+
27
+ DEFINITIONS
28
+ "Font Software" refers to the set of files released by the Copyright
29
+ Holder(s) under this license and clearly marked as such. This may
30
+ include source files, build scripts and documentation.
31
+
32
+ "Reserved Font Name" refers to any names specified as such after the
33
+ copyright statement(s).
34
+
35
+ "Original Version" refers to the collection of Font Software components as
36
+ distributed by the Copyright Holder(s).
37
+
38
+ "Modified Version" refers to any derivative made by adding to, deleting,
39
+ or substituting -- in part or in whole -- any of the components of the
40
+ Original Version, by changing formats or by porting the Font Software to a
41
+ new environment.
42
+
43
+ "Author" refers to any designer, engineer, programmer, technical
44
+ writer or other person who contributed to the Font Software.
45
+
46
+ PERMISSION & CONDITIONS
47
+ Permission is hereby granted, free of charge, to any person obtaining
48
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
49
+ redistribute, and sell modified and unmodified copies of the Font
50
+ Software, subject to the following conditions:
51
+
52
+ 1) Neither the Font Software nor any of its individual components,
53
+ in Original or Modified Versions, may be sold by itself.
54
+
55
+ 2) Original or Modified Versions of the Font Software may be bundled,
56
+ redistributed and/or sold with any software, provided that each copy
57
+ contains the above copyright notice and this license. These can be
58
+ included either as stand-alone text files, human-readable headers or
59
+ in the appropriate machine-readable metadata fields within text or
60
+ binary files as long as those fields can be easily viewed by the user.
61
+
62
+ 3) No Modified Version of the Font Software may use the Reserved Font
63
+ Name(s) unless explicit written permission is granted by the corresponding
64
+ Copyright Holder. This restriction only applies to the primary font name as
65
+ presented to the users.
66
+
67
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
68
+ Software shall not be used to promote, endorse or advertise any
69
+ Modified Version, except to acknowledge the contribution(s) of the
70
+ Copyright Holder(s) and the Author(s) or with their explicit written
71
+ permission.
72
+
73
+ 5) The Font Software, modified or unmodified, in part or in whole,
74
+ must be distributed entirely under this license, and must not be
75
+ distributed under any other license. The requirement for fonts to
76
+ remain under this license does not apply to any document created
77
+ using the Font Software.
78
+
79
+ TERMINATION
80
+ This license becomes null and void if any of the above conditions are
81
+ not met.
82
+
83
+ DISCLAIMER
84
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
85
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
86
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
87
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
88
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
89
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
90
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
91
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
92
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -1 +1 @@
1
- <!DOCTYPE html><html><head><meta content="text/html; charset=UTF-8" http-equiv="content-type" /><meta charset="utf-8" /><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /><meta content="width=device-width, initial-scale=1.0" name="viewport" /><title>Flammarion</title><link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet" type="text/css" /><link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet" type="text/css" /><link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,600,300" rel="stylesheet" type="text/css" /><link href="https://fonts.googleapis.com/css?family=Merriweather:400,400italic,700,700italic" rel="stylesheet" type="text/css" /><link href="stylesheets/all.css" rel="stylesheet" type="text/css" /><script src="javascripts/all.js" type="text/javascript"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="hidden" id="toolbar"><a class="tool-button" href="#">Open</a><a class="tool-button" href="#">Save</a></div><div id="panes"><pre class="pane" id="console-default" style="height:100%"></pre></div><div class="hidden" id="dialog"><div id="content"><pre id="message">Hi World</pre><a class="full-button" href="#" id="ok">Ok</a></div></div><div id="status"><div class="left"></div><div class="center"></div><div class="right"></div></div><div class="hidden" id="searchbar"><i class="fa fa-search"></i><input /></div><div class="hidden" id="plot-style"><div class="tickmarks"></div><div class="markers"></div><div class="zero"></div></div></body></html>
1
+ <!DOCTYPE html><html><head><meta content="text/html; charset=UTF-8" http-equiv="content-type" /><meta charset="utf-8" /><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /><meta content="width=device-width, initial-scale=1.0" name="viewport" /><title>Flammarion</title><link href="stylesheets/all.css" rel="stylesheet" type="text/css" /><script src="javascripts/all.js" type="text/javascript"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="hidden" id="toolbar"><a class="tool-button" href="#">Open</a><a class="tool-button" href="#">Save</a></div><div id="panes"><pre class="pane" id="console-default" style="height:100%"></pre></div><div class="hidden" id="dialog"><div id="content"><pre id="message">Hi World</pre><a class="full-button" href="#" id="ok">Ok</a></div></div><div id="status"><div class="left"></div><div class="center"></div><div class="right"></div></div><div class="hidden" id="searchbar"><i class="fa fa-search"></i><input /></div><div class="hidden" id="plot-style"><div class="tickmarks"></div><div class="markers"></div><div class="zero"></div></div></body></html>
@@ -7072,7 +7072,7 @@ if (typeof module !== 'undefined') {
7072
7072
  }
7073
7073
  },
7074
7074
  input: function(data) {
7075
- var element, offset_history, target;
7075
+ var accept, element, offset_history, target;
7076
7076
  target = this.__parent.check_target(data);
7077
7077
  if (data.multiline) {
7078
7078
  element = $("<textarea placeholder='" + data.label + "' class='inline-text-input'></textarea>");
@@ -7082,33 +7082,38 @@ if (typeof module !== 'undefined') {
7082
7082
  if (data.value) {
7083
7083
  element[0].value = data.value;
7084
7084
  }
7085
- element.change((function(_this) {
7086
- return function() {
7085
+ accept = (function(_this) {
7086
+ return function(data) {
7087
7087
  var history, replaceText;
7088
- if (!element.hasClass("unclicked")) {
7089
- _this.__parent.send({
7090
- id: data.id,
7091
- action: 'callback',
7092
- source: 'input',
7093
- text: element[0].value,
7094
- original_msg: data
7095
- });
7096
- if (data.once) {
7097
- replaceText = _this.__parent.escape(element[0].value + "\n");
7098
- if (data.keep_label) {
7099
- replaceText = "" + data.label + replaceText;
7100
- }
7101
- element.replaceWith(replaceText);
7102
- }
7103
- if (data.history) {
7104
- history = element.data('history') || [];
7105
- history.push(element[0].value);
7106
- element.data('history', history);
7107
- element.data('history-index', history.length);
7108
- }
7109
- if (data.autoclear) {
7110
- return element[0].value = "";
7088
+ _this.__parent.send({
7089
+ id: data.id,
7090
+ action: 'callback',
7091
+ source: 'input',
7092
+ text: element[0].value,
7093
+ original_msg: data
7094
+ });
7095
+ if (data.once) {
7096
+ replaceText = _this.__parent.escape(element[0].value + "\n");
7097
+ if (data.keep_label) {
7098
+ replaceText = "" + data.label + replaceText;
7111
7099
  }
7100
+ element.replaceWith(replaceText);
7101
+ }
7102
+ if (data.history) {
7103
+ history = element.data('history') || [];
7104
+ history.push(element[0].value);
7105
+ element.data('history', history);
7106
+ element.data('history-index', history.length);
7107
+ }
7108
+ if (data.autoclear) {
7109
+ return element[0].value = "";
7110
+ }
7111
+ };
7112
+ })(this);
7113
+ element.change((function(_this) {
7114
+ return function() {
7115
+ if (!(element.hasClass("unclicked") || data.enter_only)) {
7116
+ return accept(data);
7112
7117
  }
7113
7118
  };
7114
7119
  })(this));
@@ -7130,7 +7135,10 @@ if (typeof module !== 'undefined') {
7130
7135
  offset_history(e, -1);
7131
7136
  }
7132
7137
  if (e.which === 40 && data.history) {
7133
- return offset_history(e, +1);
7138
+ offset_history(e, +1);
7139
+ }
7140
+ if (e.which === 13 && data.enter_only) {
7141
+ return accept(data);
7134
7142
  }
7135
7143
  };
7136
7144
  })(this));
@@ -252,7 +252,7 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
252
252
  }
253
253
  },
254
254
  input: function(data) {
255
- var element, offset_history, target;
255
+ var accept, element, offset_history, target;
256
256
  target = this.__parent.check_target(data);
257
257
  if (data.multiline) {
258
258
  element = $("<textarea placeholder='" + data.label + "' class='inline-text-input'></textarea>");
@@ -262,33 +262,38 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
262
262
  if (data.value) {
263
263
  element[0].value = data.value;
264
264
  }
265
- element.change((function(_this) {
266
- return function() {
265
+ accept = (function(_this) {
266
+ return function(data) {
267
267
  var history, replaceText;
268
- if (!element.hasClass("unclicked")) {
269
- _this.__parent.send({
270
- id: data.id,
271
- action: 'callback',
272
- source: 'input',
273
- text: element[0].value,
274
- original_msg: data
275
- });
276
- if (data.once) {
277
- replaceText = _this.__parent.escape(element[0].value + "\n");
278
- if (data.keep_label) {
279
- replaceText = "" + data.label + replaceText;
280
- }
281
- element.replaceWith(replaceText);
282
- }
283
- if (data.history) {
284
- history = element.data('history') || [];
285
- history.push(element[0].value);
286
- element.data('history', history);
287
- element.data('history-index', history.length);
288
- }
289
- if (data.autoclear) {
290
- return element[0].value = "";
268
+ _this.__parent.send({
269
+ id: data.id,
270
+ action: 'callback',
271
+ source: 'input',
272
+ text: element[0].value,
273
+ original_msg: data
274
+ });
275
+ if (data.once) {
276
+ replaceText = _this.__parent.escape(element[0].value + "\n");
277
+ if (data.keep_label) {
278
+ replaceText = "" + data.label + replaceText;
291
279
  }
280
+ element.replaceWith(replaceText);
281
+ }
282
+ if (data.history) {
283
+ history = element.data('history') || [];
284
+ history.push(element[0].value);
285
+ element.data('history', history);
286
+ element.data('history-index', history.length);
287
+ }
288
+ if (data.autoclear) {
289
+ return element[0].value = "";
290
+ }
291
+ };
292
+ })(this);
293
+ element.change((function(_this) {
294
+ return function() {
295
+ if (!(element.hasClass("unclicked") || data.enter_only)) {
296
+ return accept(data);
292
297
  }
293
298
  };
294
299
  })(this));
@@ -310,7 +315,10 @@ void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?voi
310
315
  offset_history(e, -1);
311
316
  }
312
317
  if (e.which === 40 && data.history) {
313
- return offset_history(e, +1);
318
+ offset_history(e, +1);
319
+ }
320
+ if (e.which === 13 && data.enter_only) {
321
+ return accept(data);
314
322
  }
315
323
  };
316
324
  })(this));
@@ -1,5 +1,5 @@
1
1
  @charset "utf-8";.ansi-black-fg {
2
- color: #252525;
2
+ color: #292929;
3
3
  }
4
4
  .ansi-black-bg {
5
5
  background-color: #292929;
@@ -8,7 +8,7 @@
8
8
  color: #292929;
9
9
  }
10
10
  .ansi-red-fg {
11
- color: #a80000;
11
+ color: #b00;
12
12
  }
13
13
  .ansi-red-bg {
14
14
  background-color: #b00;
@@ -17,13 +17,7 @@
17
17
  color: #b00;
18
18
  }
19
19
  .ansi-green-fg {
20
- color: #00a800;
21
- }
22
- #status .ansi-green-fg {
23
- color: #5eff5e;
24
- }
25
- #dialog .ansi-green-fg {
26
- color: #5eff5e;
20
+ color: #0b0;
27
21
  }
28
22
  .ansi-green-bg {
29
23
  background-color: #0b0;
@@ -32,13 +26,7 @@
32
26
  color: #0b0;
33
27
  }
34
28
  .ansi-yellow-fg {
35
- color: #a8a800;
36
- }
37
- #status .ansi-yellow-fg {
38
- color: #ffff5e;
39
- }
40
- #dialog .ansi-yellow-fg {
41
- color: #ffff5e;
29
+ color: #bb0;
42
30
  }
43
31
  .ansi-yellow-bg {
44
32
  background-color: #bb0;
@@ -47,7 +35,7 @@
47
35
  color: #bb0;
48
36
  }
49
37
  .ansi-blue-fg {
50
- color: #2044b2;
38
+ color: #234bc6;
51
39
  }
52
40
  .ansi-blue-bg {
53
41
  background-color: #234bc6;
@@ -56,7 +44,7 @@
56
44
  color: #234bc6;
57
45
  }
58
46
  .ansi-magenta-fg {
59
- color: #a800a8;
47
+ color: #b0b;
60
48
  }
61
49
  .ansi-magenta-bg {
62
50
  background-color: #b0b;
@@ -65,13 +53,7 @@
65
53
  color: #b0b;
66
54
  }
67
55
  .ansi-cyan-fg {
68
- color: #00a8a8;
69
- }
70
- #status .ansi-cyan-fg {
71
- color: #5effff;
72
- }
73
- #dialog .ansi-cyan-fg {
74
- color: #5effff;
56
+ color: #0bb;
75
57
  }
76
58
  .ansi-cyan-bg {
77
59
  background-color: #0bb;
@@ -80,7 +62,7 @@
80
62
  color: #0bb;
81
63
  }
82
64
  .ansi-white-fg {
83
- color: #a1a1a1;
65
+ color: #fff;
84
66
  }
85
67
  .ansi-white-bg {
86
68
  background-color: #fff;
@@ -89,7 +71,7 @@
89
71
  color: #fff;
90
72
  }
91
73
  .ansi-bright-black-fg {
92
- color: #4d4d4d;
74
+ color: #555;
93
75
  }
94
76
  .ansi-bright-black-bg {
95
77
  background-color: #555;
@@ -98,7 +80,7 @@
98
80
  color: #555;
99
81
  }
100
82
  .ansi-bright-red-fg {
101
- color: #f33;
83
+ color: #f55;
102
84
  }
103
85
  .ansi-bright-red-bg {
104
86
  background-color: #f55;
@@ -107,13 +89,7 @@
107
89
  color: #f55;
108
90
  }
109
91
  .ansi-bright-green-fg {
110
- color: #00e600;
111
- }
112
- #status .ansi-bright-green-fg {
113
- color: #008000;
114
- }
115
- #dialog .ansi-bright-green-fg {
116
- color: #008000;
92
+ color: #0f0;
117
93
  }
118
94
  .ansi-bright-green-bg {
119
95
  background-color: #0f0;
@@ -122,7 +98,7 @@
122
98
  color: #0f0;
123
99
  }
124
100
  .ansi-bright-yellow-fg {
125
- color: #d6d600;
101
+ color: #ff5;
126
102
  }
127
103
  .ansi-bright-yellow-bg {
128
104
  background-color: #ff5;
@@ -131,7 +107,7 @@
131
107
  color: #ff5;
132
108
  }
133
109
  .ansi-bright-blue-fg {
134
- color: #33f;
110
+ color: #55f;
135
111
  }
136
112
  .ansi-bright-blue-bg {
137
113
  background-color: #55f;
@@ -140,13 +116,7 @@
140
116
  color: #55f;
141
117
  }
142
118
  .ansi-bright-magenta-fg {
143
- color: #f3f;
144
- }
145
- #status .ansi-bright-magenta-fg {
146
- color: #a0a;
147
- }
148
- #dialog .ansi-bright-magenta-fg {
149
- color: #a0a;
119
+ color: #f5f;
150
120
  }
151
121
  .ansi-bright-magenta-bg {
152
122
  background-color: #f5f;
@@ -155,7 +125,7 @@
155
125
  color: #f5f;
156
126
  }
157
127
  .ansi-bright-cyan-fg {
158
- color: #00d6d6;
128
+ color: #5ff;
159
129
  }
160
130
  .ansi-bright-cyan-bg {
161
131
  background-color: #5ff;
@@ -164,7 +134,7 @@
164
134
  color: #5ff;
165
135
  }
166
136
  .ansi-bright-white-fg {
167
- color: #a1a1a1;
137
+ color: #fff;
168
138
  }
169
139
  .ansi-bright-white-bg {
170
140
  background-color: #fff;
@@ -173,10 +143,10 @@
173
143
  color: #fff;
174
144
  }
175
145
  .full-button {
176
- background-color: #eee;
177
- color: #333;
146
+ background-color: #1d1f21;
147
+ color: #eee;
178
148
  font-family: monospace;
179
- border: 1px solid #242424;
149
+ border: 1px solid #a7a7a7;
180
150
  padding: 1em;
181
151
  text-decoration: none;
182
152
  display: block;
@@ -189,30 +159,31 @@
189
159
  -moz-user-select: none;
190
160
  -ms-user-select: none;
191
161
  user-select: none;
192
- background-color: #f0f0f0;
193
- background-image: -webkit-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
194
- background-image: -moz-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
195
- background-image: -ms-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
196
- background-image: -o-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
197
- background-image: linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
162
+ background-color: #323539;
163
+ background-image: -webkit-linear-gradient(top, #323539 0%, #1a1c1e 20%);
164
+ background-image: -moz-linear-gradient(top, #323539 0%, #1a1c1e 20%);
165
+ background-image: -ms-linear-gradient(top, #323539 0%, #1a1c1e 20%);
166
+ background-image: -o-linear-gradient(top, #323539 0%, #1a1c1e 20%);
167
+ background-image: linear-gradient(top, #323539 0%, #1a1c1e 20%);
198
168
  }
199
169
  .full-button:hover {
200
- background-color: #d6d6d6;
201
- background-color: #dadada;
202
- background-image: -webkit-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
203
- background-image: -moz-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
204
- background-image: -ms-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
205
- background-image: -o-linear-gradient(top, #dadada 40%, #c1c1c1 100%);
206
- background-image: linear-gradient(top, #dadada 40%, #c1c1c1 100%);
170
+ color: #eee;
171
+ background-color: #323539;
172
+ background-color: #45494e;
173
+ background-image: -webkit-linear-gradient(top, #45494e 0%, #2d3033 20%);
174
+ background-image: -moz-linear-gradient(top, #45494e 0%, #2d3033 20%);
175
+ background-image: -ms-linear-gradient(top, #45494e 0%, #2d3033 20%);
176
+ background-image: -o-linear-gradient(top, #45494e 0%, #2d3033 20%);
177
+ background-image: linear-gradient(top, #45494e 0%, #2d3033 20%);
207
178
  }
208
179
  .full-button:active {
209
- background-color: #bebebe;
210
- background-color: #c1c1c1;
211
- background-image: -webkit-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
212
- background-image: -moz-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
213
- background-image: -ms-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
214
- background-image: -o-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
215
- background-image: linear-gradient(top, #c1c1c1 40%, #dadada 100%);
180
+ background-color: #474c51;
181
+ background-color: #2d3033;
182
+ background-image: -webkit-linear-gradient(top, #2d3033 0%, #45494e 20%);
183
+ background-image: -moz-linear-gradient(top, #2d3033 0%, #45494e 20%);
184
+ background-image: -ms-linear-gradient(top, #2d3033 0%, #45494e 20%);
185
+ background-image: -o-linear-gradient(top, #2d3033 0%, #45494e 20%);
186
+ background-image: linear-gradient(top, #2d3033 0%, #45494e 20%);
216
187
  }
217
188
  .full-button > .label-icon-left {
218
189
  float: left;
@@ -222,10 +193,10 @@
222
193
  }
223
194
  .inline-text-input,
224
195
  .inline-dropdown {
225
- background-color: #eee;
226
- color: #333;
196
+ background-color: #1d1f21;
197
+ color: #eee;
227
198
  font-family: monospace;
228
- border: 1px solid #242424;
199
+ border: 1px solid #a7a7a7;
229
200
  padding: 1em;
230
201
  text-decoration: none;
231
202
  display: block;
@@ -241,15 +212,16 @@
241
212
  text-align: left;
242
213
  box-sizing: border-box;
243
214
  width: 100%;
244
- box-shadow: inset 0px 0px 2px 2px #bebebe;
215
+ box-shadow: inset 0px 0px 2px 2px #17191a;
245
216
  }
246
217
  .inline-text-input:hover,
247
218
  .inline-dropdown:hover {
248
- background-color: #d6d6d6;
219
+ color: #eee;
220
+ background-color: #323539;
249
221
  }
250
222
  .inline-text-input:active,
251
223
  .inline-dropdown:active {
252
- background-color: #bebebe;
224
+ background-color: #474c51;
253
225
  }
254
226
  .inline-text-input > .label-icon-left,
255
227
  .inline-dropdown > .label-icon-left {
@@ -261,14 +233,14 @@
261
233
  }
262
234
  .inline-text-input.unclicked,
263
235
  .inline-dropdown.unclicked {
264
- color: #1a1a1a;
236
+ color: #777;
265
237
  }
266
238
  textarea.inline-text-input,
267
239
  textarea.inline-dropdown {
268
240
  height: 25em;
269
241
  }
270
242
  input::-webkit-input-placeholder {
271
- color: #1a1a1a;
243
+ color: #777;
272
244
  }
273
245
  input:focus::-webkit-input-placeholder {
274
246
  opacity: 0;
@@ -297,29 +269,29 @@ input:focus::-webkit-input-placeholder {
297
269
  content: " ";
298
270
  width: 1em;
299
271
  height: 1em;
300
- border: 1px solid #242424;
272
+ border: 1px solid #a7a7a7;
301
273
  margin-right: 0.5em;
302
- background-color: #f0f0f0;
303
- background-image: -webkit-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
304
- background-image: -moz-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
305
- background-image: -ms-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
306
- background-image: -o-linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
307
- background-image: linear-gradient(top, #f0f0f0 40%, #d6d6d6 100%);
274
+ background-color: #323539;
275
+ background-image: -webkit-linear-gradient(top, #323539 0%, #1a1c1e 20%);
276
+ background-image: -moz-linear-gradient(top, #323539 0%, #1a1c1e 20%);
277
+ background-image: -ms-linear-gradient(top, #323539 0%, #1a1c1e 20%);
278
+ background-image: -o-linear-gradient(top, #323539 0%, #1a1c1e 20%);
279
+ background-image: linear-gradient(top, #323539 0%, #1a1c1e 20%);
308
280
  }
309
281
  .inline-checkbox.checked:before {
310
282
  content: "X";
311
283
  font-weight: 900;
312
- color: #8f8f8f;
284
+ color: #717980;
313
285
  text-align: center;
314
- background-color: #c1c1c1;
315
- background-image: -webkit-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
316
- background-image: -moz-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
317
- background-image: -ms-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
318
- background-image: -o-linear-gradient(top, #c1c1c1 40%, #dadada 100%);
319
- background-image: linear-gradient(top, #c1c1c1 40%, #dadada 100%);
286
+ background-color: #2d3033;
287
+ background-image: -webkit-linear-gradient(top, #2d3033 0%, #45494e 20%);
288
+ background-image: -moz-linear-gradient(top, #2d3033 0%, #45494e 20%);
289
+ background-image: -ms-linear-gradient(top, #2d3033 0%, #45494e 20%);
290
+ background-image: -o-linear-gradient(top, #2d3033 0%, #45494e 20%);
291
+ background-image: linear-gradient(top, #2d3033 0%, #45494e 20%);
320
292
  }
321
293
  .inline-checkbox:hover {
322
- background-color: #d6d6d6;
294
+ background-color: #323539;
323
295
  }
324
296
  #toolbar {
325
297
  background-color: #000;
@@ -332,7 +304,7 @@ input:focus::-webkit-input-placeholder {
332
304
  padding: 0.5em;
333
305
  margin: 0;
334
306
  text-decoration: none;
335
- color: #333;
307
+ color: #eee;
336
308
  border-right: 1px solid;
337
309
  border-left: 1px solid;
338
310
  margin-right: 0em;
@@ -346,7 +318,7 @@ input:focus::-webkit-input-placeholder {
346
318
  right: 0.5em;
347
319
  margin-right: 1em;
348
320
  background-color: rgba(0,0,0,0.5);
349
- box-shadow: 2px 2px 4px 2px #bebebe;
321
+ box-shadow: 2px 2px 4px 2px #17191a;
350
322
  padding: 0;
351
323
  z-index: 3;
352
324
  }
@@ -366,10 +338,10 @@ input:focus::-webkit-input-placeholder {
366
338
  width: auto;
367
339
  }
368
340
  .button-box .inline-checkbox {
369
- border: 1px solid #242424;
341
+ border: 1px solid #a7a7a7;
370
342
  }
371
343
  .button-box .inline-checkbox:before {
372
- border: 1px solid #0f0f0f;
344
+ border: 1px solid #474747;
373
345
  height: 50%;
374
346
  }
375
347
  .button-box .label-icon-left,
@@ -377,10 +349,10 @@ input:focus::-webkit-input-placeholder {
377
349
  margin: 0px 5px;
378
350
  }
379
351
  .inline-button {
380
- background-color: #eee;
381
- color: #333;
352
+ background-color: #1d1f21;
353
+ color: #eee;
382
354
  font-family: monospace;
383
- border: 1px solid #242424;
355
+ border: 1px solid #a7a7a7;
384
356
  padding: 1em;
385
357
  text-decoration: none;
386
358
  display: block;
@@ -396,10 +368,11 @@ input:focus::-webkit-input-placeholder {
396
368
  display: inline;
397
369
  }
398
370
  .inline-button:hover {
399
- background-color: #d6d6d6;
371
+ color: #eee;
372
+ background-color: #323539;
400
373
  }
401
374
  .inline-button:active {
402
- background-color: #bebebe;
375
+ background-color: #474c51;
403
376
  }
404
377
  .inline-button > .label-icon-left {
405
378
  float: left;
@@ -408,10 +381,10 @@ input:focus::-webkit-input-placeholder {
408
381
  float: right;
409
382
  }
410
383
  .floating-button {
411
- background-color: #eee;
412
- color: #333;
384
+ background-color: #1d1f21;
385
+ color: #eee;
413
386
  font-family: monospace;
414
- border: 1px solid #242424;
387
+ border: 1px solid #a7a7a7;
415
388
  padding: 1em;
416
389
  text-decoration: none;
417
390
  display: block;
@@ -429,10 +402,11 @@ input:focus::-webkit-input-placeholder {
429
402
  padding: 0.2em;
430
403
  }
431
404
  .floating-button:hover {
432
- background-color: #d6d6d6;
405
+ color: #eee;
406
+ background-color: #323539;
433
407
  }
434
408
  .floating-button:active {
435
- background-color: #bebebe;
409
+ background-color: #474c51;
436
410
  }
437
411
  .floating-button > .label-icon-left {
438
412
  float: left;
@@ -453,7 +427,7 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
453
427
  display: block;
454
428
  overflow-x: auto;
455
429
  padding: 0.5em;
456
- background-color: #242424;
430
+ background-color: #1d1f21;
457
431
  color: #e6e1dc;
458
432
  -webkit-text-size-adjust: none;
459
433
  border-radius: 5px;
@@ -621,8 +595,8 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
621
595
  width: 70%;
622
596
  height: 70%;
623
597
  padding: 1em;
624
- background-color: #bebebe;
625
- border: 1px solid #242424;
598
+ background-color: #17191a;
599
+ border: 1px solid #a7a7a7;
626
600
  box-shadow: 2px 2px 4px 2px #333;
627
601
  -webkit-touch-callout: none;
628
602
  -webkit-user-select: none;
@@ -648,8 +622,8 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
648
622
  }
649
623
 
650
624
  body {
651
- background-color: #eee;
652
- color: #333;
625
+ background-color: #1d1f21;
626
+ color: #eee;
653
627
  padding: 0px;
654
628
  margin: 0px;
655
629
  height: 100%;
@@ -671,17 +645,18 @@ html {
671
645
  padding-bottom: 0px;
672
646
  height: calc(100% - 2px);
673
647
  width: calc(100% - 4px);
674
- box-shadow: inset 0px 0px 2px 2px #bebebe;
648
+ box-shadow: inset 0px 0px 2px 2px #17191a;
675
649
  }
676
650
  a {
677
651
  text-decoration: none;
652
+ color: #909193;
678
653
  }
679
- p a {
680
- text-decoration: underline;
681
- color: #848484;
654
+ a:hover {
655
+ color: #9a9d9f;
682
656
  }
683
- p a:hover {
684
- color: #787878;
657
+ p a,
658
+ .markdown a {
659
+ text-decoration: underline;
685
660
  }
686
661
  .hidden {
687
662
  display: none;
@@ -722,8 +697,8 @@ p a:hover {
722
697
  }
723
698
  hr {
724
699
  width: 95%;
725
- background-color: #333;
726
- border: 1px solid #d6d6d6;
700
+ background-color: #eee;
701
+ border: 1px solid #323539;
727
702
  }
728
703
  /*!
729
704
  * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
@@ -2817,6 +2792,151 @@ hr {
2817
2792
  * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
2818
2793
  */
2819
2794
  @font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}
2795
+ /* cyrillic */
2796
+
2797
+ @font-face {
2798
+ font-family: 'Lora';
2799
+ font-style: normal;
2800
+ font-weight: 400;
2801
+ src: local('Lora'), local('Lora-Regular'), url('../fonts/Lora-Regular.ttf') format('truetype');
2802
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
2803
+ }
2804
+ /* latin-ext */
2805
+ @font-face {
2806
+ font-family: 'Lora';
2807
+ font-style: normal;
2808
+ font-weight: 400;
2809
+ src: local('Lora'), local('Lora-Regular'), url('../fonts/Lora-Regular.ttf') format('truetype');
2810
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
2811
+ }
2812
+ /* latin */
2813
+ @font-face {
2814
+ font-family: 'Lora';
2815
+ font-style: normal;
2816
+ font-weight: 400;
2817
+ src: local('Lora'), local('Lora-Regular'), url('../fonts/Lora-Regular.ttf') format('truetype');
2818
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2819
+ }
2820
+ /* cyrillic */
2821
+ @font-face {
2822
+ font-family: 'Lora';
2823
+ font-style: normal;
2824
+ font-weight: 700;
2825
+ src: local('Lora Bold'), local('Lora-Bold'), url('../fonts/Lora-Bold.ttf') format('truetype');
2826
+ unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
2827
+ }
2828
+ /* latin-ext */
2829
+ @font-face {
2830
+ font-family: 'Lora';
2831
+ font-style: normal;
2832
+ font-weight: 700;
2833
+ src: local('Lora Bold'), local('Lora-Bold'), url('../fonts/Lora-Bold.ttf') format('truetype');
2834
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
2835
+ }
2836
+ /* latin */
2837
+ @font-face {
2838
+ font-family: 'Lora';
2839
+ font-style: normal;
2840
+ font-weight: 700;
2841
+ src: local('Lora Bold'), local('Lora-Bold'), url('../fonts/Lora-Bold.ttf') format('truetype');
2842
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2843
+ }
2844
+ /* vietnamese */
2845
+ @font-face {
2846
+ font-family: 'Source Sans Pro';
2847
+ font-style: normal;
2848
+ font-weight: 400;
2849
+ src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
2850
+ unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
2851
+ }
2852
+ /* latin-ext */
2853
+ @font-face {
2854
+ font-family: 'Source Sans Pro';
2855
+ font-style: normal;
2856
+ font-weight: 400;
2857
+ src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
2858
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
2859
+ }
2860
+ /* latin */
2861
+ @font-face {
2862
+ font-family: 'Source Sans Pro';
2863
+ font-style: normal;
2864
+ font-weight: 400;
2865
+ src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
2866
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2867
+ }
2868
+ /* vietnamese */
2869
+ @font-face {
2870
+ font-family: 'Source Sans Pro';
2871
+ font-style: normal;
2872
+ font-weight: 700;
2873
+ src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
2874
+ unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
2875
+ }
2876
+ /* latin-ext */
2877
+ @font-face {
2878
+ font-family: 'Source Sans Pro';
2879
+ font-style: normal;
2880
+ font-weight: 700;
2881
+ src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
2882
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
2883
+ }
2884
+ /* latin */
2885
+ @font-face {
2886
+ font-family: 'Source Sans Pro';
2887
+ font-style: normal;
2888
+ font-weight: 700;
2889
+ src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/SourceSansPro-Bold.ttf') format('truetype');
2890
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2891
+ }
2892
+ /* vietnamese */
2893
+ @font-face {
2894
+ font-family: 'Source Sans Pro';
2895
+ font-style: italic;
2896
+ font-weight: 400;
2897
+ src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
2898
+ unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
2899
+ }
2900
+ /* latin-ext */
2901
+ @font-face {
2902
+ font-family: 'Source Sans Pro';
2903
+ font-style: italic;
2904
+ font-weight: 400;
2905
+ src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
2906
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
2907
+ }
2908
+ /* latin */
2909
+ @font-face {
2910
+ font-family: 'Source Sans Pro';
2911
+ font-style: italic;
2912
+ font-weight: 400;
2913
+ src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url('../fonts/SourceSansPro-Italic.ttf') format('truetype');
2914
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2915
+ }
2916
+ /* vietnamese */
2917
+ @font-face {
2918
+ font-family: 'Source Sans Pro';
2919
+ font-style: italic;
2920
+ font-weight: 700;
2921
+ src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldIt'), url('../fonts/SourceSansPro-BoldItalic.ttf') format('truetype');
2922
+ unicode-range: U+0102-0103, U+1EA0-1EF1, U+20AB;
2923
+ }
2924
+ /* latin-ext */
2925
+ @font-face {
2926
+ font-family: 'Source Sans Pro';
2927
+ font-style: italic;
2928
+ font-weight: 700;
2929
+ src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldIt'), url('../fonts/SourceSansPro-BoldItalic.ttf') format('truetype');
2930
+ unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
2931
+ }
2932
+ /* latin */
2933
+ @font-face {
2934
+ font-family: 'Source Sans Pro';
2935
+ font-style: italic;
2936
+ font-weight: 700;
2937
+ src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldIt'), url('../fonts/SourceSansPro-BoldItalic.ttf') format('truetype');
2938
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
2939
+ }
2820
2940
  /* required styles */
2821
2941
 
2822
2942
 
@@ -3320,12 +3440,12 @@ hr {
3320
3440
  }
3321
3441
  #plot-mouseover {
3322
3442
  position: absolute;
3323
- background-color: rgba(190,190,190,0.5);
3324
- color: #333;
3443
+ background-color: rgba(71,76,81,0.5);
3444
+ color: #eee;
3325
3445
  pointer-events: none;
3326
3446
  font-family: Monospace;
3327
3447
  padding: 0.25em;
3328
- box-shadow: 2px 2px 4px 2px #bebebe;
3448
+ box-shadow: 2px 2px 4px 2px #17191a;
3329
3449
  }
3330
3450
  #plot-zoom-element {
3331
3451
  position: absolute;
@@ -3334,17 +3454,17 @@ hr {
3334
3454
  border: 1px solid #012;
3335
3455
  }
3336
3456
  #plot-style {
3337
- color: #333;
3338
- background-color: #d6d6d6;
3457
+ color: #eee;
3458
+ background-color: #323539;
3339
3459
  }
3340
3460
  #plot-style .tickmarks {
3341
- color: #707070;
3461
+ color: #a7a7a7;
3342
3462
  }
3343
3463
  #plot-style .markers {
3344
- color: #707070;
3464
+ color: #a7a7a7;
3345
3465
  }
3346
3466
  #plot-style .zero {
3347
- color: rgba(190,190,190,0.75);
3467
+ color: rgba(71,76,81,0.75);
3348
3468
  }
3349
3469
  ::-webkit-scrollbar {
3350
3470
  width: 0.666em;
@@ -3355,25 +3475,25 @@ hr {
3355
3475
  height: 1.5em;
3356
3476
  }
3357
3477
  ::-webkit-scrollbar-thumb {
3358
- background: #858585;
3359
- background-color: #aaa;
3360
- background-image: -webkit-linear-gradient(left, #aaa 40%, #787878 50%);
3361
- background-image: -moz-linear-gradient(left, #aaa 40%, #787878 50%);
3362
- background-image: -ms-linear-gradient(left, #aaa 40%, #787878 50%);
3363
- background-image: -o-linear-gradient(left, #aaa 40%, #787878 50%);
3364
- background-image: linear-gradient(left, #aaa 40%, #787878 50%);
3478
+ background: #808283;
3479
+ background-color: #a6a8a8;
3480
+ background-image: -webkit-linear-gradient(left, #a6a8a8 40%, #737576 50%);
3481
+ background-image: -moz-linear-gradient(left, #a6a8a8 40%, #737576 50%);
3482
+ background-image: -ms-linear-gradient(left, #a6a8a8 40%, #737576 50%);
3483
+ background-image: -o-linear-gradient(left, #a6a8a8 40%, #737576 50%);
3484
+ background-image: linear-gradient(left, #a6a8a8 40%, #737576 50%);
3365
3485
  }
3366
3486
  ::-webkit-scrollbar-thumb:horizontal {
3367
- background-color: #aaa;
3368
- background-image: -webkit-linear-gradient(top, #aaa 40%, #787878 50%);
3369
- background-image: -moz-linear-gradient(top, #aaa 40%, #787878 50%);
3370
- background-image: -ms-linear-gradient(top, #aaa 40%, #787878 50%);
3371
- background-image: -o-linear-gradient(top, #aaa 40%, #787878 50%);
3372
- background-image: linear-gradient(top, #aaa 40%, #787878 50%);
3487
+ background-color: #a6a8a8;
3488
+ background-image: -webkit-linear-gradient(top, #a6a8a8 40%, #737576 50%);
3489
+ background-image: -moz-linear-gradient(top, #a6a8a8 40%, #737576 50%);
3490
+ background-image: -ms-linear-gradient(top, #a6a8a8 40%, #737576 50%);
3491
+ background-image: -o-linear-gradient(top, #a6a8a8 40%, #737576 50%);
3492
+ background-image: linear-gradient(top, #a6a8a8 40%, #737576 50%);
3373
3493
  }
3374
3494
  ::-webkit-scrollbar-track {
3375
- background: #bebebe;
3376
- box-shadow: inset 0px 0px 1px 1px #d6d6d6;
3495
+ background: #4b4c4d;
3496
+ box-shadow: inset 0px 0px 1px 1px #1a1c1e;
3377
3497
  }
3378
3498
  #searchbar {
3379
3499
  position: absolute;
@@ -3381,17 +3501,17 @@ hr {
3381
3501
  top: 0px;
3382
3502
  padding: 5px;
3383
3503
  padding-top: 0px;
3384
- background-color: #eee;
3385
- border: 1px solid #242424;
3504
+ background-color: #1d1f21;
3505
+ border: 1px solid #a7a7a7;
3386
3506
  border-top: 0px;
3387
3507
  border-radius: 0 0 4px 4px;
3388
- box-shadow: 2px 2px 4px 2px #bebebe;
3508
+ box-shadow: 2px 2px 4px 2px #17191a;
3389
3509
  }
3390
3510
  #searchbar > input {
3391
3511
  margin-left: 1em;
3392
3512
  }
3393
3513
  #status {
3394
- background-color: #aaa;
3514
+ background-color: #000;
3395
3515
  margin: 0px;
3396
3516
  padding: 5px;
3397
3517
  padding-bottom: 10px;
@@ -3406,12 +3526,12 @@ hr {
3406
3526
  -moz-user-select: none;
3407
3527
  -ms-user-select: none;
3408
3528
  user-select: none;
3409
- background-color: #b2b2b2;
3410
- background-image: -webkit-linear-gradient(top, #b2b2b2 10%, #999 100%);
3411
- background-image: -moz-linear-gradient(top, #b2b2b2 10%, #999 100%);
3412
- background-image: -ms-linear-gradient(top, #b2b2b2 10%, #999 100%);
3413
- background-image: -o-linear-gradient(top, #b2b2b2 10%, #999 100%);
3414
- background-image: linear-gradient(top, #b2b2b2 10%, #999 100%);
3529
+ background-color: #1a1a1a;
3530
+ background-image: -webkit-linear-gradient(top, #1a1a1a 10%, #000 100%);
3531
+ background-image: -moz-linear-gradient(top, #1a1a1a 10%, #000 100%);
3532
+ background-image: -ms-linear-gradient(top, #1a1a1a 10%, #000 100%);
3533
+ background-image: -o-linear-gradient(top, #1a1a1a 10%, #000 100%);
3534
+ background-image: linear-gradient(top, #1a1a1a 10%, #000 100%);
3415
3535
  }
3416
3536
  #status:before {
3417
3537
  color: #781111;
@@ -3444,16 +3564,16 @@ td {
3444
3564
  box-sizing: padding-box;
3445
3565
  }
3446
3566
  td.hover {
3447
- background: #e2e2e2;
3567
+ background: #272a2d;
3448
3568
  }
3449
3569
  tr {
3450
3570
  padding: 0;
3451
3571
  }
3452
3572
  tr:hover {
3453
- background: #e2e2e2;
3573
+ background: #272a2d;
3454
3574
  }
3455
3575
  tr:hover td.hover {
3456
3576
  outline: 1px solid #333;
3457
- background: #eee;
3458
- box-shadow: inset 0px 0px 2px 2px #bebebe;
3577
+ background: #1d1f21;
3578
+ box-shadow: inset 0px 0px 2px 2px #17191a;
3459
3579
  }