rails_macdown 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/CODE_OF_CONDUCT.md +49 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +55 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/lib/rails_macdown.rb +7 -0
  13. data/lib/rails_macdown/version.rb +3 -0
  14. data/rails_macdown.gemspec +33 -0
  15. data/vendor/assets/fonts/FontAwesome.otf +0 -0
  16. data/vendor/assets/fonts/editormd-logo.eot +0 -0
  17. data/vendor/assets/fonts/editormd-logo.svg +11 -0
  18. data/vendor/assets/fonts/editormd-logo.ttf +0 -0
  19. data/vendor/assets/fonts/editormd-logo.woff +0 -0
  20. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  21. data/vendor/assets/fonts/fontawesome-webfont.svg +565 -0
  22. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  23. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  24. data/vendor/assets/fonts/fontawesome-webfont.woff2 +0 -0
  25. data/vendor/assets/images/loading.gif +0 -0
  26. data/vendor/assets/images/loading@2x.gif +0 -0
  27. data/vendor/assets/images/loading@3x.gif +0 -0
  28. data/vendor/assets/images/logos/editormd-favicon-16x16.ico +0 -0
  29. data/vendor/assets/images/logos/editormd-favicon-24x24.ico +0 -0
  30. data/vendor/assets/images/logos/editormd-favicon-32x32.ico +0 -0
  31. data/vendor/assets/images/logos/editormd-favicon-48x48.ico +0 -0
  32. data/vendor/assets/images/logos/editormd-favicon-64x64.ico +0 -0
  33. data/vendor/assets/images/logos/editormd-logo-114x114.png +0 -0
  34. data/vendor/assets/images/logos/editormd-logo-120x120.png +0 -0
  35. data/vendor/assets/images/logos/editormd-logo-144x144.png +0 -0
  36. data/vendor/assets/images/logos/editormd-logo-16x16.png +0 -0
  37. data/vendor/assets/images/logos/editormd-logo-180x180.png +0 -0
  38. data/vendor/assets/images/logos/editormd-logo-240x240.png +0 -0
  39. data/vendor/assets/images/logos/editormd-logo-24x24.png +0 -0
  40. data/vendor/assets/images/logos/editormd-logo-320x320.png +0 -0
  41. data/vendor/assets/images/logos/editormd-logo-32x32.png +0 -0
  42. data/vendor/assets/images/logos/editormd-logo-48x48.png +0 -0
  43. data/vendor/assets/images/logos/editormd-logo-57x57.png +0 -0
  44. data/vendor/assets/images/logos/editormd-logo-64x64.png +0 -0
  45. data/vendor/assets/images/logos/editormd-logo-72x72.png +0 -0
  46. data/vendor/assets/images/logos/editormd-logo-96x96.png +0 -0
  47. data/vendor/assets/images/logos/vi.png +0 -0
  48. data/vendor/assets/javascripts/addons.min.js +4 -0
  49. data/vendor/assets/javascripts/code-block-dialog.js +237 -0
  50. data/vendor/assets/javascripts/codemirror.min.js +54 -0
  51. data/vendor/assets/javascripts/emoji-dialog.js +323 -0
  52. data/vendor/assets/javascripts/emoji.json +28 -0
  53. data/vendor/assets/javascripts/flowchart.min.js +5 -0
  54. data/vendor/assets/javascripts/goto-line-dialog.js +157 -0
  55. data/vendor/assets/javascripts/html-entities-dialog.js +173 -0
  56. data/vendor/assets/javascripts/html-entities.json +936 -0
  57. data/vendor/assets/javascripts/image-dialog.js +221 -0
  58. data/vendor/assets/javascripts/jquery.flowchart.min.js +2 -0
  59. data/vendor/assets/javascripts/link-dialog.js +133 -0
  60. data/vendor/assets/javascripts/marked.min.js +9 -0
  61. data/vendor/assets/javascripts/modes.min.js +10 -0
  62. data/vendor/assets/javascripts/preformatted-text-dialog.js +172 -0
  63. data/vendor/assets/javascripts/prettify.min.js +15 -0
  64. data/vendor/assets/javascripts/rails_macdown.js +4592 -0
  65. data/vendor/assets/javascripts/raphael.min.js +11 -0
  66. data/vendor/assets/javascripts/reference-link-dialog.js +153 -0
  67. data/vendor/assets/javascripts/sequence-diagram.min.js +7 -0
  68. data/vendor/assets/javascripts/table-dialog.js +218 -0
  69. data/vendor/assets/javascripts/underscore.min.js +5 -0
  70. data/vendor/assets/stylesheets/3024-day.css +40 -0
  71. data/vendor/assets/stylesheets/3024-night.css +39 -0
  72. data/vendor/assets/stylesheets/ambiance-mobile.css +5 -0
  73. data/vendor/assets/stylesheets/ambiance.css +75 -0
  74. data/vendor/assets/stylesheets/base16-dark.css +38 -0
  75. data/vendor/assets/stylesheets/base16-light.css +38 -0
  76. data/vendor/assets/stylesheets/blackboard.css +32 -0
  77. data/vendor/assets/stylesheets/cobalt.css +25 -0
  78. data/vendor/assets/stylesheets/codemirror.min.css +3 -0
  79. data/vendor/assets/stylesheets/colorforth.css +33 -0
  80. data/vendor/assets/stylesheets/dialog.css +32 -0
  81. data/vendor/assets/stylesheets/eclipse.css +23 -0
  82. data/vendor/assets/stylesheets/elegant.css +13 -0
  83. data/vendor/assets/stylesheets/erlang-dark.css +34 -0
  84. data/vendor/assets/stylesheets/foldgutter.css +20 -0
  85. data/vendor/assets/stylesheets/lesser-dark.css +47 -0
  86. data/vendor/assets/stylesheets/matchesonscrollbar.css +8 -0
  87. data/vendor/assets/stylesheets/mbo.css +37 -0
  88. data/vendor/assets/stylesheets/mdn-like.css +46 -0
  89. data/vendor/assets/stylesheets/midnight.css +47 -0
  90. data/vendor/assets/stylesheets/monokai.css +33 -0
  91. data/vendor/assets/stylesheets/neat.css +12 -0
  92. data/vendor/assets/stylesheets/neo.css +43 -0
  93. data/vendor/assets/stylesheets/night.css +28 -0
  94. data/vendor/assets/stylesheets/paraiso-dark.css +38 -0
  95. data/vendor/assets/stylesheets/paraiso-light.css +38 -0
  96. data/vendor/assets/stylesheets/pastel-on-dark.css +53 -0
  97. data/vendor/assets/stylesheets/rails_macdown.css +4444 -0
  98. data/vendor/assets/stylesheets/rubyblue.css +25 -0
  99. data/vendor/assets/stylesheets/solarized.css +165 -0
  100. data/vendor/assets/stylesheets/the-matrix.css +30 -0
  101. data/vendor/assets/stylesheets/tomorrow-night-bright.css +35 -0
  102. data/vendor/assets/stylesheets/tomorrow-night-eighties.css +38 -0
  103. data/vendor/assets/stylesheets/twilight.css +32 -0
  104. data/vendor/assets/stylesheets/vibrant-ink.css +34 -0
  105. data/vendor/assets/stylesheets/xq-dark.css +53 -0
  106. data/vendor/assets/stylesheets/xq-light.css +43 -0
  107. data/vendor/assets/stylesheets/zenburn.css +37 -0
  108. metadata +192 -0
@@ -0,0 +1,37 @@
1
+ /****************************************************************/
2
+ /* Based on mbonaci's Brackets mbo theme */
3
+ /* https://github.com/mbonaci/global/blob/master/Mbo.tmTheme */
4
+ /* Create your own: http://tmtheme-editor.herokuapp.com */
5
+ /****************************************************************/
6
+
7
+ .cm-s-mbo.CodeMirror {background: #2c2c2c; color: #ffffec;}
8
+ .cm-s-mbo div.CodeMirror-selected {background: #716C62 !important;}
9
+ .cm-s-mbo.CodeMirror ::selection { background: rgba(113, 108, 98, .99); }
10
+ .cm-s-mbo.CodeMirror ::-moz-selection { background: rgba(113, 108, 98, .99); }
11
+ .cm-s-mbo .CodeMirror-gutters {background: #4e4e4e; border-right: 0px;}
12
+ .cm-s-mbo .CodeMirror-guttermarker { color: white; }
13
+ .cm-s-mbo .CodeMirror-guttermarker-subtle { color: grey; }
14
+ .cm-s-mbo .CodeMirror-linenumber {color: #dadada;}
15
+ .cm-s-mbo .CodeMirror-cursor {border-left: 1px solid #ffffec !important;}
16
+
17
+ .cm-s-mbo span.cm-comment {color: #95958a;}
18
+ .cm-s-mbo span.cm-atom {color: #00a8c6;}
19
+ .cm-s-mbo span.cm-number {color: #00a8c6;}
20
+
21
+ .cm-s-mbo span.cm-property, .cm-s-mbo span.cm-attribute {color: #9ddfe9;}
22
+ .cm-s-mbo span.cm-keyword {color: #ffb928;}
23
+ .cm-s-mbo span.cm-string {color: #ffcf6c;}
24
+ .cm-s-mbo span.cm-string.cm-property {color: #ffffec;}
25
+
26
+ .cm-s-mbo span.cm-variable {color: #ffffec;}
27
+ .cm-s-mbo span.cm-variable-2 {color: #00a8c6;}
28
+ .cm-s-mbo span.cm-def {color: #ffffec;}
29
+ .cm-s-mbo span.cm-bracket {color: #fffffc; font-weight: bold;}
30
+ .cm-s-mbo span.cm-tag {color: #9ddfe9;}
31
+ .cm-s-mbo span.cm-link {color: #f54b07;}
32
+ .cm-s-mbo span.cm-error {border-bottom: #636363; color: #ffffec;}
33
+ .cm-s-mbo span.cm-qualifier {color: #ffffec;}
34
+
35
+ .cm-s-mbo .CodeMirror-activeline-background {background: #494b41 !important;}
36
+ .cm-s-mbo .CodeMirror-matchingbracket {color: #222 !important;}
37
+ .cm-s-mbo .CodeMirror-matchingtag {background: rgba(255, 255, 255, .37);}
@@ -0,0 +1,46 @@
1
+ /*
2
+ MDN-LIKE Theme - Mozilla
3
+ Ported to CodeMirror by Peter Kroon <plakroon@gmail.com>
4
+ Report bugs/issues here: https://github.com/codemirror/CodeMirror/issues
5
+ GitHub: @peterkroon
6
+
7
+ The mdn-like theme is inspired on the displayed code examples at: https://developer.mozilla.org/en-US/docs/Web/CSS/animation
8
+
9
+ */
10
+ .cm-s-mdn-like.CodeMirror { color: #999; background-color: #fff; }
11
+ .cm-s-mdn-like .CodeMirror-selected { background: #cfc !important; }
12
+ .cm-s-mdn-like.CodeMirror ::selection { background: #cfc; }
13
+ .cm-s-mdn-like.CodeMirror ::-moz-selection { background: #cfc; }
14
+
15
+ .cm-s-mdn-like .CodeMirror-gutters { background: #f8f8f8; border-left: 6px solid rgba(0,83,159,0.65); color: #333; }
16
+ .cm-s-mdn-like .CodeMirror-linenumber { color: #aaa; margin-left: 3px; }
17
+ div.cm-s-mdn-like .CodeMirror-cursor { border-left: 2px solid #222; }
18
+
19
+ .cm-s-mdn-like .cm-keyword { color: #6262FF; }
20
+ .cm-s-mdn-like .cm-atom { color: #F90; }
21
+ .cm-s-mdn-like .cm-number { color: #ca7841; }
22
+ .cm-s-mdn-like .cm-def { color: #8DA6CE; }
23
+ .cm-s-mdn-like span.cm-variable-2, .cm-s-mdn-like span.cm-tag { color: #690; }
24
+ .cm-s-mdn-like span.cm-variable-3, .cm-s-mdn-like span.cm-def { color: #07a; }
25
+
26
+ .cm-s-mdn-like .cm-variable { color: #07a; }
27
+ .cm-s-mdn-like .cm-property { color: #905; }
28
+ .cm-s-mdn-like .cm-qualifier { color: #690; }
29
+
30
+ .cm-s-mdn-like .cm-operator { color: #cda869; }
31
+ .cm-s-mdn-like .cm-comment { color:#777; font-weight:normal; }
32
+ .cm-s-mdn-like .cm-string { color:#07a; font-style:italic; }
33
+ .cm-s-mdn-like .cm-string-2 { color:#bd6b18; } /*?*/
34
+ .cm-s-mdn-like .cm-meta { color: #000; } /*?*/
35
+ .cm-s-mdn-like .cm-builtin { color: #9B7536; } /*?*/
36
+ .cm-s-mdn-like .cm-tag { color: #997643; }
37
+ .cm-s-mdn-like .cm-attribute { color: #d6bb6d; } /*?*/
38
+ .cm-s-mdn-like .cm-header { color: #FF6400; }
39
+ .cm-s-mdn-like .cm-hr { color: #AEAEAE; }
40
+ .cm-s-mdn-like .cm-link { color:#ad9361; font-style:italic; text-decoration:none; }
41
+ .cm-s-mdn-like .cm-error { border-bottom: 1px solid red; }
42
+
43
+ div.cm-s-mdn-like .CodeMirror-activeline-background {background: #efefff;}
44
+ div.cm-s-mdn-like span.CodeMirror-matchingbracket {outline:1px solid grey; color: inherit;}
45
+
46
+ .cm-s-mdn-like.CodeMirror { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFcAAAAyCAYAAAAp8UeFAAAHvklEQVR42s2b63bcNgyEQZCSHCdt2vd/0tWF7I+Q6XgMXiTtuvU5Pl57ZQKkKHzEAOtF5KeIJBGJ8uvL599FRFREZhFx8DeXv8trn68RuGaC8TRfo3SNp9dlDDHedyLyTUTeRWStXKPZrjtpZxaRw5hPqozRs1N8/enzIiQRWcCgy4MUA0f+XWliDhyL8Lfyvx7ei/Ae3iQFHyw7U/59pQVIMEEPEz0G7XiwdRjzSfC3UTtz9vchIntxvry5iMgfIhJoEflOz2CQr3F5h/HfeFe+GTdLaKcu9L8LTeQb/R/7GgbsfKedyNdoHsN31uRPWrfZ5wsj/NzzRQHuToIdU3ahwnsKPxXCjJITuOsi7XLc7SG/v5GdALs7wf8JjTFiB5+QvTEfRyGOfX3Lrx8wxyQi3sNq46O7QahQiCsRFgqddjBouVEHOKDgXAQHD9gJCr5sMKkEdjwsarG/ww3BMHBU7OBjXnzdyY7SfCxf5/z6ATccrwlKuwC/jhznnPF4CgVzhhVf4xp2EixcBActO75iZ8/fM9zAs2OMzKdslgXWJ9XG8PQoOAMA5fGcsvORgv0doBXyHrCwfLJAOwo71QLNkb8n2Pl6EWiR7OCibtkPaz4Kc/0NNAze2gju3zOwekALDaCFPI5vjPFmgGY5AZqyGEvH1x7QfIb8YtxMnA/b+QQ0aQDAwc6JMFg8CbQZ4qoYEEHbRwNojuK3EHwd7VALSgq+MNDKzfT58T8qdpADrgW0GmgcAS1lhzztJmkAzcPNOQbsWEALBDSlMKUG0Eq4CLAQWvEVQ9WU57gZJwZtgPO3r9oBTQ9WO8TjqXINx8R0EYpiZEUWOF3FxkbJkgU9B2f41YBrIj5ZfsQa0M5kTgiAAqM3ShXLgu8XMqcrQBvJ0CL5pnTsfMB13oB8athpAq2XOQmcGmoACCLydx7nToa23ATaSIY2ichfOdPTGxlasXMLaL0MLZAOwAKIM+y8CmicobGdCcbbK9DzN+yYGVoNNI5iUKTMyYOjPse4A8SM1MmcXgU0toOq1yO/v8FOxlASyc7TgeYaAMBJHcY1CcCwGI/TK4AmDbDyKYBBtFUkRwto8gygiQEaByFgJ00BH2M8JWwQS1nafDXQCidWyOI8AcjDCSjCLk8ngObuAm3JAHAdubAmOaK06V8MNEsKPJOhobSprwQa6gD7DclRQdqcwL4zxqgBrQcabUiBLclRDKAlWp+etPkBaNMA0AKlrHwTdEByZAA4GM+SNluSY6wAzcMNewxmgig5Ks0nkrSpBvSaQHMdKTBAnLojOdYyGpQ254602ZILPdTD1hdlggdIm74jbTp8vDwF5ZYUeLWGJpWsh6XNyXgcYwVoJQTEhhTYkxzZjiU5npU2TaB979TQehlaAVq4kaGpiPwwwLkYUuBbQwocyQTv1tA0+1UFWoJF3iv1oq+qoSk8EQdJmwHkziIF7oOZk14EGitibAdjLYYK78H5vZOhtWpoI0ATGHs0Q8OMb4Ey+2bU2UYztCtA0wFAs7TplGLRVQCcqaFdGSPCeTI1QNIC52iWNzof6Uib7xjEp07mNNoUYmVosVItHrHzRlLgBn9LFyRHaQCtVUMbtTNhoXWiTOO9k/V8BdAc1Oq0ArSQs6/5SU0hckNy9NnXqQY0PGYo5dWJ7nINaN6o958FWin27aBaWRka1r5myvLOAm0j30eBJqCxHLReVclxhxOEN2JfDWjxBtAC7MIH1fVaGdoOp4qJYDgKtKPSFNID2gSnGldrCqkFZ+5UeQXQBIRrSwocbdZYQT/2LwRahBPBXoHrB8nxaGROST62DKUbQOMMzZIC9abkuELfQzQALWTnDNAm8KHWFOJgJ5+SHIvTPcmx1xQyZRhNL5Qci689aXMEaN/uNIWkEwDAvFpOZmgsBaaGnbs1NPa1Jm32gBZAIh1pCtG7TSH4aE0y1uVY4uqoFPisGlpP2rSA5qTecWn5agK6BzSpgAyD+wFaqhnYoSZ1Vwr8CmlTQbrcO3ZaX0NAEyMbYaAlyquFoLKK3SPby9CeVUPThrSJmkCAE0CrKUQadi4DrdSlWhmah0YL9z9vClH59YGbHx1J8VZTyAjQepJjmXwAKTDQI3omc3p1U4gDUf6RfcdYfrUp5ClAi2J3Ba6UOXGo+K+bQrjjssitG2SJzshaLwMtXgRagUNpYYoVkMSBLM+9GGiJZMvduG6DRZ4qc04DMPtQQxOjEtACmhO7K1AbNbQDEggZyJwscFpAGwENhoBeUwh3bWolhe8BTYVKxQEWrSUn/uhcM5KhvUu/+eQu0Lzhi+VrK0PrZZNDQKs9cpYUuFYgMVpD4/NxenJTiMCNqdUEUf1qZWjppLT5qSkkUZbCwkbZMSuVnu80hfSkzRbQeqCZSAh6huR4VtoM2gHAlLf72smuWgE+VV7XpE25Ab2WFDgyhnSuKbs4GuGzCjR+tIoUuMFg3kgcWKLTwRqanJQ2W00hAsenfaApRC42hbCvK1SlE0HtE9BGgneJO+ELamitD1YjjOYnNYVcraGhtKkW0EqVVeDx733I2NH581k1NNxNLG0i0IJ8/NjVaOZ0tYZ2Vtr0Xv7tPV3hkWp9EFkgS/J0vosngTaSoaG06WHi+xObQkaAdlbanP8B2+2l0f90LmUAAAAASUVORK5CYII=); }
@@ -0,0 +1,47 @@
1
+ /* Based on the theme at http://bonsaiden.github.com/JavaScript-Garden */
2
+
3
+ /*<!--match-->*/
4
+ .cm-s-midnight span.CodeMirror-matchhighlight { background: #494949; }
5
+ .cm-s-midnight.CodeMirror-focused span.CodeMirror-matchhighlight { background: #314D67 !important; }
6
+
7
+ /*<!--activeline-->*/
8
+ .cm-s-midnight .CodeMirror-activeline-background {background: #253540 !important;}
9
+
10
+ .cm-s-midnight.CodeMirror {
11
+ background: #0F192A;
12
+ color: #D1EDFF;
13
+ }
14
+
15
+ .cm-s-midnight.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
16
+
17
+ .cm-s-midnight div.CodeMirror-selected {background: #314D67 !important;}
18
+ .cm-s-midnight.CodeMirror ::selection { background: rgba(49, 77, 103, .99); }
19
+ .cm-s-midnight.CodeMirror ::-moz-selection { background: rgba(49, 77, 103, .99); }
20
+ .cm-s-midnight .CodeMirror-gutters {background: #0F192A; border-right: 1px solid;}
21
+ .cm-s-midnight .CodeMirror-guttermarker { color: white; }
22
+ .cm-s-midnight .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
23
+ .cm-s-midnight .CodeMirror-linenumber {color: #D0D0D0;}
24
+ .cm-s-midnight .CodeMirror-cursor {
25
+ border-left: 1px solid #F8F8F0 !important;
26
+ }
27
+
28
+ .cm-s-midnight span.cm-comment {color: #428BDD;}
29
+ .cm-s-midnight span.cm-atom {color: #AE81FF;}
30
+ .cm-s-midnight span.cm-number {color: #D1EDFF;}
31
+
32
+ .cm-s-midnight span.cm-property, .cm-s-midnight span.cm-attribute {color: #A6E22E;}
33
+ .cm-s-midnight span.cm-keyword {color: #E83737;}
34
+ .cm-s-midnight span.cm-string {color: #1DC116;}
35
+
36
+ .cm-s-midnight span.cm-variable {color: #FFAA3E;}
37
+ .cm-s-midnight span.cm-variable-2 {color: #FFAA3E;}
38
+ .cm-s-midnight span.cm-def {color: #4DD;}
39
+ .cm-s-midnight span.cm-bracket {color: #D1EDFF;}
40
+ .cm-s-midnight span.cm-tag {color: #449;}
41
+ .cm-s-midnight span.cm-link {color: #AE81FF;}
42
+ .cm-s-midnight span.cm-error {background: #F92672; color: #F8F8F0;}
43
+
44
+ .cm-s-midnight .CodeMirror-matchingbracket {
45
+ text-decoration: underline;
46
+ color: white !important;
47
+ }
@@ -0,0 +1,33 @@
1
+ /* Based on Sublime Text's Monokai theme */
2
+
3
+ .cm-s-monokai.CodeMirror {background: #272822; color: #f8f8f2;}
4
+ .cm-s-monokai div.CodeMirror-selected {background: #49483E !important;}
5
+ .cm-s-monokai.CodeMirror ::selection { background: rgba(73, 72, 62, .99); }
6
+ .cm-s-monokai.CodeMirror ::-moz-selection { background: rgba(73, 72, 62, .99); }
7
+ .cm-s-monokai .CodeMirror-gutters {background: #272822; border-right: 0px;}
8
+ .cm-s-monokai .CodeMirror-guttermarker { color: white; }
9
+ .cm-s-monokai .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
10
+ .cm-s-monokai .CodeMirror-linenumber {color: #d0d0d0;}
11
+ .cm-s-monokai .CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;}
12
+
13
+ .cm-s-monokai span.cm-comment {color: #75715e;}
14
+ .cm-s-monokai span.cm-atom {color: #ae81ff;}
15
+ .cm-s-monokai span.cm-number {color: #ae81ff;}
16
+
17
+ .cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute {color: #a6e22e;}
18
+ .cm-s-monokai span.cm-keyword {color: #f92672;}
19
+ .cm-s-monokai span.cm-string {color: #e6db74;}
20
+
21
+ .cm-s-monokai span.cm-variable {color: #a6e22e;}
22
+ .cm-s-monokai span.cm-variable-2 {color: #9effff;}
23
+ .cm-s-monokai span.cm-def {color: #fd971f;}
24
+ .cm-s-monokai span.cm-bracket {color: #f8f8f2;}
25
+ .cm-s-monokai span.cm-tag {color: #f92672;}
26
+ .cm-s-monokai span.cm-link {color: #ae81ff;}
27
+ .cm-s-monokai span.cm-error {background: #f92672; color: #f8f8f0;}
28
+
29
+ .cm-s-monokai .CodeMirror-activeline-background {background: #373831 !important;}
30
+ .cm-s-monokai .CodeMirror-matchingbracket {
31
+ text-decoration: underline;
32
+ color: white !important;
33
+ }
@@ -0,0 +1,12 @@
1
+ .cm-s-neat span.cm-comment { color: #a86; }
2
+ .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; }
3
+ .cm-s-neat span.cm-string { color: #a22; }
4
+ .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; }
5
+ .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; }
6
+ .cm-s-neat span.cm-variable { color: black; }
7
+ .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; }
8
+ .cm-s-neat span.cm-meta {color: #555;}
9
+ .cm-s-neat span.cm-link { color: #3a3; }
10
+
11
+ .cm-s-neat .CodeMirror-activeline-background {background: #e8f2ff !important;}
12
+ .cm-s-neat .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;}
@@ -0,0 +1,43 @@
1
+ /* neo theme for codemirror */
2
+
3
+ /* Color scheme */
4
+
5
+ .cm-s-neo.CodeMirror {
6
+ background-color:#ffffff;
7
+ color:#2e383c;
8
+ line-height:1.4375;
9
+ }
10
+ .cm-s-neo .cm-comment {color:#75787b}
11
+ .cm-s-neo .cm-keyword, .cm-s-neo .cm-property {color:#1d75b3}
12
+ .cm-s-neo .cm-atom,.cm-s-neo .cm-number {color:#75438a}
13
+ .cm-s-neo .cm-node,.cm-s-neo .cm-tag {color:#9c3328}
14
+ .cm-s-neo .cm-string {color:#b35e14}
15
+ .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier {color:#047d65}
16
+
17
+
18
+ /* Editor styling */
19
+
20
+ .cm-s-neo pre {
21
+ padding:0;
22
+ }
23
+
24
+ .cm-s-neo .CodeMirror-gutters {
25
+ border:none;
26
+ border-right:10px solid transparent;
27
+ background-color:transparent;
28
+ }
29
+
30
+ .cm-s-neo .CodeMirror-linenumber {
31
+ padding:0;
32
+ color:#e0e2e5;
33
+ }
34
+
35
+ .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; }
36
+ .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; }
37
+
38
+ .cm-s-neo div.CodeMirror-cursor {
39
+ width: auto;
40
+ border: 0;
41
+ background: rgba(155,157,162,0.37);
42
+ z-index: 1;
43
+ }
@@ -0,0 +1,28 @@
1
+ /* Loosely based on the Midnight Textmate theme */
2
+
3
+ .cm-s-night.CodeMirror { background: #0a001f; color: #f8f8f8; }
4
+ .cm-s-night div.CodeMirror-selected { background: #447 !important; }
5
+ .cm-s-night.CodeMirror ::selection { background: rgba(68, 68, 119, .99); }
6
+ .cm-s-night.CodeMirror ::-moz-selection { background: rgba(68, 68, 119, .99); }
7
+ .cm-s-night .CodeMirror-gutters { background: #0a001f; border-right: 1px solid #aaa; }
8
+ .cm-s-night .CodeMirror-guttermarker { color: white; }
9
+ .cm-s-night .CodeMirror-guttermarker-subtle { color: #bbb; }
10
+ .cm-s-night .CodeMirror-linenumber { color: #f8f8f8; }
11
+ .cm-s-night .CodeMirror-cursor { border-left: 1px solid white !important; }
12
+
13
+ .cm-s-night span.cm-comment { color: #6900a1; }
14
+ .cm-s-night span.cm-atom { color: #845dc4; }
15
+ .cm-s-night span.cm-number, .cm-s-night span.cm-attribute { color: #ffd500; }
16
+ .cm-s-night span.cm-keyword { color: #599eff; }
17
+ .cm-s-night span.cm-string { color: #37f14a; }
18
+ .cm-s-night span.cm-meta { color: #7678e2; }
19
+ .cm-s-night span.cm-variable-2, .cm-s-night span.cm-tag { color: #99b2ff; }
20
+ .cm-s-night span.cm-variable-3, .cm-s-night span.cm-def { color: white; }
21
+ .cm-s-night span.cm-bracket { color: #8da6ce; }
22
+ .cm-s-night span.cm-comment { color: #6900a1; }
23
+ .cm-s-night span.cm-builtin, .cm-s-night span.cm-special { color: #ff9e59; }
24
+ .cm-s-night span.cm-link { color: #845dc4; }
25
+ .cm-s-night span.cm-error { color: #9d1e15; }
26
+
27
+ .cm-s-night .CodeMirror-activeline-background {background: #1C005A !important;}
28
+ .cm-s-night .CodeMirror-matchingbracket {outline:1px solid grey; color:white !important;}
@@ -0,0 +1,38 @@
1
+ /*
2
+
3
+ Name: Paraíso (Dark)
4
+ Author: Jan T. Sott
5
+
6
+ Color scheme by Jan T. Sott (https://github.com/idleberg/Paraiso-CodeMirror)
7
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
8
+
9
+ */
10
+
11
+ .cm-s-paraiso-dark.CodeMirror {background: #2f1e2e; color: #b9b6b0;}
12
+ .cm-s-paraiso-dark div.CodeMirror-selected {background: #41323f !important;}
13
+ .cm-s-paraiso-dark.CodeMirror ::selection { background: rgba(65, 50, 63, .99); }
14
+ .cm-s-paraiso-dark.CodeMirror ::-moz-selection { background: rgba(65, 50, 63, .99); }
15
+ .cm-s-paraiso-dark .CodeMirror-gutters {background: #2f1e2e; border-right: 0px;}
16
+ .cm-s-paraiso-dark .CodeMirror-guttermarker { color: #ef6155; }
17
+ .cm-s-paraiso-dark .CodeMirror-guttermarker-subtle { color: #776e71; }
18
+ .cm-s-paraiso-dark .CodeMirror-linenumber {color: #776e71;}
19
+ .cm-s-paraiso-dark .CodeMirror-cursor {border-left: 1px solid #8d8687 !important;}
20
+
21
+ .cm-s-paraiso-dark span.cm-comment {color: #e96ba8;}
22
+ .cm-s-paraiso-dark span.cm-atom {color: #815ba4;}
23
+ .cm-s-paraiso-dark span.cm-number {color: #815ba4;}
24
+
25
+ .cm-s-paraiso-dark span.cm-property, .cm-s-paraiso-dark span.cm-attribute {color: #48b685;}
26
+ .cm-s-paraiso-dark span.cm-keyword {color: #ef6155;}
27
+ .cm-s-paraiso-dark span.cm-string {color: #fec418;}
28
+
29
+ .cm-s-paraiso-dark span.cm-variable {color: #48b685;}
30
+ .cm-s-paraiso-dark span.cm-variable-2 {color: #06b6ef;}
31
+ .cm-s-paraiso-dark span.cm-def {color: #f99b15;}
32
+ .cm-s-paraiso-dark span.cm-bracket {color: #b9b6b0;}
33
+ .cm-s-paraiso-dark span.cm-tag {color: #ef6155;}
34
+ .cm-s-paraiso-dark span.cm-link {color: #815ba4;}
35
+ .cm-s-paraiso-dark span.cm-error {background: #ef6155; color: #8d8687;}
36
+
37
+ .cm-s-paraiso-dark .CodeMirror-activeline-background {background: #4D344A !important;}
38
+ .cm-s-paraiso-dark .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
@@ -0,0 +1,38 @@
1
+ /*
2
+
3
+ Name: Paraíso (Light)
4
+ Author: Jan T. Sott
5
+
6
+ Color scheme by Jan T. Sott (https://github.com/idleberg/Paraiso-CodeMirror)
7
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
8
+
9
+ */
10
+
11
+ .cm-s-paraiso-light.CodeMirror {background: #e7e9db; color: #41323f;}
12
+ .cm-s-paraiso-light div.CodeMirror-selected {background: #b9b6b0 !important;}
13
+ .cm-s-paraiso-light.CodeMirror ::selection { background: #b9b6b0; }
14
+ .cm-s-paraiso-light.CodeMirror ::-moz-selection { background: #b9b6b0; }
15
+ .cm-s-paraiso-light .CodeMirror-gutters {background: #e7e9db; border-right: 0px;}
16
+ .cm-s-paraiso-light .CodeMirror-guttermarker { color: black; }
17
+ .cm-s-paraiso-light .CodeMirror-guttermarker-subtle { color: #8d8687; }
18
+ .cm-s-paraiso-light .CodeMirror-linenumber {color: #8d8687;}
19
+ .cm-s-paraiso-light .CodeMirror-cursor {border-left: 1px solid #776e71 !important;}
20
+
21
+ .cm-s-paraiso-light span.cm-comment {color: #e96ba8;}
22
+ .cm-s-paraiso-light span.cm-atom {color: #815ba4;}
23
+ .cm-s-paraiso-light span.cm-number {color: #815ba4;}
24
+
25
+ .cm-s-paraiso-light span.cm-property, .cm-s-paraiso-light span.cm-attribute {color: #48b685;}
26
+ .cm-s-paraiso-light span.cm-keyword {color: #ef6155;}
27
+ .cm-s-paraiso-light span.cm-string {color: #fec418;}
28
+
29
+ .cm-s-paraiso-light span.cm-variable {color: #48b685;}
30
+ .cm-s-paraiso-light span.cm-variable-2 {color: #06b6ef;}
31
+ .cm-s-paraiso-light span.cm-def {color: #f99b15;}
32
+ .cm-s-paraiso-light span.cm-bracket {color: #41323f;}
33
+ .cm-s-paraiso-light span.cm-tag {color: #ef6155;}
34
+ .cm-s-paraiso-light span.cm-link {color: #815ba4;}
35
+ .cm-s-paraiso-light span.cm-error {background: #ef6155; color: #776e71;}
36
+
37
+ .cm-s-paraiso-light .CodeMirror-activeline-background {background: #CFD1C4 !important;}
38
+ .cm-s-paraiso-light .CodeMirror-matchingbracket { text-decoration: underline; color: white !important;}
@@ -0,0 +1,53 @@
1
+ /**
2
+ * Pastel On Dark theme ported from ACE editor
3
+ * @license MIT
4
+ * @copyright AtomicPages LLC 2014
5
+ * @author Dennis Thompson, AtomicPages LLC
6
+ * @version 1.1
7
+ * @source https://github.com/atomicpages/codemirror-pastel-on-dark-theme
8
+ */
9
+
10
+ .cm-s-pastel-on-dark.CodeMirror {
11
+ background: #2c2827;
12
+ color: #8F938F;
13
+ line-height: 1.5;
14
+ font-size: 14px;
15
+ }
16
+ .cm-s-pastel-on-dark div.CodeMirror-selected { background: rgba(221,240,255,0.2) !important; }
17
+ .cm-s-pastel-on-dark.CodeMirror ::selection { background: rgba(221,240,255,0.2); }
18
+ .cm-s-pastel-on-dark.CodeMirror ::-moz-selection { background: rgba(221,240,255,0.2); }
19
+
20
+ .cm-s-pastel-on-dark .CodeMirror-gutters {
21
+ background: #34302f;
22
+ border-right: 0px;
23
+ padding: 0 3px;
24
+ }
25
+ .cm-s-pastel-on-dark .CodeMirror-guttermarker { color: white; }
26
+ .cm-s-pastel-on-dark .CodeMirror-guttermarker-subtle { color: #8F938F; }
27
+ .cm-s-pastel-on-dark .CodeMirror-linenumber { color: #8F938F; }
28
+ .cm-s-pastel-on-dark .CodeMirror-cursor { border-left: 1px solid #A7A7A7 !important; }
29
+ .cm-s-pastel-on-dark span.cm-comment { color: #A6C6FF; }
30
+ .cm-s-pastel-on-dark span.cm-atom { color: #DE8E30; }
31
+ .cm-s-pastel-on-dark span.cm-number { color: #CCCCCC; }
32
+ .cm-s-pastel-on-dark span.cm-property { color: #8F938F; }
33
+ .cm-s-pastel-on-dark span.cm-attribute { color: #a6e22e; }
34
+ .cm-s-pastel-on-dark span.cm-keyword { color: #AEB2F8; }
35
+ .cm-s-pastel-on-dark span.cm-string { color: #66A968; }
36
+ .cm-s-pastel-on-dark span.cm-variable { color: #AEB2F8; }
37
+ .cm-s-pastel-on-dark span.cm-variable-2 { color: #BEBF55; }
38
+ .cm-s-pastel-on-dark span.cm-variable-3 { color: #DE8E30; }
39
+ .cm-s-pastel-on-dark span.cm-def { color: #757aD8; }
40
+ .cm-s-pastel-on-dark span.cm-bracket { color: #f8f8f2; }
41
+ .cm-s-pastel-on-dark span.cm-tag { color: #C1C144; }
42
+ .cm-s-pastel-on-dark span.cm-link { color: #ae81ff; }
43
+ .cm-s-pastel-on-dark span.cm-qualifier,.cm-s-pastel-on-dark span.cm-builtin { color: #C1C144; }
44
+ .cm-s-pastel-on-dark span.cm-error {
45
+ background: #757aD8;
46
+ color: #f8f8f0;
47
+ }
48
+ .cm-s-pastel-on-dark .CodeMirror-activeline-background { background: rgba(255, 255, 255, 0.031) !important; }
49
+ .cm-s-pastel-on-dark .CodeMirror-matchingbracket {
50
+ border: 1px solid rgba(255,255,255,0.25);
51
+ color: #8F938F !important;
52
+ margin: -1px -1px 0 -1px;
53
+ }
@@ -0,0 +1,4444 @@
1
+ /*
2
+ * = require dialog
3
+ * = require matchesonscrollbar
4
+ *
5
+ */
6
+
7
+ @charset "UTF-8";
8
+ /*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
9
+ .editormd {
10
+ width: 90%;
11
+ height: 640px;
12
+ margin: 0 auto;
13
+ text-align: left;
14
+ overflow: hidden;
15
+ position: relative;
16
+ margin-bottom: 15px;
17
+ border: 1px solid #ddd;
18
+ font-family: "Meiryo UI", "Microsoft YaHei", "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, "Monaco", monospace, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
19
+ }
20
+ .editormd *, .editormd *:before, .editormd *:after {
21
+ -webkit-box-sizing: border-box;
22
+ -moz-box-sizing: border-box;
23
+ box-sizing: border-box;
24
+ }
25
+ .editormd a {
26
+ text-decoration: none;
27
+ }
28
+ .editormd img {
29
+ border: none;
30
+ vertical-align: middle;
31
+ }
32
+ .editormd > textarea,
33
+ .editormd .editormd-html-textarea,
34
+ .editormd .editormd-markdown-textarea {
35
+ width: 0;
36
+ height: 0;
37
+ outline: 0;
38
+ resize: none;
39
+ }
40
+ .editormd .editormd-html-textarea,
41
+ .editormd .editormd-markdown-textarea {
42
+ display: none;
43
+ }
44
+ .editormd input[type="text"],
45
+ .editormd input[type="button"],
46
+ .editormd input[type="submit"],
47
+ .editormd select, .editormd textarea, .editormd button {
48
+ -webkit-appearance: none;
49
+ -moz-appearance: none;
50
+ -ms-appearance: none;
51
+ appearance: none;
52
+ }
53
+ .editormd ::-webkit-scrollbar {
54
+ height: 10px;
55
+ width: 7px;
56
+ background: rgba(0, 0, 0, 0.1);
57
+ }
58
+ .editormd ::-webkit-scrollbar:hover {
59
+ background: rgba(0, 0, 0, 0.2);
60
+ }
61
+ .editormd ::-webkit-scrollbar-thumb {
62
+ background: rgba(0, 0, 0, 0.3);
63
+ -webkit-border-radius: 6px;
64
+ -moz-border-radius: 6px;
65
+ -ms-border-radius: 6px;
66
+ -o-border-radius: 6px;
67
+ border-radius: 6px;
68
+ }
69
+ .editormd ::-webkit-scrollbar-thumb:hover {
70
+ -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
71
+ /* Webkit browsers */
72
+ -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
73
+ /* Firefox */
74
+ -ms-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
75
+ /* IE9 */
76
+ -o-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
77
+ /* Opera(Old) */
78
+ box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.25);
79
+ /* IE9+, News */
80
+ background-color: rgba(0, 0, 0, 0.4);
81
+ }
82
+
83
+ .editormd-user-unselect {
84
+ -webkit-user-select: none;
85
+ -moz-user-select: none;
86
+ -ms-user-select: none;
87
+ -o-user-select: none;
88
+ user-select: none;
89
+ }
90
+
91
+ .editormd-toolbar {
92
+ width: 100%;
93
+ min-height: 37px;
94
+ background: #fff;
95
+ display: none;
96
+ position: absolute;
97
+ top: 0;
98
+ left: 0;
99
+ z-index: 10;
100
+ border-bottom: 1px solid #ddd;
101
+ }
102
+
103
+ .editormd-toolbar-container {
104
+ padding: 0 8px;
105
+ min-height: 35px;
106
+ -webkit-user-select: none;
107
+ -moz-user-select: none;
108
+ -ms-user-select: none;
109
+ -o-user-select: none;
110
+ user-select: none;
111
+ }
112
+
113
+ .editormd-menu {
114
+ margin: 0;
115
+ padding: 0;
116
+ list-style: none;
117
+ }
118
+ .editormd-menu > li {
119
+ margin: 0;
120
+ padding: 5px 1px;
121
+ display: inline-block;
122
+ position: relative;
123
+ }
124
+ .editormd-menu > li.divider {
125
+ display: inline-block;
126
+ text-indent: -9999px;
127
+ margin: 0 5px;
128
+ height: 65%;
129
+ border-right: 1px solid #ddd;
130
+ }
131
+ .editormd-menu > li > a {
132
+ outline: 0;
133
+ color: #666;
134
+ display: inline-block;
135
+ min-width: 24px;
136
+ font-size: 16px;
137
+ text-decoration: none;
138
+ text-align: center;
139
+ -webkit-border-radius: 2px;
140
+ -moz-border-radius: 2px;
141
+ -ms-border-radius: 2px;
142
+ -o-border-radius: 2px;
143
+ border-radius: 2px;
144
+ border: 1px solid #fff;
145
+ -webkit-transition: all 300ms ease-out;
146
+ /* Safari, Chrome */
147
+ -moz-transition: all 300ms ease-out;
148
+ /* Firefox 4.0~16.0 */
149
+ transition: all 300ms ease-out;
150
+ /* IE >9, FF >15, Opera >12.0 */
151
+ }
152
+ .editormd-menu > li > a:hover, .editormd-menu > li > a.active {
153
+ border: 1px solid #ddd;
154
+ background: #eee;
155
+ }
156
+ .editormd-menu > li > a > .fa {
157
+ text-align: center;
158
+ display: block;
159
+ padding: 5px;
160
+ }
161
+ .editormd-menu > li > a > .editormd-bold {
162
+ padding: 5px 2px;
163
+ display: inline-block;
164
+ font-weight: bold;
165
+ }
166
+ .editormd-menu > li:hover .editormd-dropdown-menu {
167
+ display: block;
168
+ }
169
+ .editormd-menu > li + li > a {
170
+ margin-left: 3px;
171
+ }
172
+
173
+ .editormd-dropdown-menu {
174
+ display: none;
175
+ background: #fff;
176
+ border: 1px solid #ddd;
177
+ width: 148px;
178
+ list-style: none;
179
+ position: absolute;
180
+ top: 33px;
181
+ left: 0;
182
+ z-index: 100;
183
+ -webkit-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
184
+ /* Webkit browsers */
185
+ -moz-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
186
+ /* Firefox */
187
+ -ms-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
188
+ /* IE9 */
189
+ -o-box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
190
+ /* Opera(Old) */
191
+ box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
192
+ /* IE9+, News */
193
+ }
194
+ .editormd-dropdown-menu:before, .editormd-dropdown-menu:after {
195
+ width: 0;
196
+ height: 0;
197
+ display: block;
198
+ content: "";
199
+ position: absolute;
200
+ top: -11px;
201
+ left: 8px;
202
+ border: 5px solid transparent;
203
+ }
204
+ .editormd-dropdown-menu:before {
205
+ border-bottom-color: #ccc;
206
+ }
207
+ .editormd-dropdown-menu:after {
208
+ border-bottom-color: #ffffff;
209
+ top: -10px;
210
+ }
211
+ .editormd-dropdown-menu > li > a {
212
+ color: #666;
213
+ display: block;
214
+ text-decoration: none;
215
+ padding: 8px 10px;
216
+ }
217
+ .editormd-dropdown-menu > li > a:hover {
218
+ background: #f6f6f6;
219
+ -webkit-transition: all 300ms ease-out;
220
+ /* Safari, Chrome */
221
+ -moz-transition: all 300ms ease-out;
222
+ /* Firefox 4.0~16.0 */
223
+ transition: all 300ms ease-out;
224
+ /* IE >9, FF >15, Opera >12.0 */
225
+ }
226
+ .editormd-dropdown-menu > li + li {
227
+ border-top: 1px solid #ddd;
228
+ }
229
+
230
+ .editormd-container {
231
+ margin: 0;
232
+ width: 100%;
233
+ height: 100%;
234
+ overflow: hidden;
235
+ padding: 35px 0 0;
236
+ position: relative;
237
+ background: #fff;
238
+ -webkit-box-sizing: border-box;
239
+ -moz-box-sizing: border-box;
240
+ box-sizing: border-box;
241
+ }
242
+
243
+ .editormd-dialog {
244
+ color: #666;
245
+ position: fixed;
246
+ z-index: 99999;
247
+ display: none;
248
+ -webkit-border-radius: 3px;
249
+ -moz-border-radius: 3px;
250
+ -ms-border-radius: 3px;
251
+ -o-border-radius: 3px;
252
+ border-radius: 3px;
253
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
254
+ /* Webkit browsers */
255
+ -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
256
+ /* Firefox */
257
+ -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
258
+ /* IE9 */
259
+ -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
260
+ /* Opera(Old) */
261
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
262
+ /* IE9+, News */
263
+ background: #fff;
264
+ font-size: 14px;
265
+ }
266
+
267
+ .editormd-dialog-container {
268
+ position: relative;
269
+ padding: 20px;
270
+ line-height: 1.4;
271
+ }
272
+ .editormd-dialog-container h1 {
273
+ font-size: 24px;
274
+ margin-bottom: 10px;
275
+ }
276
+ .editormd-dialog-container h1 .fa {
277
+ color: #2C7EEA;
278
+ padding-right: 5px;
279
+ }
280
+ .editormd-dialog-container h1 small {
281
+ padding-left: 5px;
282
+ font-weight: normal;
283
+ font-size: 12px;
284
+ color: #999;
285
+ }
286
+ .editormd-dialog-container select {
287
+ color: #999;
288
+ padding: 3px 8px;
289
+ border: 1px solid #ddd;
290
+ }
291
+
292
+ .editormd-dialog-close {
293
+ position: absolute;
294
+ top: 12px;
295
+ right: 15px;
296
+ font-size: 18px;
297
+ color: #ccc;
298
+ -webkit-transition: color 300ms ease-out;
299
+ /* Safari, Chrome */
300
+ -moz-transition: color 300ms ease-out;
301
+ /* Firefox 4.0~16.0 */
302
+ transition: color 300ms ease-out;
303
+ /* IE >9, FF >15, Opera >12.0 */
304
+ }
305
+ .editormd-dialog-close:hover {
306
+ color: #999;
307
+ }
308
+
309
+ .editormd-dialog-header {
310
+ padding: 11px 20px;
311
+ border-bottom: 1px solid #eee;
312
+ -webkit-transition: background 300ms ease-out;
313
+ /* Safari, Chrome */
314
+ -moz-transition: background 300ms ease-out;
315
+ /* Firefox 4.0~16.0 */
316
+ transition: background 300ms ease-out;
317
+ /* IE >9, FF >15, Opera >12.0 */
318
+ }
319
+ .editormd-dialog-header:hover {
320
+ background: #f6f6f6;
321
+ }
322
+
323
+ .editormd-dialog-title {
324
+ font-size: 14px;
325
+ }
326
+
327
+ .editormd-dialog-footer {
328
+ padding: 10px 0 0 0;
329
+ text-align: right;
330
+ }
331
+
332
+ .editormd-dialog-info {
333
+ width: 420px;
334
+ }
335
+ .editormd-dialog-info h1 {
336
+ font-weight: normal;
337
+ }
338
+ .editormd-dialog-info .editormd-dialog-container {
339
+ padding: 20px 25px 25px;
340
+ }
341
+ .editormd-dialog-info .editormd-dialog-close {
342
+ top: 10px;
343
+ right: 10px;
344
+ }
345
+ .editormd-dialog-info p > a, .editormd-dialog-info .hover-link:hover {
346
+ color: #2196F3;
347
+ }
348
+ .editormd-dialog-info .hover-link {
349
+ color: #666;
350
+ }
351
+ .editormd-dialog-info a .fa-external-link {
352
+ display: none;
353
+ }
354
+ .editormd-dialog-info a:hover {
355
+ color: #2196F3;
356
+ }
357
+ .editormd-dialog-info a:hover .fa-external-link {
358
+ display: inline-block;
359
+ }
360
+
361
+ .editormd-mask,
362
+ .editormd-container-mask,
363
+ .editormd-dialog-mask {
364
+ display: none;
365
+ width: 100%;
366
+ height: 100%;
367
+ position: absolute;
368
+ top: 0;
369
+ left: 0;
370
+ }
371
+
372
+ .editormd-mask,
373
+ .editormd-dialog-mask-bg {
374
+ background: #fff;
375
+ opacity: 0.5;
376
+ filter: alpha(opacity=50);
377
+ }
378
+
379
+ .editormd-mask {
380
+ position: fixed;
381
+ background: #000;
382
+ opacity: 0.2;
383
+ /* W3C */
384
+ filter: alpha(opacity=20);
385
+ /* IE */
386
+ z-index: 99998;
387
+ }
388
+
389
+ .editormd-container-mask,
390
+ .editormd-dialog-mask-con {
391
+ background: url(loading.gif) no-repeat center center;
392
+ -webkit-background-size: 32px 32px;
393
+ /* Chrome, iOS, Safari */
394
+ -moz-background-size: 32px 32px;
395
+ /* Firefox 3.6~4.0 */
396
+ -o-background-size: 32px 32px;
397
+ /* Opera 9.5 */
398
+ background-size: 32px 32px;
399
+ /* IE9+, New */
400
+ }
401
+
402
+ .editormd-container-mask {
403
+ z-index: 20;
404
+ display: block;
405
+ background-color: #fff;
406
+ }
407
+
408
+ @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
409
+ .editormd-container-mask,
410
+ .editormd-dialog-mask-con {
411
+ background-image: url(loading@2x.gif);
412
+ }
413
+ }
414
+ @media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3) {
415
+ .editormd-container-mask,
416
+ .editormd-dialog-mask-con {
417
+ background-image: url(loading@3x.gif);
418
+ }
419
+ }
420
+ .editormd-code-block-dialog textarea,
421
+ .editormd-preformatted-text-dialog textarea {
422
+ width: 100%;
423
+ height: 400px;
424
+ margin-bottom: 6px;
425
+ overflow: auto;
426
+ border: 1px solid #eee;
427
+ background: #fff;
428
+ padding: 15px;
429
+ resize: none;
430
+ }
431
+
432
+ .editormd-code-toolbar {
433
+ color: #999;
434
+ font-size: 14px;
435
+ margin: -5px 0 10px;
436
+ }
437
+
438
+ .editormd-grid-table {
439
+ width: 99%;
440
+ display: table;
441
+ border: 1px solid #ddd;
442
+ border-collapse: collapse;
443
+ }
444
+
445
+ .editormd-grid-table-row {
446
+ width: 100%;
447
+ display: table-row;
448
+ }
449
+ .editormd-grid-table-row a {
450
+ font-size: 1.4em;
451
+ width: 5%;
452
+ height: 36px;
453
+ color: #999;
454
+ text-align: center;
455
+ display: table-cell;
456
+ vertical-align: middle;
457
+ border: 1px solid #ddd;
458
+ text-decoration: none;
459
+ -webkit-transition: background-color 300ms ease-out, color 100ms ease-in;
460
+ /* Safari, Chrome */
461
+ -moz-transition: background-color 300ms ease-out, color 100ms ease-in;
462
+ /* Firefox 4.0~16.0 */
463
+ transition: background-color 300ms ease-out, color 100ms ease-in;
464
+ /* IE >9, FF >15, Opera >12.0 */
465
+ }
466
+ .editormd-grid-table-row a.selected {
467
+ color: #666;
468
+ background-color: #eee;
469
+ }
470
+ .editormd-grid-table-row a:hover {
471
+ color: #777;
472
+ background-color: #f6f6f6;
473
+ }
474
+
475
+ .editormd-tab-head {
476
+ list-style: none;
477
+ border-bottom: 1px solid #ddd;
478
+ }
479
+ .editormd-tab-head li {
480
+ display: inline-block;
481
+ }
482
+ .editormd-tab-head li a {
483
+ color: #999;
484
+ display: block;
485
+ padding: 6px 12px 5px;
486
+ text-align: center;
487
+ text-decoration: none;
488
+ margin-bottom: -1px;
489
+ border: 1px solid #ddd;
490
+ -webkit-border-top-left-radius: 3px;
491
+ -moz-border-top-left-radius: 3px;
492
+ -ms-border-top-left-radius: 3px;
493
+ -o-border-top-left-radius: 3px;
494
+ border-top-left-radius: 3px;
495
+ -webkit-border-top-right-radius: 3px;
496
+ -moz-border-top-right-radius: 3px;
497
+ -ms-border-top-right-radius: 3px;
498
+ -o-border-top-right-radius: 3px;
499
+ border-top-right-radius: 3px;
500
+ background: #f6f6f6;
501
+ -webkit-transition: all 300ms ease-out;
502
+ /* Safari, Chrome */
503
+ -moz-transition: all 300ms ease-out;
504
+ /* Firefox 4.0~16.0 */
505
+ transition: all 300ms ease-out;
506
+ /* IE >9, FF >15, Opera >12.0 */
507
+ }
508
+ .editormd-tab-head li a:hover {
509
+ color: #666;
510
+ background: #eee;
511
+ }
512
+ .editormd-tab-head li.active a {
513
+ color: #666;
514
+ background: #fff;
515
+ border-bottom-color: #fff;
516
+ }
517
+ .editormd-tab-head li + li {
518
+ margin-left: 3px;
519
+ }
520
+
521
+ .editormd-tab-box {
522
+ padding: 20px 0;
523
+ }
524
+
525
+ .editormd-form {
526
+ color: #666;
527
+ }
528
+ .editormd-form label {
529
+ float: left;
530
+ display: block;
531
+ width: 75px;
532
+ text-align: left;
533
+ padding: 7px 0 15px 5px;
534
+ margin: 0 0 2px;
535
+ font-weight: normal;
536
+ }
537
+ .editormd-form br {
538
+ clear: both;
539
+ }
540
+ .editormd-form iframe {
541
+ display: none;
542
+ }
543
+ .editormd-form input:focus {
544
+ outline: 0;
545
+ }
546
+ .editormd-form input[type="text"], .editormd-form input[type="number"] {
547
+ color: #999;
548
+ padding: 8px;
549
+ border: 1px solid #ddd;
550
+ }
551
+ .editormd-form input[type="number"] {
552
+ width: 40px;
553
+ display: inline-block;
554
+ padding: 6px 8px;
555
+ }
556
+ .editormd-form input[type="text"] {
557
+ display: inline-block;
558
+ width: 264px;
559
+ }
560
+ .editormd-form .fa-btns {
561
+ display: inline-block;
562
+ }
563
+ .editormd-form .fa-btns a {
564
+ color: #999;
565
+ padding: 7px 10px 0 0;
566
+ display: inline-block;
567
+ text-decoration: none;
568
+ text-align: center;
569
+ }
570
+ .editormd-form .fa-btns .fa {
571
+ font-size: 1.3em;
572
+ }
573
+ .editormd-form .fa-btns label {
574
+ float: none;
575
+ display: inline-block;
576
+ width: auto;
577
+ text-align: left;
578
+ padding: 0 0 0 5px;
579
+ cursor: pointer;
580
+ }
581
+
582
+ .editormd-form input[type="submit"], .editormd-form .editormd-btn, .editormd-form button,
583
+ .editormd-dialog-container input[type="submit"],
584
+ .editormd-dialog-container .editormd-btn,
585
+ .editormd-dialog-container button,
586
+ .editormd-dialog-footer input[type="submit"],
587
+ .editormd-dialog-footer .editormd-btn,
588
+ .editormd-dialog-footer button {
589
+ color: #666;
590
+ min-width: 75px;
591
+ cursor: pointer;
592
+ background: #fff;
593
+ padding: 7px 10px;
594
+ border: 1px solid #ddd;
595
+ -webkit-border-radius: 3px;
596
+ -moz-border-radius: 3px;
597
+ -ms-border-radius: 3px;
598
+ -o-border-radius: 3px;
599
+ border-radius: 3px;
600
+ -webkit-transition: background 300ms ease-out;
601
+ /* Safari, Chrome */
602
+ -moz-transition: background 300ms ease-out;
603
+ /* Firefox 4.0~16.0 */
604
+ transition: background 300ms ease-out;
605
+ /* IE >9, FF >15, Opera >12.0 */
606
+ }
607
+ .editormd-form input[type="submit"]:hover, .editormd-form .editormd-btn:hover, .editormd-form button:hover,
608
+ .editormd-dialog-container input[type="submit"]:hover,
609
+ .editormd-dialog-container .editormd-btn:hover,
610
+ .editormd-dialog-container button:hover,
611
+ .editormd-dialog-footer input[type="submit"]:hover,
612
+ .editormd-dialog-footer .editormd-btn:hover,
613
+ .editormd-dialog-footer button:hover {
614
+ background: #eee;
615
+ }
616
+ .editormd-form .editormd-btn,
617
+ .editormd-dialog-container .editormd-btn,
618
+ .editormd-dialog-footer .editormd-btn {
619
+ padding: 5px 8px 4px\0;
620
+ }
621
+ .editormd-form .editormd-btn + .editormd-btn,
622
+ .editormd-dialog-container .editormd-btn + .editormd-btn,
623
+ .editormd-dialog-footer .editormd-btn + .editormd-btn {
624
+ margin-left: 8px;
625
+ }
626
+
627
+ .editormd-file-input {
628
+ width: 75px;
629
+ height: 32px;
630
+ margin-left: 8px;
631
+ position: relative;
632
+ display: inline-block;
633
+ }
634
+ .editormd-file-input input[type="file"] {
635
+ width: 75px;
636
+ height: 32px;
637
+ opacity: 0;
638
+ cursor: pointer;
639
+ background: #000;
640
+ display: inline-block;
641
+ position: absolute;
642
+ top: 0;
643
+ right: 0;
644
+ }
645
+ .editormd-file-input input[type="file"]::-webkit-file-upload-button {
646
+ visibility: hidden;
647
+ }
648
+ .editormd-file-input:hover input[type="submit"] {
649
+ background: #eee;
650
+ }
651
+
652
+ .editormd .CodeMirror, .editormd-preview {
653
+ display: inline-block;
654
+ width: 50%;
655
+ height: 100%;
656
+ vertical-align: top;
657
+ -webkit-box-sizing: border-box;
658
+ -moz-box-sizing: border-box;
659
+ box-sizing: border-box;
660
+ margin: 0;
661
+ }
662
+
663
+ .editormd-preview {
664
+ position: absolute;
665
+ top: 35px;
666
+ right: 0;
667
+ right: -1px\0;
668
+ overflow: auto;
669
+ line-height: 1.6;
670
+ display: none;
671
+ background: #fff;
672
+ }
673
+
674
+ .editormd .CodeMirror {
675
+ z-index: 10;
676
+ float: left;
677
+ border-right: 1px solid #ddd;
678
+ font-size: 14px;
679
+ font-family: "YaHei Consolas Hybrid", Consolas, "微软雅黑", "Meiryo UI", "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, "Monaco", courier, monospace;
680
+ line-height: 1.6;
681
+ margin-top: 35px;
682
+ }
683
+ .editormd .CodeMirror pre {
684
+ font-size: 14px;
685
+ padding: 0 12px;
686
+ }
687
+ .editormd .CodeMirror-linenumbers {
688
+ padding: 0 5px;
689
+ }
690
+ .editormd .CodeMirror-selected {
691
+ background: #70B7FF;
692
+ }
693
+ .editormd .CodeMirror-focused .CodeMirror-selected {
694
+ background: #70B7FF;
695
+ }
696
+ .editormd .CodeMirror, .editormd .CodeMirror-scroll, .editormd .editormd-preview {
697
+ -webkit-overflow-scrolling: touch;
698
+ }
699
+ .editormd .styled-background {
700
+ background-color: #ff7;
701
+ }
702
+ .editormd .CodeMirror-focused .cm-matchhighlight {
703
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==);
704
+ background-position: bottom;
705
+ background-repeat: repeat-x;
706
+ }
707
+ .editormd .CodeMirror-empty.CodeMirror-focused {
708
+ outline: none;
709
+ }
710
+ .editormd .CodeMirror pre.CodeMirror-placeholder {
711
+ color: #999;
712
+ }
713
+ .editormd .cm-trailingspace {
714
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==);
715
+ background-position: bottom left;
716
+ background-repeat: repeat-x;
717
+ }
718
+ .editormd .cm-tab {
719
+ background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
720
+ background-position: right;
721
+ background-repeat: no-repeat;
722
+ }
723
+
724
+ /*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
725
+ /*!
726
+ * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
727
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
728
+ */
729
+ /* FONT PATH
730
+ * -------------------------- */
731
+ @font-face {
732
+ font-family: 'FontAwesome';
733
+ src: url("fontawesome-webfont.eot?v=4.3.0");
734
+ src: url("fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("fontawesome-webfont.woff?v=4.3.0") format("woff"), url("fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
735
+ font-weight: normal;
736
+ font-style: normal;
737
+ }
738
+ .fa {
739
+ display: inline-block;
740
+ font: normal normal normal 14px/1 FontAwesome;
741
+ font-size: inherit;
742
+ text-rendering: auto;
743
+ -webkit-font-smoothing: antialiased;
744
+ -moz-osx-font-smoothing: grayscale;
745
+ transform: translate(0, 0);
746
+ }
747
+
748
+ /* makes the font 33% larger relative to the icon container */
749
+ .fa-lg {
750
+ font-size: 1.33333333em;
751
+ line-height: 0.75em;
752
+ vertical-align: -15%;
753
+ }
754
+
755
+ .fa-2x {
756
+ font-size: 2em;
757
+ }
758
+
759
+ .fa-3x {
760
+ font-size: 3em;
761
+ }
762
+
763
+ .fa-4x {
764
+ font-size: 4em;
765
+ }
766
+
767
+ .fa-5x {
768
+ font-size: 5em;
769
+ }
770
+
771
+ .fa-fw {
772
+ width: 1.28571429em;
773
+ text-align: center;
774
+ }
775
+
776
+ .fa-ul {
777
+ padding-left: 0;
778
+ margin-left: 2.14285714em;
779
+ list-style-type: none;
780
+ }
781
+
782
+ .fa-ul > li {
783
+ position: relative;
784
+ }
785
+
786
+ .fa-li {
787
+ position: absolute;
788
+ left: -2.14285714em;
789
+ width: 2.14285714em;
790
+ top: 0.14285714em;
791
+ text-align: center;
792
+ }
793
+
794
+ .fa-li.fa-lg {
795
+ left: -1.85714286em;
796
+ }
797
+
798
+ .fa-border {
799
+ padding: .2em .25em .15em;
800
+ border: solid 0.08em #eeeeee;
801
+ border-radius: .1em;
802
+ }
803
+
804
+ .pull-right {
805
+ float: right;
806
+ }
807
+
808
+ .pull-left {
809
+ float: left;
810
+ }
811
+
812
+ .fa.pull-left {
813
+ margin-right: .3em;
814
+ }
815
+
816
+ .fa.pull-right {
817
+ margin-left: .3em;
818
+ }
819
+
820
+ .fa-spin {
821
+ -webkit-animation: fa-spin 2s infinite linear;
822
+ animation: fa-spin 2s infinite linear;
823
+ }
824
+
825
+ .fa-pulse {
826
+ -webkit-animation: fa-spin 1s infinite steps(8);
827
+ animation: fa-spin 1s infinite steps(8);
828
+ }
829
+
830
+ @-webkit-keyframes fa-spin {
831
+ 0% {
832
+ -webkit-transform: rotate(0deg);
833
+ transform: rotate(0deg);
834
+ }
835
+ 100% {
836
+ -webkit-transform: rotate(359deg);
837
+ transform: rotate(359deg);
838
+ }
839
+ }
840
+ @keyframes fa-spin {
841
+ 0% {
842
+ -webkit-transform: rotate(0deg);
843
+ transform: rotate(0deg);
844
+ }
845
+ 100% {
846
+ -webkit-transform: rotate(359deg);
847
+ transform: rotate(359deg);
848
+ }
849
+ }
850
+ .fa-rotate-90 {
851
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
852
+ -webkit-transform: rotate(90deg);
853
+ -ms-transform: rotate(90deg);
854
+ transform: rotate(90deg);
855
+ }
856
+
857
+ .fa-rotate-180 {
858
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
859
+ -webkit-transform: rotate(180deg);
860
+ -ms-transform: rotate(180deg);
861
+ transform: rotate(180deg);
862
+ }
863
+
864
+ .fa-rotate-270 {
865
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
866
+ -webkit-transform: rotate(270deg);
867
+ -ms-transform: rotate(270deg);
868
+ transform: rotate(270deg);
869
+ }
870
+
871
+ .fa-flip-horizontal {
872
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
873
+ -webkit-transform: scale(-1, 1);
874
+ -ms-transform: scale(-1, 1);
875
+ transform: scale(-1, 1);
876
+ }
877
+
878
+ .fa-flip-vertical {
879
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
880
+ -webkit-transform: scale(1, -1);
881
+ -ms-transform: scale(1, -1);
882
+ transform: scale(1, -1);
883
+ }
884
+
885
+ :root .fa-rotate-90,
886
+ :root .fa-rotate-180,
887
+ :root .fa-rotate-270,
888
+ :root .fa-flip-horizontal,
889
+ :root .fa-flip-vertical {
890
+ filter: none;
891
+ }
892
+
893
+ .fa-stack {
894
+ position: relative;
895
+ display: inline-block;
896
+ width: 2em;
897
+ height: 2em;
898
+ line-height: 2em;
899
+ vertical-align: middle;
900
+ }
901
+
902
+ .fa-stack-1x,
903
+ .fa-stack-2x {
904
+ position: absolute;
905
+ left: 0;
906
+ width: 100%;
907
+ text-align: center;
908
+ }
909
+
910
+ .fa-stack-1x {
911
+ line-height: inherit;
912
+ }
913
+
914
+ .fa-stack-2x {
915
+ font-size: 2em;
916
+ }
917
+
918
+ .fa-inverse {
919
+ color: #ffffff;
920
+ }
921
+
922
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
923
+ readers do not read off random characters that represent icons */
924
+ .fa-glass:before {
925
+ content: "\f000";
926
+ }
927
+
928
+ .fa-music:before {
929
+ content: "\f001";
930
+ }
931
+
932
+ .fa-search:before {
933
+ content: "\f002";
934
+ }
935
+
936
+ .fa-envelope-o:before {
937
+ content: "\f003";
938
+ }
939
+
940
+ .fa-heart:before {
941
+ content: "\f004";
942
+ }
943
+
944
+ .fa-star:before {
945
+ content: "\f005";
946
+ }
947
+
948
+ .fa-star-o:before {
949
+ content: "\f006";
950
+ }
951
+
952
+ .fa-user:before {
953
+ content: "\f007";
954
+ }
955
+
956
+ .fa-film:before {
957
+ content: "\f008";
958
+ }
959
+
960
+ .fa-th-large:before {
961
+ content: "\f009";
962
+ }
963
+
964
+ .fa-th:before {
965
+ content: "\f00a";
966
+ }
967
+
968
+ .fa-th-list:before {
969
+ content: "\f00b";
970
+ }
971
+
972
+ .fa-check:before {
973
+ content: "\f00c";
974
+ }
975
+
976
+ .fa-remove:before,
977
+ .fa-close:before,
978
+ .fa-times:before {
979
+ content: "\f00d";
980
+ }
981
+
982
+ .fa-search-plus:before {
983
+ content: "\f00e";
984
+ }
985
+
986
+ .fa-search-minus:before {
987
+ content: "\f010";
988
+ }
989
+
990
+ .fa-power-off:before {
991
+ content: "\f011";
992
+ }
993
+
994
+ .fa-signal:before {
995
+ content: "\f012";
996
+ }
997
+
998
+ .fa-gear:before,
999
+ .fa-cog:before {
1000
+ content: "\f013";
1001
+ }
1002
+
1003
+ .fa-trash-o:before {
1004
+ content: "\f014";
1005
+ }
1006
+
1007
+ .fa-home:before {
1008
+ content: "\f015";
1009
+ }
1010
+
1011
+ .fa-file-o:before {
1012
+ content: "\f016";
1013
+ }
1014
+
1015
+ .fa-clock-o:before {
1016
+ content: "\f017";
1017
+ }
1018
+
1019
+ .fa-road:before {
1020
+ content: "\f018";
1021
+ }
1022
+
1023
+ .fa-download:before {
1024
+ content: "\f019";
1025
+ }
1026
+
1027
+ .fa-arrow-circle-o-down:before {
1028
+ content: "\f01a";
1029
+ }
1030
+
1031
+ .fa-arrow-circle-o-up:before {
1032
+ content: "\f01b";
1033
+ }
1034
+
1035
+ .fa-inbox:before {
1036
+ content: "\f01c";
1037
+ }
1038
+
1039
+ .fa-play-circle-o:before {
1040
+ content: "\f01d";
1041
+ }
1042
+
1043
+ .fa-rotate-right:before,
1044
+ .fa-repeat:before {
1045
+ content: "\f01e";
1046
+ }
1047
+
1048
+ .fa-refresh:before {
1049
+ content: "\f021";
1050
+ }
1051
+
1052
+ .fa-list-alt:before {
1053
+ content: "\f022";
1054
+ }
1055
+
1056
+ .fa-lock:before {
1057
+ content: "\f023";
1058
+ }
1059
+
1060
+ .fa-flag:before {
1061
+ content: "\f024";
1062
+ }
1063
+
1064
+ .fa-headphones:before {
1065
+ content: "\f025";
1066
+ }
1067
+
1068
+ .fa-volume-off:before {
1069
+ content: "\f026";
1070
+ }
1071
+
1072
+ .fa-volume-down:before {
1073
+ content: "\f027";
1074
+ }
1075
+
1076
+ .fa-volume-up:before {
1077
+ content: "\f028";
1078
+ }
1079
+
1080
+ .fa-qrcode:before {
1081
+ content: "\f029";
1082
+ }
1083
+
1084
+ .fa-barcode:before {
1085
+ content: "\f02a";
1086
+ }
1087
+
1088
+ .fa-tag:before {
1089
+ content: "\f02b";
1090
+ }
1091
+
1092
+ .fa-tags:before {
1093
+ content: "\f02c";
1094
+ }
1095
+
1096
+ .fa-book:before {
1097
+ content: "\f02d";
1098
+ }
1099
+
1100
+ .fa-bookmark:before {
1101
+ content: "\f02e";
1102
+ }
1103
+
1104
+ .fa-print:before {
1105
+ content: "\f02f";
1106
+ }
1107
+
1108
+ .fa-camera:before {
1109
+ content: "\f030";
1110
+ }
1111
+
1112
+ .fa-font:before {
1113
+ content: "\f031";
1114
+ }
1115
+
1116
+ .fa-bold:before {
1117
+ content: "\f032";
1118
+ }
1119
+
1120
+ .fa-italic:before {
1121
+ content: "\f033";
1122
+ }
1123
+
1124
+ .fa-text-height:before {
1125
+ content: "\f034";
1126
+ }
1127
+
1128
+ .fa-text-width:before {
1129
+ content: "\f035";
1130
+ }
1131
+
1132
+ .fa-align-left:before {
1133
+ content: "\f036";
1134
+ }
1135
+
1136
+ .fa-align-center:before {
1137
+ content: "\f037";
1138
+ }
1139
+
1140
+ .fa-align-right:before {
1141
+ content: "\f038";
1142
+ }
1143
+
1144
+ .fa-align-justify:before {
1145
+ content: "\f039";
1146
+ }
1147
+
1148
+ .fa-list:before {
1149
+ content: "\f03a";
1150
+ }
1151
+
1152
+ .fa-dedent:before,
1153
+ .fa-outdent:before {
1154
+ content: "\f03b";
1155
+ }
1156
+
1157
+ .fa-indent:before {
1158
+ content: "\f03c";
1159
+ }
1160
+
1161
+ .fa-video-camera:before {
1162
+ content: "\f03d";
1163
+ }
1164
+
1165
+ .fa-photo:before,
1166
+ .fa-image:before,
1167
+ .fa-picture-o:before {
1168
+ content: "\f03e";
1169
+ }
1170
+
1171
+ .fa-pencil:before {
1172
+ content: "\f040";
1173
+ }
1174
+
1175
+ .fa-map-marker:before {
1176
+ content: "\f041";
1177
+ }
1178
+
1179
+ .fa-adjust:before {
1180
+ content: "\f042";
1181
+ }
1182
+
1183
+ .fa-tint:before {
1184
+ content: "\f043";
1185
+ }
1186
+
1187
+ .fa-edit:before,
1188
+ .fa-pencil-square-o:before {
1189
+ content: "\f044";
1190
+ }
1191
+
1192
+ .fa-share-square-o:before {
1193
+ content: "\f045";
1194
+ }
1195
+
1196
+ .fa-check-square-o:before {
1197
+ content: "\f046";
1198
+ }
1199
+
1200
+ .fa-arrows:before {
1201
+ content: "\f047";
1202
+ }
1203
+
1204
+ .fa-step-backward:before {
1205
+ content: "\f048";
1206
+ }
1207
+
1208
+ .fa-fast-backward:before {
1209
+ content: "\f049";
1210
+ }
1211
+
1212
+ .fa-backward:before {
1213
+ content: "\f04a";
1214
+ }
1215
+
1216
+ .fa-play:before {
1217
+ content: "\f04b";
1218
+ }
1219
+
1220
+ .fa-pause:before {
1221
+ content: "\f04c";
1222
+ }
1223
+
1224
+ .fa-stop:before {
1225
+ content: "\f04d";
1226
+ }
1227
+
1228
+ .fa-forward:before {
1229
+ content: "\f04e";
1230
+ }
1231
+
1232
+ .fa-fast-forward:before {
1233
+ content: "\f050";
1234
+ }
1235
+
1236
+ .fa-step-forward:before {
1237
+ content: "\f051";
1238
+ }
1239
+
1240
+ .fa-eject:before {
1241
+ content: "\f052";
1242
+ }
1243
+
1244
+ .fa-chevron-left:before {
1245
+ content: "\f053";
1246
+ }
1247
+
1248
+ .fa-chevron-right:before {
1249
+ content: "\f054";
1250
+ }
1251
+
1252
+ .fa-plus-circle:before {
1253
+ content: "\f055";
1254
+ }
1255
+
1256
+ .fa-minus-circle:before {
1257
+ content: "\f056";
1258
+ }
1259
+
1260
+ .fa-times-circle:before {
1261
+ content: "\f057";
1262
+ }
1263
+
1264
+ .fa-check-circle:before {
1265
+ content: "\f058";
1266
+ }
1267
+
1268
+ .fa-question-circle:before {
1269
+ content: "\f059";
1270
+ }
1271
+
1272
+ .fa-info-circle:before {
1273
+ content: "\f05a";
1274
+ }
1275
+
1276
+ .fa-crosshairs:before {
1277
+ content: "\f05b";
1278
+ }
1279
+
1280
+ .fa-times-circle-o:before {
1281
+ content: "\f05c";
1282
+ }
1283
+
1284
+ .fa-check-circle-o:before {
1285
+ content: "\f05d";
1286
+ }
1287
+
1288
+ .fa-ban:before {
1289
+ content: "\f05e";
1290
+ }
1291
+
1292
+ .fa-arrow-left:before {
1293
+ content: "\f060";
1294
+ }
1295
+
1296
+ .fa-arrow-right:before {
1297
+ content: "\f061";
1298
+ }
1299
+
1300
+ .fa-arrow-up:before {
1301
+ content: "\f062";
1302
+ }
1303
+
1304
+ .fa-arrow-down:before {
1305
+ content: "\f063";
1306
+ }
1307
+
1308
+ .fa-mail-forward:before,
1309
+ .fa-share:before {
1310
+ content: "\f064";
1311
+ }
1312
+
1313
+ .fa-expand:before {
1314
+ content: "\f065";
1315
+ }
1316
+
1317
+ .fa-compress:before {
1318
+ content: "\f066";
1319
+ }
1320
+
1321
+ .fa-plus:before {
1322
+ content: "\f067";
1323
+ }
1324
+
1325
+ .fa-minus:before {
1326
+ content: "\f068";
1327
+ }
1328
+
1329
+ .fa-asterisk:before {
1330
+ content: "\f069";
1331
+ }
1332
+
1333
+ .fa-exclamation-circle:before {
1334
+ content: "\f06a";
1335
+ }
1336
+
1337
+ .fa-gift:before {
1338
+ content: "\f06b";
1339
+ }
1340
+
1341
+ .fa-leaf:before {
1342
+ content: "\f06c";
1343
+ }
1344
+
1345
+ .fa-fire:before {
1346
+ content: "\f06d";
1347
+ }
1348
+
1349
+ .fa-eye:before {
1350
+ content: "\f06e";
1351
+ }
1352
+
1353
+ .fa-eye-slash:before {
1354
+ content: "\f070";
1355
+ }
1356
+
1357
+ .fa-warning:before,
1358
+ .fa-exclamation-triangle:before {
1359
+ content: "\f071";
1360
+ }
1361
+
1362
+ .fa-plane:before {
1363
+ content: "\f072";
1364
+ }
1365
+
1366
+ .fa-calendar:before {
1367
+ content: "\f073";
1368
+ }
1369
+
1370
+ .fa-random:before {
1371
+ content: "\f074";
1372
+ }
1373
+
1374
+ .fa-comment:before {
1375
+ content: "\f075";
1376
+ }
1377
+
1378
+ .fa-magnet:before {
1379
+ content: "\f076";
1380
+ }
1381
+
1382
+ .fa-chevron-up:before {
1383
+ content: "\f077";
1384
+ }
1385
+
1386
+ .fa-chevron-down:before {
1387
+ content: "\f078";
1388
+ }
1389
+
1390
+ .fa-retweet:before {
1391
+ content: "\f079";
1392
+ }
1393
+
1394
+ .fa-shopping-cart:before {
1395
+ content: "\f07a";
1396
+ }
1397
+
1398
+ .fa-folder:before {
1399
+ content: "\f07b";
1400
+ }
1401
+
1402
+ .fa-folder-open:before {
1403
+ content: "\f07c";
1404
+ }
1405
+
1406
+ .fa-arrows-v:before {
1407
+ content: "\f07d";
1408
+ }
1409
+
1410
+ .fa-arrows-h:before {
1411
+ content: "\f07e";
1412
+ }
1413
+
1414
+ .fa-bar-chart-o:before,
1415
+ .fa-bar-chart:before {
1416
+ content: "\f080";
1417
+ }
1418
+
1419
+ .fa-twitter-square:before {
1420
+ content: "\f081";
1421
+ }
1422
+
1423
+ .fa-facebook-square:before {
1424
+ content: "\f082";
1425
+ }
1426
+
1427
+ .fa-camera-retro:before {
1428
+ content: "\f083";
1429
+ }
1430
+
1431
+ .fa-key:before {
1432
+ content: "\f084";
1433
+ }
1434
+
1435
+ .fa-gears:before,
1436
+ .fa-cogs:before {
1437
+ content: "\f085";
1438
+ }
1439
+
1440
+ .fa-comments:before {
1441
+ content: "\f086";
1442
+ }
1443
+
1444
+ .fa-thumbs-o-up:before {
1445
+ content: "\f087";
1446
+ }
1447
+
1448
+ .fa-thumbs-o-down:before {
1449
+ content: "\f088";
1450
+ }
1451
+
1452
+ .fa-star-half:before {
1453
+ content: "\f089";
1454
+ }
1455
+
1456
+ .fa-heart-o:before {
1457
+ content: "\f08a";
1458
+ }
1459
+
1460
+ .fa-sign-out:before {
1461
+ content: "\f08b";
1462
+ }
1463
+
1464
+ .fa-linkedin-square:before {
1465
+ content: "\f08c";
1466
+ }
1467
+
1468
+ .fa-thumb-tack:before {
1469
+ content: "\f08d";
1470
+ }
1471
+
1472
+ .fa-external-link:before {
1473
+ content: "\f08e";
1474
+ }
1475
+
1476
+ .fa-sign-in:before {
1477
+ content: "\f090";
1478
+ }
1479
+
1480
+ .fa-trophy:before {
1481
+ content: "\f091";
1482
+ }
1483
+
1484
+ .fa-github-square:before {
1485
+ content: "\f092";
1486
+ }
1487
+
1488
+ .fa-upload:before {
1489
+ content: "\f093";
1490
+ }
1491
+
1492
+ .fa-lemon-o:before {
1493
+ content: "\f094";
1494
+ }
1495
+
1496
+ .fa-phone:before {
1497
+ content: "\f095";
1498
+ }
1499
+
1500
+ .fa-square-o:before {
1501
+ content: "\f096";
1502
+ }
1503
+
1504
+ .fa-bookmark-o:before {
1505
+ content: "\f097";
1506
+ }
1507
+
1508
+ .fa-phone-square:before {
1509
+ content: "\f098";
1510
+ }
1511
+
1512
+ .fa-twitter:before {
1513
+ content: "\f099";
1514
+ }
1515
+
1516
+ .fa-facebook-f:before,
1517
+ .fa-facebook:before {
1518
+ content: "\f09a";
1519
+ }
1520
+
1521
+ .fa-github:before {
1522
+ content: "\f09b";
1523
+ }
1524
+
1525
+ .fa-unlock:before {
1526
+ content: "\f09c";
1527
+ }
1528
+
1529
+ .fa-credit-card:before {
1530
+ content: "\f09d";
1531
+ }
1532
+
1533
+ .fa-rss:before {
1534
+ content: "\f09e";
1535
+ }
1536
+
1537
+ .fa-hdd-o:before {
1538
+ content: "\f0a0";
1539
+ }
1540
+
1541
+ .fa-bullhorn:before {
1542
+ content: "\f0a1";
1543
+ }
1544
+
1545
+ .fa-bell:before {
1546
+ content: "\f0f3";
1547
+ }
1548
+
1549
+ .fa-certificate:before {
1550
+ content: "\f0a3";
1551
+ }
1552
+
1553
+ .fa-hand-o-right:before {
1554
+ content: "\f0a4";
1555
+ }
1556
+
1557
+ .fa-hand-o-left:before {
1558
+ content: "\f0a5";
1559
+ }
1560
+
1561
+ .fa-hand-o-up:before {
1562
+ content: "\f0a6";
1563
+ }
1564
+
1565
+ .fa-hand-o-down:before {
1566
+ content: "\f0a7";
1567
+ }
1568
+
1569
+ .fa-arrow-circle-left:before {
1570
+ content: "\f0a8";
1571
+ }
1572
+
1573
+ .fa-arrow-circle-right:before {
1574
+ content: "\f0a9";
1575
+ }
1576
+
1577
+ .fa-arrow-circle-up:before {
1578
+ content: "\f0aa";
1579
+ }
1580
+
1581
+ .fa-arrow-circle-down:before {
1582
+ content: "\f0ab";
1583
+ }
1584
+
1585
+ .fa-globe:before {
1586
+ content: "\f0ac";
1587
+ }
1588
+
1589
+ .fa-wrench:before {
1590
+ content: "\f0ad";
1591
+ }
1592
+
1593
+ .fa-tasks:before {
1594
+ content: "\f0ae";
1595
+ }
1596
+
1597
+ .fa-filter:before {
1598
+ content: "\f0b0";
1599
+ }
1600
+
1601
+ .fa-briefcase:before {
1602
+ content: "\f0b1";
1603
+ }
1604
+
1605
+ .fa-arrows-alt:before {
1606
+ content: "\f0b2";
1607
+ }
1608
+
1609
+ .fa-group:before,
1610
+ .fa-users:before {
1611
+ content: "\f0c0";
1612
+ }
1613
+
1614
+ .fa-chain:before,
1615
+ .fa-link:before {
1616
+ content: "\f0c1";
1617
+ }
1618
+
1619
+ .fa-cloud:before {
1620
+ content: "\f0c2";
1621
+ }
1622
+
1623
+ .fa-flask:before {
1624
+ content: "\f0c3";
1625
+ }
1626
+
1627
+ .fa-cut:before,
1628
+ .fa-scissors:before {
1629
+ content: "\f0c4";
1630
+ }
1631
+
1632
+ .fa-copy:before,
1633
+ .fa-files-o:before {
1634
+ content: "\f0c5";
1635
+ }
1636
+
1637
+ .fa-paperclip:before {
1638
+ content: "\f0c6";
1639
+ }
1640
+
1641
+ .fa-save:before,
1642
+ .fa-floppy-o:before {
1643
+ content: "\f0c7";
1644
+ }
1645
+
1646
+ .fa-square:before {
1647
+ content: "\f0c8";
1648
+ }
1649
+
1650
+ .fa-navicon:before,
1651
+ .fa-reorder:before,
1652
+ .fa-bars:before {
1653
+ content: "\f0c9";
1654
+ }
1655
+
1656
+ .fa-list-ul:before {
1657
+ content: "\f0ca";
1658
+ }
1659
+
1660
+ .fa-list-ol:before {
1661
+ content: "\f0cb";
1662
+ }
1663
+
1664
+ .fa-strikethrough:before {
1665
+ content: "\f0cc";
1666
+ }
1667
+
1668
+ .fa-underline:before {
1669
+ content: "\f0cd";
1670
+ }
1671
+
1672
+ .fa-table:before {
1673
+ content: "\f0ce";
1674
+ }
1675
+
1676
+ .fa-magic:before {
1677
+ content: "\f0d0";
1678
+ }
1679
+
1680
+ .fa-truck:before {
1681
+ content: "\f0d1";
1682
+ }
1683
+
1684
+ .fa-pinterest:before {
1685
+ content: "\f0d2";
1686
+ }
1687
+
1688
+ .fa-pinterest-square:before {
1689
+ content: "\f0d3";
1690
+ }
1691
+
1692
+ .fa-google-plus-square:before {
1693
+ content: "\f0d4";
1694
+ }
1695
+
1696
+ .fa-google-plus:before {
1697
+ content: "\f0d5";
1698
+ }
1699
+
1700
+ .fa-money:before {
1701
+ content: "\f0d6";
1702
+ }
1703
+
1704
+ .fa-caret-down:before {
1705
+ content: "\f0d7";
1706
+ }
1707
+
1708
+ .fa-caret-up:before {
1709
+ content: "\f0d8";
1710
+ }
1711
+
1712
+ .fa-caret-left:before {
1713
+ content: "\f0d9";
1714
+ }
1715
+
1716
+ .fa-caret-right:before {
1717
+ content: "\f0da";
1718
+ }
1719
+
1720
+ .fa-columns:before {
1721
+ content: "\f0db";
1722
+ }
1723
+
1724
+ .fa-unsorted:before,
1725
+ .fa-sort:before {
1726
+ content: "\f0dc";
1727
+ }
1728
+
1729
+ .fa-sort-down:before,
1730
+ .fa-sort-desc:before {
1731
+ content: "\f0dd";
1732
+ }
1733
+
1734
+ .fa-sort-up:before,
1735
+ .fa-sort-asc:before {
1736
+ content: "\f0de";
1737
+ }
1738
+
1739
+ .fa-envelope:before {
1740
+ content: "\f0e0";
1741
+ }
1742
+
1743
+ .fa-linkedin:before {
1744
+ content: "\f0e1";
1745
+ }
1746
+
1747
+ .fa-rotate-left:before,
1748
+ .fa-undo:before {
1749
+ content: "\f0e2";
1750
+ }
1751
+
1752
+ .fa-legal:before,
1753
+ .fa-gavel:before {
1754
+ content: "\f0e3";
1755
+ }
1756
+
1757
+ .fa-dashboard:before,
1758
+ .fa-tachometer:before {
1759
+ content: "\f0e4";
1760
+ }
1761
+
1762
+ .fa-comment-o:before {
1763
+ content: "\f0e5";
1764
+ }
1765
+
1766
+ .fa-comments-o:before {
1767
+ content: "\f0e6";
1768
+ }
1769
+
1770
+ .fa-flash:before,
1771
+ .fa-bolt:before {
1772
+ content: "\f0e7";
1773
+ }
1774
+
1775
+ .fa-sitemap:before {
1776
+ content: "\f0e8";
1777
+ }
1778
+
1779
+ .fa-umbrella:before {
1780
+ content: "\f0e9";
1781
+ }
1782
+
1783
+ .fa-paste:before,
1784
+ .fa-clipboard:before {
1785
+ content: "\f0ea";
1786
+ }
1787
+
1788
+ .fa-lightbulb-o:before {
1789
+ content: "\f0eb";
1790
+ }
1791
+
1792
+ .fa-exchange:before {
1793
+ content: "\f0ec";
1794
+ }
1795
+
1796
+ .fa-cloud-download:before {
1797
+ content: "\f0ed";
1798
+ }
1799
+
1800
+ .fa-cloud-upload:before {
1801
+ content: "\f0ee";
1802
+ }
1803
+
1804
+ .fa-user-md:before {
1805
+ content: "\f0f0";
1806
+ }
1807
+
1808
+ .fa-stethoscope:before {
1809
+ content: "\f0f1";
1810
+ }
1811
+
1812
+ .fa-suitcase:before {
1813
+ content: "\f0f2";
1814
+ }
1815
+
1816
+ .fa-bell-o:before {
1817
+ content: "\f0a2";
1818
+ }
1819
+
1820
+ .fa-coffee:before {
1821
+ content: "\f0f4";
1822
+ }
1823
+
1824
+ .fa-cutlery:before {
1825
+ content: "\f0f5";
1826
+ }
1827
+
1828
+ .fa-file-text-o:before {
1829
+ content: "\f0f6";
1830
+ }
1831
+
1832
+ .fa-building-o:before {
1833
+ content: "\f0f7";
1834
+ }
1835
+
1836
+ .fa-hospital-o:before {
1837
+ content: "\f0f8";
1838
+ }
1839
+
1840
+ .fa-ambulance:before {
1841
+ content: "\f0f9";
1842
+ }
1843
+
1844
+ .fa-medkit:before {
1845
+ content: "\f0fa";
1846
+ }
1847
+
1848
+ .fa-fighter-jet:before {
1849
+ content: "\f0fb";
1850
+ }
1851
+
1852
+ .fa-beer:before {
1853
+ content: "\f0fc";
1854
+ }
1855
+
1856
+ .fa-h-square:before {
1857
+ content: "\f0fd";
1858
+ }
1859
+
1860
+ .fa-plus-square:before {
1861
+ content: "\f0fe";
1862
+ }
1863
+
1864
+ .fa-angle-double-left:before {
1865
+ content: "\f100";
1866
+ }
1867
+
1868
+ .fa-angle-double-right:before {
1869
+ content: "\f101";
1870
+ }
1871
+
1872
+ .fa-angle-double-up:before {
1873
+ content: "\f102";
1874
+ }
1875
+
1876
+ .fa-angle-double-down:before {
1877
+ content: "\f103";
1878
+ }
1879
+
1880
+ .fa-angle-left:before {
1881
+ content: "\f104";
1882
+ }
1883
+
1884
+ .fa-angle-right:before {
1885
+ content: "\f105";
1886
+ }
1887
+
1888
+ .fa-angle-up:before {
1889
+ content: "\f106";
1890
+ }
1891
+
1892
+ .fa-angle-down:before {
1893
+ content: "\f107";
1894
+ }
1895
+
1896
+ .fa-desktop:before {
1897
+ content: "\f108";
1898
+ }
1899
+
1900
+ .fa-laptop:before {
1901
+ content: "\f109";
1902
+ }
1903
+
1904
+ .fa-tablet:before {
1905
+ content: "\f10a";
1906
+ }
1907
+
1908
+ .fa-mobile-phone:before,
1909
+ .fa-mobile:before {
1910
+ content: "\f10b";
1911
+ }
1912
+
1913
+ .fa-circle-o:before {
1914
+ content: "\f10c";
1915
+ }
1916
+
1917
+ .fa-quote-left:before {
1918
+ content: "\f10d";
1919
+ }
1920
+
1921
+ .fa-quote-right:before {
1922
+ content: "\f10e";
1923
+ }
1924
+
1925
+ .fa-spinner:before {
1926
+ content: "\f110";
1927
+ }
1928
+
1929
+ .fa-circle:before {
1930
+ content: "\f111";
1931
+ }
1932
+
1933
+ .fa-mail-reply:before,
1934
+ .fa-reply:before {
1935
+ content: "\f112";
1936
+ }
1937
+
1938
+ .fa-github-alt:before {
1939
+ content: "\f113";
1940
+ }
1941
+
1942
+ .fa-folder-o:before {
1943
+ content: "\f114";
1944
+ }
1945
+
1946
+ .fa-folder-open-o:before {
1947
+ content: "\f115";
1948
+ }
1949
+
1950
+ .fa-smile-o:before {
1951
+ content: "\f118";
1952
+ }
1953
+
1954
+ .fa-frown-o:before {
1955
+ content: "\f119";
1956
+ }
1957
+
1958
+ .fa-meh-o:before {
1959
+ content: "\f11a";
1960
+ }
1961
+
1962
+ .fa-gamepad:before {
1963
+ content: "\f11b";
1964
+ }
1965
+
1966
+ .fa-keyboard-o:before {
1967
+ content: "\f11c";
1968
+ }
1969
+
1970
+ .fa-flag-o:before {
1971
+ content: "\f11d";
1972
+ }
1973
+
1974
+ .fa-flag-checkered:before {
1975
+ content: "\f11e";
1976
+ }
1977
+
1978
+ .fa-terminal:before {
1979
+ content: "\f120";
1980
+ }
1981
+
1982
+ .fa-code:before {
1983
+ content: "\f121";
1984
+ }
1985
+
1986
+ .fa-mail-reply-all:before,
1987
+ .fa-reply-all:before {
1988
+ content: "\f122";
1989
+ }
1990
+
1991
+ .fa-star-half-empty:before,
1992
+ .fa-star-half-full:before,
1993
+ .fa-star-half-o:before {
1994
+ content: "\f123";
1995
+ }
1996
+
1997
+ .fa-location-arrow:before {
1998
+ content: "\f124";
1999
+ }
2000
+
2001
+ .fa-crop:before {
2002
+ content: "\f125";
2003
+ }
2004
+
2005
+ .fa-code-fork:before {
2006
+ content: "\f126";
2007
+ }
2008
+
2009
+ .fa-unlink:before,
2010
+ .fa-chain-broken:before {
2011
+ content: "\f127";
2012
+ }
2013
+
2014
+ .fa-question:before {
2015
+ content: "\f128";
2016
+ }
2017
+
2018
+ .fa-info:before {
2019
+ content: "\f129";
2020
+ }
2021
+
2022
+ .fa-exclamation:before {
2023
+ content: "\f12a";
2024
+ }
2025
+
2026
+ .fa-superscript:before {
2027
+ content: "\f12b";
2028
+ }
2029
+
2030
+ .fa-subscript:before {
2031
+ content: "\f12c";
2032
+ }
2033
+
2034
+ .fa-eraser:before {
2035
+ content: "\f12d";
2036
+ }
2037
+
2038
+ .fa-puzzle-piece:before {
2039
+ content: "\f12e";
2040
+ }
2041
+
2042
+ .fa-microphone:before {
2043
+ content: "\f130";
2044
+ }
2045
+
2046
+ .fa-microphone-slash:before {
2047
+ content: "\f131";
2048
+ }
2049
+
2050
+ .fa-shield:before {
2051
+ content: "\f132";
2052
+ }
2053
+
2054
+ .fa-calendar-o:before {
2055
+ content: "\f133";
2056
+ }
2057
+
2058
+ .fa-fire-extinguisher:before {
2059
+ content: "\f134";
2060
+ }
2061
+
2062
+ .fa-rocket:before {
2063
+ content: "\f135";
2064
+ }
2065
+
2066
+ .fa-maxcdn:before {
2067
+ content: "\f136";
2068
+ }
2069
+
2070
+ .fa-chevron-circle-left:before {
2071
+ content: "\f137";
2072
+ }
2073
+
2074
+ .fa-chevron-circle-right:before {
2075
+ content: "\f138";
2076
+ }
2077
+
2078
+ .fa-chevron-circle-up:before {
2079
+ content: "\f139";
2080
+ }
2081
+
2082
+ .fa-chevron-circle-down:before {
2083
+ content: "\f13a";
2084
+ }
2085
+
2086
+ .fa-html5:before {
2087
+ content: "\f13b";
2088
+ }
2089
+
2090
+ .fa-css3:before {
2091
+ content: "\f13c";
2092
+ }
2093
+
2094
+ .fa-anchor:before {
2095
+ content: "\f13d";
2096
+ }
2097
+
2098
+ .fa-unlock-alt:before {
2099
+ content: "\f13e";
2100
+ }
2101
+
2102
+ .fa-bullseye:before {
2103
+ content: "\f140";
2104
+ }
2105
+
2106
+ .fa-ellipsis-h:before {
2107
+ content: "\f141";
2108
+ }
2109
+
2110
+ .fa-ellipsis-v:before {
2111
+ content: "\f142";
2112
+ }
2113
+
2114
+ .fa-rss-square:before {
2115
+ content: "\f143";
2116
+ }
2117
+
2118
+ .fa-play-circle:before {
2119
+ content: "\f144";
2120
+ }
2121
+
2122
+ .fa-ticket:before {
2123
+ content: "\f145";
2124
+ }
2125
+
2126
+ .fa-minus-square:before {
2127
+ content: "\f146";
2128
+ }
2129
+
2130
+ .fa-minus-square-o:before {
2131
+ content: "\f147";
2132
+ }
2133
+
2134
+ .fa-level-up:before {
2135
+ content: "\f148";
2136
+ }
2137
+
2138
+ .fa-level-down:before {
2139
+ content: "\f149";
2140
+ }
2141
+
2142
+ .fa-check-square:before {
2143
+ content: "\f14a";
2144
+ }
2145
+
2146
+ .fa-pencil-square:before {
2147
+ content: "\f14b";
2148
+ }
2149
+
2150
+ .fa-external-link-square:before {
2151
+ content: "\f14c";
2152
+ }
2153
+
2154
+ .fa-share-square:before {
2155
+ content: "\f14d";
2156
+ }
2157
+
2158
+ .fa-compass:before {
2159
+ content: "\f14e";
2160
+ }
2161
+
2162
+ .fa-toggle-down:before,
2163
+ .fa-caret-square-o-down:before {
2164
+ content: "\f150";
2165
+ }
2166
+
2167
+ .fa-toggle-up:before,
2168
+ .fa-caret-square-o-up:before {
2169
+ content: "\f151";
2170
+ }
2171
+
2172
+ .fa-toggle-right:before,
2173
+ .fa-caret-square-o-right:before {
2174
+ content: "\f152";
2175
+ }
2176
+
2177
+ .fa-euro:before,
2178
+ .fa-eur:before {
2179
+ content: "\f153";
2180
+ }
2181
+
2182
+ .fa-gbp:before {
2183
+ content: "\f154";
2184
+ }
2185
+
2186
+ .fa-dollar:before,
2187
+ .fa-usd:before {
2188
+ content: "\f155";
2189
+ }
2190
+
2191
+ .fa-rupee:before,
2192
+ .fa-inr:before {
2193
+ content: "\f156";
2194
+ }
2195
+
2196
+ .fa-cny:before,
2197
+ .fa-rmb:before,
2198
+ .fa-yen:before,
2199
+ .fa-jpy:before {
2200
+ content: "\f157";
2201
+ }
2202
+
2203
+ .fa-ruble:before,
2204
+ .fa-rouble:before,
2205
+ .fa-rub:before {
2206
+ content: "\f158";
2207
+ }
2208
+
2209
+ .fa-won:before,
2210
+ .fa-krw:before {
2211
+ content: "\f159";
2212
+ }
2213
+
2214
+ .fa-bitcoin:before,
2215
+ .fa-btc:before {
2216
+ content: "\f15a";
2217
+ }
2218
+
2219
+ .fa-file:before {
2220
+ content: "\f15b";
2221
+ }
2222
+
2223
+ .fa-file-text:before {
2224
+ content: "\f15c";
2225
+ }
2226
+
2227
+ .fa-sort-alpha-asc:before {
2228
+ content: "\f15d";
2229
+ }
2230
+
2231
+ .fa-sort-alpha-desc:before {
2232
+ content: "\f15e";
2233
+ }
2234
+
2235
+ .fa-sort-amount-asc:before {
2236
+ content: "\f160";
2237
+ }
2238
+
2239
+ .fa-sort-amount-desc:before {
2240
+ content: "\f161";
2241
+ }
2242
+
2243
+ .fa-sort-numeric-asc:before {
2244
+ content: "\f162";
2245
+ }
2246
+
2247
+ .fa-sort-numeric-desc:before {
2248
+ content: "\f163";
2249
+ }
2250
+
2251
+ .fa-thumbs-up:before {
2252
+ content: "\f164";
2253
+ }
2254
+
2255
+ .fa-thumbs-down:before {
2256
+ content: "\f165";
2257
+ }
2258
+
2259
+ .fa-youtube-square:before {
2260
+ content: "\f166";
2261
+ }
2262
+
2263
+ .fa-youtube:before {
2264
+ content: "\f167";
2265
+ }
2266
+
2267
+ .fa-xing:before {
2268
+ content: "\f168";
2269
+ }
2270
+
2271
+ .fa-xing-square:before {
2272
+ content: "\f169";
2273
+ }
2274
+
2275
+ .fa-youtube-play:before {
2276
+ content: "\f16a";
2277
+ }
2278
+
2279
+ .fa-dropbox:before {
2280
+ content: "\f16b";
2281
+ }
2282
+
2283
+ .fa-stack-overflow:before {
2284
+ content: "\f16c";
2285
+ }
2286
+
2287
+ .fa-instagram:before {
2288
+ content: "\f16d";
2289
+ }
2290
+
2291
+ .fa-flickr:before {
2292
+ content: "\f16e";
2293
+ }
2294
+
2295
+ .fa-adn:before {
2296
+ content: "\f170";
2297
+ }
2298
+
2299
+ .fa-bitbucket:before {
2300
+ content: "\f171";
2301
+ }
2302
+
2303
+ .fa-bitbucket-square:before {
2304
+ content: "\f172";
2305
+ }
2306
+
2307
+ .fa-tumblr:before {
2308
+ content: "\f173";
2309
+ }
2310
+
2311
+ .fa-tumblr-square:before {
2312
+ content: "\f174";
2313
+ }
2314
+
2315
+ .fa-long-arrow-down:before {
2316
+ content: "\f175";
2317
+ }
2318
+
2319
+ .fa-long-arrow-up:before {
2320
+ content: "\f176";
2321
+ }
2322
+
2323
+ .fa-long-arrow-left:before {
2324
+ content: "\f177";
2325
+ }
2326
+
2327
+ .fa-long-arrow-right:before {
2328
+ content: "\f178";
2329
+ }
2330
+
2331
+ .fa-apple:before {
2332
+ content: "\f179";
2333
+ }
2334
+
2335
+ .fa-windows:before {
2336
+ content: "\f17a";
2337
+ }
2338
+
2339
+ .fa-android:before {
2340
+ content: "\f17b";
2341
+ }
2342
+
2343
+ .fa-linux:before {
2344
+ content: "\f17c";
2345
+ }
2346
+
2347
+ .fa-dribbble:before {
2348
+ content: "\f17d";
2349
+ }
2350
+
2351
+ .fa-skype:before {
2352
+ content: "\f17e";
2353
+ }
2354
+
2355
+ .fa-foursquare:before {
2356
+ content: "\f180";
2357
+ }
2358
+
2359
+ .fa-trello:before {
2360
+ content: "\f181";
2361
+ }
2362
+
2363
+ .fa-female:before {
2364
+ content: "\f182";
2365
+ }
2366
+
2367
+ .fa-male:before {
2368
+ content: "\f183";
2369
+ }
2370
+
2371
+ .fa-gittip:before,
2372
+ .fa-gratipay:before {
2373
+ content: "\f184";
2374
+ }
2375
+
2376
+ .fa-sun-o:before {
2377
+ content: "\f185";
2378
+ }
2379
+
2380
+ .fa-moon-o:before {
2381
+ content: "\f186";
2382
+ }
2383
+
2384
+ .fa-archive:before {
2385
+ content: "\f187";
2386
+ }
2387
+
2388
+ .fa-bug:before {
2389
+ content: "\f188";
2390
+ }
2391
+
2392
+ .fa-vk:before {
2393
+ content: "\f189";
2394
+ }
2395
+
2396
+ .fa-weibo:before {
2397
+ content: "\f18a";
2398
+ }
2399
+
2400
+ .fa-renren:before {
2401
+ content: "\f18b";
2402
+ }
2403
+
2404
+ .fa-pagelines:before {
2405
+ content: "\f18c";
2406
+ }
2407
+
2408
+ .fa-stack-exchange:before {
2409
+ content: "\f18d";
2410
+ }
2411
+
2412
+ .fa-arrow-circle-o-right:before {
2413
+ content: "\f18e";
2414
+ }
2415
+
2416
+ .fa-arrow-circle-o-left:before {
2417
+ content: "\f190";
2418
+ }
2419
+
2420
+ .fa-toggle-left:before,
2421
+ .fa-caret-square-o-left:before {
2422
+ content: "\f191";
2423
+ }
2424
+
2425
+ .fa-dot-circle-o:before {
2426
+ content: "\f192";
2427
+ }
2428
+
2429
+ .fa-wheelchair:before {
2430
+ content: "\f193";
2431
+ }
2432
+
2433
+ .fa-vimeo-square:before {
2434
+ content: "\f194";
2435
+ }
2436
+
2437
+ .fa-turkish-lira:before,
2438
+ .fa-try:before {
2439
+ content: "\f195";
2440
+ }
2441
+
2442
+ .fa-plus-square-o:before {
2443
+ content: "\f196";
2444
+ }
2445
+
2446
+ .fa-space-shuttle:before {
2447
+ content: "\f197";
2448
+ }
2449
+
2450
+ .fa-slack:before {
2451
+ content: "\f198";
2452
+ }
2453
+
2454
+ .fa-envelope-square:before {
2455
+ content: "\f199";
2456
+ }
2457
+
2458
+ .fa-wordpress:before {
2459
+ content: "\f19a";
2460
+ }
2461
+
2462
+ .fa-openid:before {
2463
+ content: "\f19b";
2464
+ }
2465
+
2466
+ .fa-institution:before,
2467
+ .fa-bank:before,
2468
+ .fa-university:before {
2469
+ content: "\f19c";
2470
+ }
2471
+
2472
+ .fa-mortar-board:before,
2473
+ .fa-graduation-cap:before {
2474
+ content: "\f19d";
2475
+ }
2476
+
2477
+ .fa-yahoo:before {
2478
+ content: "\f19e";
2479
+ }
2480
+
2481
+ .fa-google:before {
2482
+ content: "\f1a0";
2483
+ }
2484
+
2485
+ .fa-reddit:before {
2486
+ content: "\f1a1";
2487
+ }
2488
+
2489
+ .fa-reddit-square:before {
2490
+ content: "\f1a2";
2491
+ }
2492
+
2493
+ .fa-stumbleupon-circle:before {
2494
+ content: "\f1a3";
2495
+ }
2496
+
2497
+ .fa-stumbleupon:before {
2498
+ content: "\f1a4";
2499
+ }
2500
+
2501
+ .fa-delicious:before {
2502
+ content: "\f1a5";
2503
+ }
2504
+
2505
+ .fa-digg:before {
2506
+ content: "\f1a6";
2507
+ }
2508
+
2509
+ .fa-pied-piper:before {
2510
+ content: "\f1a7";
2511
+ }
2512
+
2513
+ .fa-pied-piper-alt:before {
2514
+ content: "\f1a8";
2515
+ }
2516
+
2517
+ .fa-drupal:before {
2518
+ content: "\f1a9";
2519
+ }
2520
+
2521
+ .fa-joomla:before {
2522
+ content: "\f1aa";
2523
+ }
2524
+
2525
+ .fa-language:before {
2526
+ content: "\f1ab";
2527
+ }
2528
+
2529
+ .fa-fax:before {
2530
+ content: "\f1ac";
2531
+ }
2532
+
2533
+ .fa-building:before {
2534
+ content: "\f1ad";
2535
+ }
2536
+
2537
+ .fa-child:before {
2538
+ content: "\f1ae";
2539
+ }
2540
+
2541
+ .fa-paw:before {
2542
+ content: "\f1b0";
2543
+ }
2544
+
2545
+ .fa-spoon:before {
2546
+ content: "\f1b1";
2547
+ }
2548
+
2549
+ .fa-cube:before {
2550
+ content: "\f1b2";
2551
+ }
2552
+
2553
+ .fa-cubes:before {
2554
+ content: "\f1b3";
2555
+ }
2556
+
2557
+ .fa-behance:before {
2558
+ content: "\f1b4";
2559
+ }
2560
+
2561
+ .fa-behance-square:before {
2562
+ content: "\f1b5";
2563
+ }
2564
+
2565
+ .fa-steam:before {
2566
+ content: "\f1b6";
2567
+ }
2568
+
2569
+ .fa-steam-square:before {
2570
+ content: "\f1b7";
2571
+ }
2572
+
2573
+ .fa-recycle:before {
2574
+ content: "\f1b8";
2575
+ }
2576
+
2577
+ .fa-automobile:before,
2578
+ .fa-car:before {
2579
+ content: "\f1b9";
2580
+ }
2581
+
2582
+ .fa-cab:before,
2583
+ .fa-taxi:before {
2584
+ content: "\f1ba";
2585
+ }
2586
+
2587
+ .fa-tree:before {
2588
+ content: "\f1bb";
2589
+ }
2590
+
2591
+ .fa-spotify:before {
2592
+ content: "\f1bc";
2593
+ }
2594
+
2595
+ .fa-deviantart:before {
2596
+ content: "\f1bd";
2597
+ }
2598
+
2599
+ .fa-soundcloud:before {
2600
+ content: "\f1be";
2601
+ }
2602
+
2603
+ .fa-database:before {
2604
+ content: "\f1c0";
2605
+ }
2606
+
2607
+ .fa-file-pdf-o:before {
2608
+ content: "\f1c1";
2609
+ }
2610
+
2611
+ .fa-file-word-o:before {
2612
+ content: "\f1c2";
2613
+ }
2614
+
2615
+ .fa-file-excel-o:before {
2616
+ content: "\f1c3";
2617
+ }
2618
+
2619
+ .fa-file-powerpoint-o:before {
2620
+ content: "\f1c4";
2621
+ }
2622
+
2623
+ .fa-file-photo-o:before,
2624
+ .fa-file-picture-o:before,
2625
+ .fa-file-image-o:before {
2626
+ content: "\f1c5";
2627
+ }
2628
+
2629
+ .fa-file-zip-o:before,
2630
+ .fa-file-archive-o:before {
2631
+ content: "\f1c6";
2632
+ }
2633
+
2634
+ .fa-file-sound-o:before,
2635
+ .fa-file-audio-o:before {
2636
+ content: "\f1c7";
2637
+ }
2638
+
2639
+ .fa-file-movie-o:before,
2640
+ .fa-file-video-o:before {
2641
+ content: "\f1c8";
2642
+ }
2643
+
2644
+ .fa-file-code-o:before {
2645
+ content: "\f1c9";
2646
+ }
2647
+
2648
+ .fa-vine:before {
2649
+ content: "\f1ca";
2650
+ }
2651
+
2652
+ .fa-codepen:before {
2653
+ content: "\f1cb";
2654
+ }
2655
+
2656
+ .fa-jsfiddle:before {
2657
+ content: "\f1cc";
2658
+ }
2659
+
2660
+ .fa-life-bouy:before,
2661
+ .fa-life-buoy:before,
2662
+ .fa-life-saver:before,
2663
+ .fa-support:before,
2664
+ .fa-life-ring:before {
2665
+ content: "\f1cd";
2666
+ }
2667
+
2668
+ .fa-circle-o-notch:before {
2669
+ content: "\f1ce";
2670
+ }
2671
+
2672
+ .fa-ra:before,
2673
+ .fa-rebel:before {
2674
+ content: "\f1d0";
2675
+ }
2676
+
2677
+ .fa-ge:before,
2678
+ .fa-empire:before {
2679
+ content: "\f1d1";
2680
+ }
2681
+
2682
+ .fa-git-square:before {
2683
+ content: "\f1d2";
2684
+ }
2685
+
2686
+ .fa-git:before {
2687
+ content: "\f1d3";
2688
+ }
2689
+
2690
+ .fa-hacker-news:before {
2691
+ content: "\f1d4";
2692
+ }
2693
+
2694
+ .fa-tencent-weibo:before {
2695
+ content: "\f1d5";
2696
+ }
2697
+
2698
+ .fa-qq:before {
2699
+ content: "\f1d6";
2700
+ }
2701
+
2702
+ .fa-wechat:before,
2703
+ .fa-weixin:before {
2704
+ content: "\f1d7";
2705
+ }
2706
+
2707
+ .fa-send:before,
2708
+ .fa-paper-plane:before {
2709
+ content: "\f1d8";
2710
+ }
2711
+
2712
+ .fa-send-o:before,
2713
+ .fa-paper-plane-o:before {
2714
+ content: "\f1d9";
2715
+ }
2716
+
2717
+ .fa-history:before {
2718
+ content: "\f1da";
2719
+ }
2720
+
2721
+ .fa-genderless:before,
2722
+ .fa-circle-thin:before {
2723
+ content: "\f1db";
2724
+ }
2725
+
2726
+ .fa-header:before {
2727
+ content: "\f1dc";
2728
+ }
2729
+
2730
+ .fa-paragraph:before {
2731
+ content: "\f1dd";
2732
+ }
2733
+
2734
+ .fa-sliders:before {
2735
+ content: "\f1de";
2736
+ }
2737
+
2738
+ .fa-share-alt:before {
2739
+ content: "\f1e0";
2740
+ }
2741
+
2742
+ .fa-share-alt-square:before {
2743
+ content: "\f1e1";
2744
+ }
2745
+
2746
+ .fa-bomb:before {
2747
+ content: "\f1e2";
2748
+ }
2749
+
2750
+ .fa-soccer-ball-o:before,
2751
+ .fa-futbol-o:before {
2752
+ content: "\f1e3";
2753
+ }
2754
+
2755
+ .fa-tty:before {
2756
+ content: "\f1e4";
2757
+ }
2758
+
2759
+ .fa-binoculars:before {
2760
+ content: "\f1e5";
2761
+ }
2762
+
2763
+ .fa-plug:before {
2764
+ content: "\f1e6";
2765
+ }
2766
+
2767
+ .fa-slideshare:before {
2768
+ content: "\f1e7";
2769
+ }
2770
+
2771
+ .fa-twitch:before {
2772
+ content: "\f1e8";
2773
+ }
2774
+
2775
+ .fa-yelp:before {
2776
+ content: "\f1e9";
2777
+ }
2778
+
2779
+ .fa-newspaper-o:before {
2780
+ content: "\f1ea";
2781
+ }
2782
+
2783
+ .fa-wifi:before {
2784
+ content: "\f1eb";
2785
+ }
2786
+
2787
+ .fa-calculator:before {
2788
+ content: "\f1ec";
2789
+ }
2790
+
2791
+ .fa-paypal:before {
2792
+ content: "\f1ed";
2793
+ }
2794
+
2795
+ .fa-google-wallet:before {
2796
+ content: "\f1ee";
2797
+ }
2798
+
2799
+ .fa-cc-visa:before {
2800
+ content: "\f1f0";
2801
+ }
2802
+
2803
+ .fa-cc-mastercard:before {
2804
+ content: "\f1f1";
2805
+ }
2806
+
2807
+ .fa-cc-discover:before {
2808
+ content: "\f1f2";
2809
+ }
2810
+
2811
+ .fa-cc-amex:before {
2812
+ content: "\f1f3";
2813
+ }
2814
+
2815
+ .fa-cc-paypal:before {
2816
+ content: "\f1f4";
2817
+ }
2818
+
2819
+ .fa-cc-stripe:before {
2820
+ content: "\f1f5";
2821
+ }
2822
+
2823
+ .fa-bell-slash:before {
2824
+ content: "\f1f6";
2825
+ }
2826
+
2827
+ .fa-bell-slash-o:before {
2828
+ content: "\f1f7";
2829
+ }
2830
+
2831
+ .fa-trash:before {
2832
+ content: "\f1f8";
2833
+ }
2834
+
2835
+ .fa-copyright:before {
2836
+ content: "\f1f9";
2837
+ }
2838
+
2839
+ .fa-at:before {
2840
+ content: "\f1fa";
2841
+ }
2842
+
2843
+ .fa-eyedropper:before {
2844
+ content: "\f1fb";
2845
+ }
2846
+
2847
+ .fa-paint-brush:before {
2848
+ content: "\f1fc";
2849
+ }
2850
+
2851
+ .fa-birthday-cake:before {
2852
+ content: "\f1fd";
2853
+ }
2854
+
2855
+ .fa-area-chart:before {
2856
+ content: "\f1fe";
2857
+ }
2858
+
2859
+ .fa-pie-chart:before {
2860
+ content: "\f200";
2861
+ }
2862
+
2863
+ .fa-line-chart:before {
2864
+ content: "\f201";
2865
+ }
2866
+
2867
+ .fa-lastfm:before {
2868
+ content: "\f202";
2869
+ }
2870
+
2871
+ .fa-lastfm-square:before {
2872
+ content: "\f203";
2873
+ }
2874
+
2875
+ .fa-toggle-off:before {
2876
+ content: "\f204";
2877
+ }
2878
+
2879
+ .fa-toggle-on:before {
2880
+ content: "\f205";
2881
+ }
2882
+
2883
+ .fa-bicycle:before {
2884
+ content: "\f206";
2885
+ }
2886
+
2887
+ .fa-bus:before {
2888
+ content: "\f207";
2889
+ }
2890
+
2891
+ .fa-ioxhost:before {
2892
+ content: "\f208";
2893
+ }
2894
+
2895
+ .fa-angellist:before {
2896
+ content: "\f209";
2897
+ }
2898
+
2899
+ .fa-cc:before {
2900
+ content: "\f20a";
2901
+ }
2902
+
2903
+ .fa-shekel:before,
2904
+ .fa-sheqel:before,
2905
+ .fa-ils:before {
2906
+ content: "\f20b";
2907
+ }
2908
+
2909
+ .fa-meanpath:before {
2910
+ content: "\f20c";
2911
+ }
2912
+
2913
+ .fa-buysellads:before {
2914
+ content: "\f20d";
2915
+ }
2916
+
2917
+ .fa-connectdevelop:before {
2918
+ content: "\f20e";
2919
+ }
2920
+
2921
+ .fa-dashcube:before {
2922
+ content: "\f210";
2923
+ }
2924
+
2925
+ .fa-forumbee:before {
2926
+ content: "\f211";
2927
+ }
2928
+
2929
+ .fa-leanpub:before {
2930
+ content: "\f212";
2931
+ }
2932
+
2933
+ .fa-sellsy:before {
2934
+ content: "\f213";
2935
+ }
2936
+
2937
+ .fa-shirtsinbulk:before {
2938
+ content: "\f214";
2939
+ }
2940
+
2941
+ .fa-simplybuilt:before {
2942
+ content: "\f215";
2943
+ }
2944
+
2945
+ .fa-skyatlas:before {
2946
+ content: "\f216";
2947
+ }
2948
+
2949
+ .fa-cart-plus:before {
2950
+ content: "\f217";
2951
+ }
2952
+
2953
+ .fa-cart-arrow-down:before {
2954
+ content: "\f218";
2955
+ }
2956
+
2957
+ .fa-diamond:before {
2958
+ content: "\f219";
2959
+ }
2960
+
2961
+ .fa-ship:before {
2962
+ content: "\f21a";
2963
+ }
2964
+
2965
+ .fa-user-secret:before {
2966
+ content: "\f21b";
2967
+ }
2968
+
2969
+ .fa-motorcycle:before {
2970
+ content: "\f21c";
2971
+ }
2972
+
2973
+ .fa-street-view:before {
2974
+ content: "\f21d";
2975
+ }
2976
+
2977
+ .fa-heartbeat:before {
2978
+ content: "\f21e";
2979
+ }
2980
+
2981
+ .fa-venus:before {
2982
+ content: "\f221";
2983
+ }
2984
+
2985
+ .fa-mars:before {
2986
+ content: "\f222";
2987
+ }
2988
+
2989
+ .fa-mercury:before {
2990
+ content: "\f223";
2991
+ }
2992
+
2993
+ .fa-transgender:before {
2994
+ content: "\f224";
2995
+ }
2996
+
2997
+ .fa-transgender-alt:before {
2998
+ content: "\f225";
2999
+ }
3000
+
3001
+ .fa-venus-double:before {
3002
+ content: "\f226";
3003
+ }
3004
+
3005
+ .fa-mars-double:before {
3006
+ content: "\f227";
3007
+ }
3008
+
3009
+ .fa-venus-mars:before {
3010
+ content: "\f228";
3011
+ }
3012
+
3013
+ .fa-mars-stroke:before {
3014
+ content: "\f229";
3015
+ }
3016
+
3017
+ .fa-mars-stroke-v:before {
3018
+ content: "\f22a";
3019
+ }
3020
+
3021
+ .fa-mars-stroke-h:before {
3022
+ content: "\f22b";
3023
+ }
3024
+
3025
+ .fa-neuter:before {
3026
+ content: "\f22c";
3027
+ }
3028
+
3029
+ .fa-facebook-official:before {
3030
+ content: "\f230";
3031
+ }
3032
+
3033
+ .fa-pinterest-p:before {
3034
+ content: "\f231";
3035
+ }
3036
+
3037
+ .fa-whatsapp:before {
3038
+ content: "\f232";
3039
+ }
3040
+
3041
+ .fa-server:before {
3042
+ content: "\f233";
3043
+ }
3044
+
3045
+ .fa-user-plus:before {
3046
+ content: "\f234";
3047
+ }
3048
+
3049
+ .fa-user-times:before {
3050
+ content: "\f235";
3051
+ }
3052
+
3053
+ .fa-hotel:before,
3054
+ .fa-bed:before {
3055
+ content: "\f236";
3056
+ }
3057
+
3058
+ .fa-viacoin:before {
3059
+ content: "\f237";
3060
+ }
3061
+
3062
+ .fa-train:before {
3063
+ content: "\f238";
3064
+ }
3065
+
3066
+ .fa-subway:before {
3067
+ content: "\f239";
3068
+ }
3069
+
3070
+ .fa-medium:before {
3071
+ content: "\f23a";
3072
+ }
3073
+
3074
+ /*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */
3075
+ @font-face {
3076
+ font-family: 'editormd-logo';
3077
+ src: url("editormd-logo.eot?-5y8q6h");
3078
+ src: url("editormd-logo.eot?#iefix-5y8q6h") format("embedded-opentype"), url("editormd-logo.woff?-5y8q6h") format("woff"), url("editormd-logo.ttf?-5y8q6h") format("truetype"), url("editormd-logo.svg?-5y8q6h#icomoon") format("svg");
3079
+ font-weight: normal;
3080
+ font-style: normal;
3081
+ }
3082
+ .editormd-logo,
3083
+ .editormd-logo-1x,
3084
+ .editormd-logo-2x,
3085
+ .editormd-logo-3x,
3086
+ .editormd-logo-4x,
3087
+ .editormd-logo-5x,
3088
+ .editormd-logo-6x,
3089
+ .editormd-logo-7x,
3090
+ .editormd-logo-8x {
3091
+ font-family: 'editormd-logo';
3092
+ speak: none;
3093
+ font-style: normal;
3094
+ font-weight: normal;
3095
+ font-variant: normal;
3096
+ text-transform: none;
3097
+ font-size: inherit;
3098
+ line-height: 1;
3099
+ display: inline-block;
3100
+ text-rendering: auto;
3101
+ vertical-align: inherit;
3102
+ -webkit-font-smoothing: antialiased;
3103
+ -moz-osx-font-smoothing: grayscale;
3104
+ }
3105
+ .editormd-logo:before,
3106
+ .editormd-logo-1x:before,
3107
+ .editormd-logo-2x:before,
3108
+ .editormd-logo-3x:before,
3109
+ .editormd-logo-4x:before,
3110
+ .editormd-logo-5x:before,
3111
+ .editormd-logo-6x:before,
3112
+ .editormd-logo-7x:before,
3113
+ .editormd-logo-8x:before {
3114
+ content: "\e1987";
3115
+ /*
3116
+ HTML Entity &#xe1987;
3117
+ example: <span class="editormd-logo">&#xe1987;</span>
3118
+ */
3119
+ }
3120
+
3121
+ .editormd-logo-1x {
3122
+ font-size: 1em;
3123
+ }
3124
+
3125
+ .editormd-logo-lg {
3126
+ font-size: 1.2em;
3127
+ }
3128
+
3129
+ .editormd-logo-2x {
3130
+ font-size: 2em;
3131
+ }
3132
+
3133
+ .editormd-logo-3x {
3134
+ font-size: 3em;
3135
+ }
3136
+
3137
+ .editormd-logo-4x {
3138
+ font-size: 4em;
3139
+ }
3140
+
3141
+ .editormd-logo-5x {
3142
+ font-size: 5em;
3143
+ }
3144
+
3145
+ .editormd-logo-6x {
3146
+ font-size: 6em;
3147
+ }
3148
+
3149
+ .editormd-logo-7x {
3150
+ font-size: 7em;
3151
+ }
3152
+
3153
+ .editormd-logo-8x {
3154
+ font-size: 8em;
3155
+ }
3156
+
3157
+ .editormd-logo-color {
3158
+ color: #2196F3;
3159
+ }
3160
+
3161
+ /*! github-markdown-css | The MIT License (MIT) | Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) | https://github.com/sindresorhus/github-markdown-css */
3162
+ @font-face {
3163
+ font-family: octicons-anchor;
3164
+ src: url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAYcAA0AAAAACjQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABwAAAAca8vGTk9TLzIAAAFMAAAARAAAAFZG1VHVY21hcAAAAZAAAAA+AAABQgAP9AdjdnQgAAAB0AAAAAQAAAAEACICiGdhc3AAAAHUAAAACAAAAAj//wADZ2x5ZgAAAdwAAADRAAABEKyikaNoZWFkAAACsAAAAC0AAAA2AtXoA2hoZWEAAALgAAAAHAAAACQHngNFaG10eAAAAvwAAAAQAAAAEAwAACJsb2NhAAADDAAAAAoAAAAKALIAVG1heHAAAAMYAAAAHwAAACABEAB2bmFtZQAAAzgAAALBAAAFu3I9x/Nwb3N0AAAF/AAAAB0AAAAvaoFvbwAAAAEAAAAAzBdyYwAAAADP2IQvAAAAAM/bz7t4nGNgZGFgnMDAysDB1Ml0hoGBoR9CM75mMGLkYGBgYmBlZsAKAtJcUxgcPsR8iGF2+O/AEMPsznAYKMwIkgMA5REMOXicY2BgYGaAYBkGRgYQsAHyGMF8FgYFIM0ChED+h5j//yEk/3KoSgZGNgYYk4GRCUgwMaACRoZhDwCs7QgGAAAAIgKIAAAAAf//AAJ4nHWMMQrCQBBF/0zWrCCIKUQsTDCL2EXMohYGSSmorScInsRGL2DOYJe0Ntp7BK+gJ1BxF1stZvjz/v8DRghQzEc4kIgKwiAppcA9LtzKLSkdNhKFY3HF4lK69ExKslx7Xa+vPRVS43G98vG1DnkDMIBUgFN0MDXflU8tbaZOUkXUH0+U27RoRpOIyCKjbMCVejwypzJJG4jIwb43rfl6wbwanocrJm9XFYfskuVC5K/TPyczNU7b84CXcbxks1Un6H6tLH9vf2LRnn8Ax7A5WQAAAHicY2BkYGAA4teL1+yI57f5ysDNwgAC529f0kOmWRiYVgEpDgYmEA8AUzEKsQAAAHicY2BkYGB2+O/AEMPCAAJAkpEBFbAAADgKAe0EAAAiAAAAAAQAAAAEAAAAAAAAKgAqACoAiAAAeJxjYGRgYGBhsGFgYgABEMkFhAwM/xn0QAIAD6YBhwB4nI1Ty07cMBS9QwKlQapQW3VXySvEqDCZGbGaHULiIQ1FKgjWMxknMfLEke2A+IJu+wntrt/QbVf9gG75jK577Lg8K1qQPCfnnnt8fX1NRC/pmjrk/zprC+8D7tBy9DHgBXoWfQ44Av8t4Bj4Z8CLtBL9CniJluPXASf0Lm4CXqFX8Q84dOLnMB17N4c7tBo1AS/Qi+hTwBH4rwHHwN8DXqQ30XXAS7QaLwSc0Gn8NuAVWou/gFmnjLrEaEh9GmDdDGgL3B4JsrRPDU2hTOiMSuJUIdKQQayiAth69r6akSSFqIJuA19TrzCIaY8sIoxyrNIrL//pw7A2iMygkX5vDj+G+kuoLdX4GlGK/8Lnlz6/h9MpmoO9rafrz7ILXEHHaAx95s9lsI7AHNMBWEZHULnfAXwG9/ZqdzLI08iuwRloXE8kfhXYAvE23+23DU3t626rbs8/8adv+9DWknsHp3E17oCf+Z48rvEQNZ78paYM38qfk3v/u3l3u3GXN2Dmvmvpf1Srwk3pB/VSsp512bA/GG5i2WJ7wu430yQ5K3nFGiOqgtmSB5pJVSizwaacmUZzZhXLlZTq8qGGFY2YcSkqbth6aW1tRmlaCFs2016m5qn36SbJrqosG4uMV4aP2PHBmB3tjtmgN2izkGQyLWprekbIntJFing32a5rKWCN/SdSoga45EJykyQ7asZvHQ8PTm6cslIpwyeyjbVltNikc2HTR7YKh9LBl9DADC0U/jLcBZDKrMhUBfQBvXRzLtFtjU9eNHKin0x5InTqb8lNpfKv1s1xHzTXRqgKzek/mb7nB8RZTCDhGEX3kK/8Q75AmUM/eLkfA+0Hi908Kx4eNsMgudg5GLdRD7a84npi+YxNr5i5KIbW5izXas7cHXIMAau1OueZhfj+cOcP3P8MNIWLyYOBuxL6DRylJ4cAAAB4nGNgYoAALjDJyIAOWMCiTIxMLDmZedkABtIBygAAAA==) format("woff");
3165
+ }
3166
+ .markdown-body {
3167
+ -ms-text-size-adjust: 100%;
3168
+ -webkit-text-size-adjust: 100%;
3169
+ color: #333;
3170
+ overflow: hidden;
3171
+ font-family: "Microsoft YaHei", Helvetica, "Meiryo UI", "Malgun Gothic", "Segoe UI", "Trebuchet MS", "Monaco", monospace, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
3172
+ font-size: 16px;
3173
+ line-height: 1.6;
3174
+ word-wrap: break-word;
3175
+ }
3176
+
3177
+ .markdown-body a {
3178
+ background: transparent;
3179
+ }
3180
+
3181
+ .markdown-body a:active,
3182
+ .markdown-body a:hover {
3183
+ outline: 0;
3184
+ }
3185
+
3186
+ .markdown-body strong {
3187
+ font-weight: bold;
3188
+ }
3189
+
3190
+ .markdown-body h1 {
3191
+ font-size: 2em;
3192
+ margin: 0.67em 0;
3193
+ }
3194
+
3195
+ .markdown-body img {
3196
+ border: 0;
3197
+ }
3198
+
3199
+ .markdown-body hr {
3200
+ -moz-box-sizing: content-box;
3201
+ box-sizing: content-box;
3202
+ height: 0;
3203
+ }
3204
+
3205
+ .markdown-body pre {
3206
+ overflow: auto;
3207
+ }
3208
+
3209
+ .markdown-body code,
3210
+ .markdown-body kbd,
3211
+ .markdown-body pre {
3212
+ font-family: "Meiryo UI", "YaHei Consolas Hybrid", Consolas, "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, monospace, monospace;
3213
+ font-size: 1em;
3214
+ }
3215
+
3216
+ .markdown-body input {
3217
+ color: inherit;
3218
+ font: inherit;
3219
+ margin: 0;
3220
+ }
3221
+
3222
+ .markdown-body html input[disabled] {
3223
+ cursor: default;
3224
+ }
3225
+
3226
+ .markdown-body input {
3227
+ line-height: normal;
3228
+ }
3229
+
3230
+ .markdown-body input[type="checkbox"] {
3231
+ -moz-box-sizing: border-box;
3232
+ box-sizing: border-box;
3233
+ padding: 0;
3234
+ }
3235
+
3236
+ .markdown-body table {
3237
+ border-collapse: collapse;
3238
+ border-spacing: 0;
3239
+ }
3240
+
3241
+ .markdown-body td,
3242
+ .markdown-body th {
3243
+ padding: 0;
3244
+ }
3245
+
3246
+ .markdown-body * {
3247
+ -moz-box-sizing: border-box;
3248
+ box-sizing: border-box;
3249
+ }
3250
+
3251
+ .markdown-body input {
3252
+ font: 13px/1.4 Helvetica, arial, freesans, clean, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
3253
+ }
3254
+
3255
+ .markdown-body a {
3256
+ color: #4183c4;
3257
+ text-decoration: none;
3258
+ }
3259
+
3260
+ .markdown-body a:hover,
3261
+ .markdown-body a:active {
3262
+ text-decoration: underline;
3263
+ }
3264
+
3265
+ .markdown-body hr {
3266
+ height: 0;
3267
+ margin: 15px 0;
3268
+ overflow: hidden;
3269
+ background: transparent;
3270
+ border: 0;
3271
+ border-bottom: 1px solid #ddd;
3272
+ }
3273
+
3274
+ .markdown-body hr:before {
3275
+ display: table;
3276
+ content: "";
3277
+ }
3278
+
3279
+ .markdown-body hr:after {
3280
+ display: table;
3281
+ clear: both;
3282
+ content: "";
3283
+ }
3284
+
3285
+ .markdown-body h1,
3286
+ .markdown-body h2,
3287
+ .markdown-body h3,
3288
+ .markdown-body h4,
3289
+ .markdown-body h5,
3290
+ .markdown-body h6 {
3291
+ margin-top: 15px;
3292
+ margin-bottom: 15px;
3293
+ line-height: 1.1;
3294
+ }
3295
+
3296
+ .markdown-body h1 {
3297
+ font-size: 30px;
3298
+ }
3299
+
3300
+ .markdown-body h2 {
3301
+ font-size: 21px;
3302
+ }
3303
+
3304
+ .markdown-body h3 {
3305
+ font-size: 16px;
3306
+ }
3307
+
3308
+ .markdown-body h4 {
3309
+ font-size: 14px;
3310
+ }
3311
+
3312
+ .markdown-body h5 {
3313
+ font-size: 12px;
3314
+ }
3315
+
3316
+ .markdown-body h6 {
3317
+ font-size: 11px;
3318
+ }
3319
+
3320
+ .markdown-body blockquote {
3321
+ margin: 0;
3322
+ }
3323
+
3324
+ .markdown-body ul,
3325
+ .markdown-body ol {
3326
+ padding: 0;
3327
+ margin-top: 0;
3328
+ margin-bottom: 0;
3329
+ }
3330
+
3331
+ .markdown-body ol ol,
3332
+ .markdown-body ul ol {
3333
+ list-style-type: lower-roman;
3334
+ }
3335
+
3336
+ .markdown-body ul ul ol,
3337
+ .markdown-body ul ol ol,
3338
+ .markdown-body ol ul ol,
3339
+ .markdown-body ol ol ol {
3340
+ list-style-type: lower-alpha;
3341
+ }
3342
+
3343
+ .markdown-body dd {
3344
+ margin-left: 0;
3345
+ }
3346
+
3347
+ .markdown-body code {
3348
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
3349
+ font-size: 12px;
3350
+ }
3351
+
3352
+ .markdown-body pre {
3353
+ margin-top: 0;
3354
+ margin-bottom: 0;
3355
+ font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
3356
+ }
3357
+
3358
+ .markdown-body .octicon {
3359
+ font: normal normal 16px octicons-anchor;
3360
+ line-height: 1;
3361
+ display: inline-block;
3362
+ text-decoration: none;
3363
+ -webkit-font-smoothing: antialiased;
3364
+ -moz-osx-font-smoothing: grayscale;
3365
+ -webkit-user-select: none;
3366
+ -moz-user-select: none;
3367
+ -ms-user-select: none;
3368
+ user-select: none;
3369
+ }
3370
+
3371
+ .markdown-body .octicon-link:before {
3372
+ content: '\f05c';
3373
+ }
3374
+
3375
+ .markdown-body > *:first-child {
3376
+ margin-top: 0 !important;
3377
+ }
3378
+
3379
+ .markdown-body > *:last-child {
3380
+ margin-bottom: 0 !important;
3381
+ }
3382
+
3383
+ .markdown-body .anchor {
3384
+ position: absolute;
3385
+ top: 0;
3386
+ left: 0;
3387
+ display: block;
3388
+ padding-right: 6px;
3389
+ padding-left: 30px;
3390
+ margin-left: -30px;
3391
+ }
3392
+
3393
+ .markdown-body .anchor:focus {
3394
+ outline: none;
3395
+ }
3396
+
3397
+ .markdown-body h1,
3398
+ .markdown-body h2,
3399
+ .markdown-body h3,
3400
+ .markdown-body h4,
3401
+ .markdown-body h5,
3402
+ .markdown-body h6 {
3403
+ position: relative;
3404
+ margin-top: 1em;
3405
+ margin-bottom: 16px;
3406
+ font-weight: bold;
3407
+ line-height: 1.4;
3408
+ }
3409
+
3410
+ .markdown-body h1 .octicon-link,
3411
+ .markdown-body h2 .octicon-link,
3412
+ .markdown-body h3 .octicon-link,
3413
+ .markdown-body h4 .octicon-link,
3414
+ .markdown-body h5 .octicon-link,
3415
+ .markdown-body h6 .octicon-link {
3416
+ display: none;
3417
+ color: #000;
3418
+ vertical-align: middle;
3419
+ }
3420
+
3421
+ .markdown-body h1:hover .anchor,
3422
+ .markdown-body h2:hover .anchor,
3423
+ .markdown-body h3:hover .anchor,
3424
+ .markdown-body h4:hover .anchor,
3425
+ .markdown-body h5:hover .anchor,
3426
+ .markdown-body h6:hover .anchor {
3427
+ padding-left: 8px;
3428
+ margin-left: -30px;
3429
+ text-decoration: none;
3430
+ }
3431
+
3432
+ .markdown-body h1:hover .anchor .octicon-link,
3433
+ .markdown-body h2:hover .anchor .octicon-link,
3434
+ .markdown-body h3:hover .anchor .octicon-link,
3435
+ .markdown-body h4:hover .anchor .octicon-link,
3436
+ .markdown-body h5:hover .anchor .octicon-link,
3437
+ .markdown-body h6:hover .anchor .octicon-link {
3438
+ display: inline-block;
3439
+ }
3440
+
3441
+ .markdown-body h1 {
3442
+ padding-bottom: 0.3em;
3443
+ font-size: 2.25em;
3444
+ line-height: 1.2;
3445
+ border-bottom: 1px solid #eee;
3446
+ }
3447
+
3448
+ .markdown-body h1 .anchor {
3449
+ line-height: 1;
3450
+ }
3451
+
3452
+ .markdown-body h2 {
3453
+ padding-bottom: 0.3em;
3454
+ font-size: 1.75em;
3455
+ line-height: 1.225;
3456
+ border-bottom: 1px solid #eee;
3457
+ }
3458
+
3459
+ .markdown-body h2 .anchor {
3460
+ line-height: 1;
3461
+ }
3462
+
3463
+ .markdown-body h3 {
3464
+ font-size: 1.5em;
3465
+ line-height: 1.43;
3466
+ }
3467
+
3468
+ .markdown-body h3 .anchor {
3469
+ line-height: 1.2;
3470
+ }
3471
+
3472
+ .markdown-body h4 {
3473
+ font-size: 1.25em;
3474
+ }
3475
+
3476
+ .markdown-body h4 .anchor {
3477
+ line-height: 1.2;
3478
+ }
3479
+
3480
+ .markdown-body h5 {
3481
+ font-size: 1em;
3482
+ }
3483
+
3484
+ .markdown-body h5 .anchor {
3485
+ line-height: 1.1;
3486
+ }
3487
+
3488
+ .markdown-body h6 {
3489
+ font-size: 1em;
3490
+ color: #777;
3491
+ }
3492
+
3493
+ .markdown-body h6 .anchor {
3494
+ line-height: 1.1;
3495
+ }
3496
+
3497
+ .markdown-body p,
3498
+ .markdown-body blockquote,
3499
+ .markdown-body ul,
3500
+ .markdown-body ol,
3501
+ .markdown-body dl,
3502
+ .markdown-body table,
3503
+ .markdown-body pre {
3504
+ margin-top: 0;
3505
+ margin-bottom: 16px;
3506
+ }
3507
+
3508
+ /*
3509
+ .markdown-body hr {
3510
+ height: 4px;
3511
+ padding: 0;
3512
+ margin: 16px 0;
3513
+ background-color: #e7e7e7;
3514
+ border: 0 none;
3515
+ }*/
3516
+ .markdown-body ul,
3517
+ .markdown-body ol {
3518
+ padding-left: 2em;
3519
+ }
3520
+
3521
+ .markdown-body ul ul,
3522
+ .markdown-body ul ol,
3523
+ .markdown-body ol ol,
3524
+ .markdown-body ol ul {
3525
+ margin-top: 0;
3526
+ margin-bottom: 0;
3527
+ }
3528
+
3529
+ .markdown-body li > p {
3530
+ margin-top: 16px;
3531
+ }
3532
+
3533
+ .markdown-body dl {
3534
+ padding: 0;
3535
+ }
3536
+
3537
+ .markdown-body dl dt {
3538
+ padding: 0;
3539
+ margin-top: 16px;
3540
+ font-size: 1em;
3541
+ font-style: italic;
3542
+ font-weight: bold;
3543
+ }
3544
+
3545
+ .markdown-body dl dd {
3546
+ padding: 0 16px;
3547
+ margin-bottom: 16px;
3548
+ }
3549
+
3550
+ .markdown-body blockquote {
3551
+ padding: 0 15px;
3552
+ color: #777;
3553
+ border-left: 4px solid #ddd;
3554
+ }
3555
+
3556
+ .markdown-body blockquote > :first-child {
3557
+ margin-top: 0;
3558
+ }
3559
+
3560
+ .markdown-body blockquote > :last-child {
3561
+ margin-bottom: 0;
3562
+ }
3563
+
3564
+ .markdown-body table {
3565
+ display: block;
3566
+ width: 100%;
3567
+ overflow: auto;
3568
+ word-break: normal;
3569
+ word-break: keep-all;
3570
+ }
3571
+
3572
+ .markdown-body table th {
3573
+ font-weight: bold;
3574
+ }
3575
+
3576
+ .markdown-body table th,
3577
+ .markdown-body table td {
3578
+ padding: 6px 13px;
3579
+ border: 1px solid #ddd;
3580
+ }
3581
+
3582
+ .markdown-body table tr {
3583
+ background-color: #fff;
3584
+ border-top: 1px solid #ccc;
3585
+ }
3586
+
3587
+ .markdown-body table tr:nth-child(2n) {
3588
+ background-color: #f8f8f8;
3589
+ }
3590
+
3591
+ .markdown-body img {
3592
+ max-width: 100%;
3593
+ -moz-box-sizing: border-box;
3594
+ box-sizing: border-box;
3595
+ }
3596
+
3597
+ .markdown-body code {
3598
+ padding: 0;
3599
+ padding-top: 0.2em;
3600
+ padding-bottom: 0.2em;
3601
+ margin: 0;
3602
+ font-size: 85%;
3603
+ background-color: rgba(0, 0, 0, 0.04);
3604
+ border-radius: 3px;
3605
+ }
3606
+
3607
+ .markdown-body code:before,
3608
+ .markdown-body code:after {
3609
+ letter-spacing: -0.2em;
3610
+ content: "\00a0";
3611
+ }
3612
+
3613
+ .markdown-body pre > code {
3614
+ padding: 0;
3615
+ margin: 0;
3616
+ font-size: 100%;
3617
+ word-break: normal;
3618
+ white-space: pre;
3619
+ background: transparent;
3620
+ border: 0;
3621
+ }
3622
+
3623
+ .markdown-body .highlight {
3624
+ margin-bottom: 16px;
3625
+ }
3626
+
3627
+ .markdown-body .highlight pre,
3628
+ .markdown-body pre {
3629
+ padding: 16px;
3630
+ overflow: auto;
3631
+ font-size: 85%;
3632
+ line-height: 1.45;
3633
+ background-color: #f7f7f7;
3634
+ border-radius: 3px;
3635
+ }
3636
+
3637
+ .markdown-body .highlight pre {
3638
+ margin-bottom: 0;
3639
+ word-break: normal;
3640
+ }
3641
+
3642
+ .markdown-body pre {
3643
+ word-wrap: normal;
3644
+ }
3645
+
3646
+ .markdown-body pre code {
3647
+ display: inline;
3648
+ max-width: initial;
3649
+ padding: 0;
3650
+ margin: 0;
3651
+ overflow: initial;
3652
+ line-height: inherit;
3653
+ word-wrap: normal;
3654
+ background-color: transparent;
3655
+ border: 0;
3656
+ }
3657
+
3658
+ .markdown-body pre code:before,
3659
+ .markdown-body pre code:after {
3660
+ content: normal;
3661
+ }
3662
+
3663
+ .markdown-body kbd {
3664
+ display: inline-block;
3665
+ padding: 3px 5px;
3666
+ font-size: 11px;
3667
+ line-height: 10px;
3668
+ color: #555;
3669
+ vertical-align: middle;
3670
+ background-color: #fcfcfc;
3671
+ border: solid 1px #ccc;
3672
+ border-bottom-color: #bbb;
3673
+ border-radius: 3px;
3674
+ box-shadow: inset 0 -1px 0 #bbb;
3675
+ }
3676
+
3677
+ .markdown-body .pl-c {
3678
+ color: #969896;
3679
+ }
3680
+
3681
+ .markdown-body .pl-c1,
3682
+ .markdown-body .pl-mdh,
3683
+ .markdown-body .pl-mm,
3684
+ .markdown-body .pl-mp,
3685
+ .markdown-body .pl-mr,
3686
+ .markdown-body .pl-s1 .pl-v,
3687
+ .markdown-body .pl-s3,
3688
+ .markdown-body .pl-sc,
3689
+ .markdown-body .pl-sv {
3690
+ color: #0086b3;
3691
+ }
3692
+
3693
+ .markdown-body .pl-e,
3694
+ .markdown-body .pl-en {
3695
+ color: #795da3;
3696
+ }
3697
+
3698
+ .markdown-body .pl-s1 .pl-s2,
3699
+ .markdown-body .pl-smi,
3700
+ .markdown-body .pl-smp,
3701
+ .markdown-body .pl-stj,
3702
+ .markdown-body .pl-vo,
3703
+ .markdown-body .pl-vpf {
3704
+ color: #333;
3705
+ }
3706
+
3707
+ .markdown-body .pl-ent {
3708
+ color: #63a35c;
3709
+ }
3710
+
3711
+ .markdown-body .pl-k,
3712
+ .markdown-body .pl-s,
3713
+ .markdown-body .pl-st {
3714
+ color: #a71d5d;
3715
+ }
3716
+
3717
+ .markdown-body .pl-pds,
3718
+ .markdown-body .pl-s1,
3719
+ .markdown-body .pl-s1 .pl-pse .pl-s2,
3720
+ .markdown-body .pl-sr,
3721
+ .markdown-body .pl-sr .pl-cce,
3722
+ .markdown-body .pl-sr .pl-sra,
3723
+ .markdown-body .pl-sr .pl-sre,
3724
+ .markdown-body .pl-src {
3725
+ color: #df5000;
3726
+ }
3727
+
3728
+ .markdown-body .pl-mo,
3729
+ .markdown-body .pl-v {
3730
+ color: #1d3e81;
3731
+ }
3732
+
3733
+ .markdown-body .pl-id {
3734
+ color: #b52a1d;
3735
+ }
3736
+
3737
+ .markdown-body .pl-ii {
3738
+ background-color: #b52a1d;
3739
+ color: #f8f8f8;
3740
+ }
3741
+
3742
+ .markdown-body .pl-sr .pl-cce {
3743
+ color: #63a35c;
3744
+ font-weight: bold;
3745
+ }
3746
+
3747
+ .markdown-body .pl-ml {
3748
+ color: #693a17;
3749
+ }
3750
+
3751
+ .markdown-body .pl-mh,
3752
+ .markdown-body .pl-mh .pl-en,
3753
+ .markdown-body .pl-ms {
3754
+ color: #1d3e81;
3755
+ font-weight: bold;
3756
+ }
3757
+
3758
+ .markdown-body .pl-mq {
3759
+ color: #008080;
3760
+ }
3761
+
3762
+ .markdown-body .pl-mi {
3763
+ color: #333;
3764
+ font-style: italic;
3765
+ }
3766
+
3767
+ .markdown-body .pl-mb {
3768
+ color: #333;
3769
+ font-weight: bold;
3770
+ }
3771
+
3772
+ .markdown-body .pl-md,
3773
+ .markdown-body .pl-mdhf {
3774
+ background-color: #ffecec;
3775
+ color: #bd2c00;
3776
+ }
3777
+
3778
+ .markdown-body .pl-mdht,
3779
+ .markdown-body .pl-mi1 {
3780
+ background-color: #eaffea;
3781
+ color: #55a532;
3782
+ }
3783
+
3784
+ .markdown-body .pl-mdr {
3785
+ color: #795da3;
3786
+ font-weight: bold;
3787
+ }
3788
+
3789
+ .markdown-body kbd {
3790
+ display: inline-block;
3791
+ padding: 3px 5px;
3792
+ font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
3793
+ line-height: 10px;
3794
+ color: #555;
3795
+ vertical-align: middle;
3796
+ background-color: #fcfcfc;
3797
+ border: solid 1px #ccc;
3798
+ border-bottom-color: #bbb;
3799
+ border-radius: 3px;
3800
+ box-shadow: inset 0 -1px 0 #bbb;
3801
+ }
3802
+
3803
+ .markdown-body .task-list-item {
3804
+ list-style-type: none;
3805
+ }
3806
+
3807
+ .markdown-body .task-list-item + .task-list-item {
3808
+ margin-top: 3px;
3809
+ }
3810
+
3811
+ .markdown-body .task-list-item input {
3812
+ float: left;
3813
+ margin: 0.3em 0 0.25em -1.6em;
3814
+ vertical-align: middle;
3815
+ }
3816
+
3817
+ .markdown-body :checked + .radio-label {
3818
+ z-index: 1;
3819
+ position: relative;
3820
+ border-color: #4183c4;
3821
+ }
3822
+
3823
+ .editormd-preview-container, .editormd-html-preview {
3824
+ text-align: left;
3825
+ font-size: 14px;
3826
+ line-height: 1.6;
3827
+ padding: 20px;
3828
+ overflow: auto;
3829
+ width: 100%;
3830
+ background-color: #fff;
3831
+ }
3832
+ .editormd-preview-container blockquote, .editormd-html-preview blockquote {
3833
+ color: #666;
3834
+ border-left: 4px solid #ddd;
3835
+ padding-left: 20px;
3836
+ margin-left: 0;
3837
+ font-size: 14px;
3838
+ font-style: italic;
3839
+ }
3840
+ .editormd-preview-container p code, .editormd-html-preview p code {
3841
+ margin-left: 5px;
3842
+ margin-right: 4px;
3843
+ }
3844
+ .editormd-preview-container abbr, .editormd-html-preview abbr {
3845
+ background: #ffffdd;
3846
+ }
3847
+ .editormd-preview-container hr, .editormd-html-preview hr {
3848
+ height: 1px;
3849
+ border: none;
3850
+ border-top: 1px solid #ddd;
3851
+ background: none;
3852
+ }
3853
+ .editormd-preview-container code, .editormd-html-preview code {
3854
+ border: 1px solid #ddd;
3855
+ background: #f6f6f6;
3856
+ padding: 3px;
3857
+ border-radius: 3px;
3858
+ font-size: 14px;
3859
+ }
3860
+ .editormd-preview-container pre, .editormd-html-preview pre {
3861
+ border: 1px solid #ddd;
3862
+ background: #f6f6f6;
3863
+ padding: 10px;
3864
+ -webkit-border-radius: 3px;
3865
+ -moz-border-radius: 3px;
3866
+ -ms-border-radius: 3px;
3867
+ -o-border-radius: 3px;
3868
+ border-radius: 3px;
3869
+ }
3870
+ .editormd-preview-container pre code, .editormd-html-preview pre code {
3871
+ padding: 0;
3872
+ }
3873
+ .editormd-preview-container pre, .editormd-preview-container code, .editormd-preview-container kbd, .editormd-html-preview pre, .editormd-html-preview code, .editormd-html-preview kbd {
3874
+ font-family: "YaHei Consolas Hybrid", Consolas, "Meiryo UI", "Malgun Gothic", "Segoe UI", "Trebuchet MS", Helvetica, monospace, monospace;
3875
+ }
3876
+ .editormd-preview-container table thead tr, .editormd-html-preview table thead tr {
3877
+ background-color: #F8F8F8;
3878
+ }
3879
+ .editormd-preview-container p.editormd-tex, .editormd-html-preview p.editormd-tex {
3880
+ text-align: center;
3881
+ }
3882
+ .editormd-preview-container span.editormd-tex, .editormd-html-preview span.editormd-tex {
3883
+ margin: 0 5px;
3884
+ }
3885
+ .editormd-preview-container .emoji, .editormd-html-preview .emoji {
3886
+ width: 24px;
3887
+ height: 24px;
3888
+ }
3889
+ .editormd-preview-container .katex, .editormd-html-preview .katex {
3890
+ font-size: 1.4em;
3891
+ }
3892
+ .editormd-preview-container .sequence-diagram, .editormd-preview-container .flowchart, .editormd-html-preview .sequence-diagram, .editormd-html-preview .flowchart {
3893
+ margin: 0 auto;
3894
+ text-align: center;
3895
+ }
3896
+ .editormd-preview-container .sequence-diagram svg, .editormd-preview-container .flowchart svg, .editormd-html-preview .sequence-diagram svg, .editormd-html-preview .flowchart svg {
3897
+ margin: 0 auto;
3898
+ }
3899
+ .editormd-preview-container .sequence-diagram text, .editormd-preview-container .flowchart text, .editormd-html-preview .sequence-diagram text, .editormd-html-preview .flowchart text {
3900
+ font-size: 15px !important;
3901
+ font-family: "YaHei Consolas Hybrid", Consolas, "Microsoft YaHei", "Malgun Gothic", "Segoe UI", Helvetica, Arial !important;
3902
+ }
3903
+
3904
+ /*! Pretty printing styles. Used with prettify.js. */
3905
+ /* SPAN elements with the classes below are added by prettyprint. */
3906
+ .pln {
3907
+ color: #000;
3908
+ }
3909
+
3910
+ /* plain text */
3911
+ @media screen {
3912
+ .str {
3913
+ color: #080;
3914
+ }
3915
+
3916
+ /* string content */
3917
+ .kwd {
3918
+ color: #008;
3919
+ }
3920
+
3921
+ /* a keyword */
3922
+ .com {
3923
+ color: #800;
3924
+ }
3925
+
3926
+ /* a comment */
3927
+ .typ {
3928
+ color: #606;
3929
+ }
3930
+
3931
+ /* a type name */
3932
+ .lit {
3933
+ color: #066;
3934
+ }
3935
+
3936
+ /* a literal value */
3937
+ /* punctuation, lisp open bracket, lisp close bracket */
3938
+ .pun, .opn, .clo {
3939
+ color: #660;
3940
+ }
3941
+
3942
+ .tag {
3943
+ color: #008;
3944
+ }
3945
+
3946
+ /* a markup tag name */
3947
+ .atn {
3948
+ color: #606;
3949
+ }
3950
+
3951
+ /* a markup attribute name */
3952
+ .atv {
3953
+ color: #080;
3954
+ }
3955
+
3956
+ /* a markup attribute value */
3957
+ .dec, .var {
3958
+ color: #606;
3959
+ }
3960
+
3961
+ /* a declaration; a variable name */
3962
+ .fun {
3963
+ color: red;
3964
+ }
3965
+
3966
+ /* a function name */
3967
+ }
3968
+ /* Use higher contrast and text-weight for printable form. */
3969
+ @media print, projection {
3970
+ .str {
3971
+ color: #060;
3972
+ }
3973
+
3974
+ .kwd {
3975
+ color: #006;
3976
+ font-weight: bold;
3977
+ }
3978
+
3979
+ .com {
3980
+ color: #600;
3981
+ font-style: italic;
3982
+ }
3983
+
3984
+ .typ {
3985
+ color: #404;
3986
+ font-weight: bold;
3987
+ }
3988
+
3989
+ .lit {
3990
+ color: #044;
3991
+ }
3992
+
3993
+ .pun, .opn, .clo {
3994
+ color: #440;
3995
+ }
3996
+
3997
+ .tag {
3998
+ color: #006;
3999
+ font-weight: bold;
4000
+ }
4001
+
4002
+ .atn {
4003
+ color: #404;
4004
+ }
4005
+
4006
+ .atv {
4007
+ color: #060;
4008
+ }
4009
+ }
4010
+ /* Put a border around prettyprinted code snippets. */
4011
+ pre.prettyprint {
4012
+ padding: 2px;
4013
+ border: 1px solid #888;
4014
+ }
4015
+
4016
+ /* Specify class=linenums on a pre to get line numbering */
4017
+ ol.linenums {
4018
+ margin-top: 0;
4019
+ margin-bottom: 0;
4020
+ }
4021
+
4022
+ /* IE indents via margin-left */
4023
+ li.L0,
4024
+ li.L1,
4025
+ li.L2,
4026
+ li.L3,
4027
+ li.L5,
4028
+ li.L6,
4029
+ li.L7,
4030
+ li.L8 {
4031
+ list-style-type: none;
4032
+ }
4033
+
4034
+ /* Alternate shading for lines */
4035
+ li.L1,
4036
+ li.L3,
4037
+ li.L5,
4038
+ li.L7,
4039
+ li.L9 {
4040
+ background: #eee;
4041
+ }
4042
+
4043
+ .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint {
4044
+ padding: 10px;
4045
+ border: 1px solid #ddd;
4046
+ white-space: pre-wrap;
4047
+ word-wrap: break-word;
4048
+ }
4049
+ .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums {
4050
+ color: #999;
4051
+ padding-left: 2.5em;
4052
+ }
4053
+ .editormd-preview-container ol.linenums li, .editormd-html-preview ol.linenums li {
4054
+ list-style-type: decimal;
4055
+ }
4056
+ .editormd-preview-container ol.linenums li code, .editormd-html-preview ol.linenums li code {
4057
+ border: none;
4058
+ background: none;
4059
+ padding: 0;
4060
+ }
4061
+
4062
+ .editormd-preview-container .editormd-toc-menu, .editormd-html-preview .editormd-toc-menu {
4063
+ margin: 8px 0 12px 0;
4064
+ display: inline-block;
4065
+ }
4066
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc, .editormd-html-preview .editormd-toc-menu > .markdown-toc {
4067
+ position: relative;
4068
+ -webkit-border-radius: 4px;
4069
+ -moz-border-radius: 4px;
4070
+ -ms-border-radius: 4px;
4071
+ -o-border-radius: 4px;
4072
+ border-radius: 4px;
4073
+ border: 1px solid #ddd;
4074
+ display: inline-block;
4075
+ font-size: 1em;
4076
+ }
4077
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul {
4078
+ width: 160%;
4079
+ min-width: 180px;
4080
+ position: absolute;
4081
+ left: -1px;
4082
+ top: -2px;
4083
+ z-index: 100;
4084
+ padding: 0 10px 10px;
4085
+ display: none;
4086
+ background: #fff;
4087
+ border: 1px solid #ddd;
4088
+ -webkit-border-radius: 4px;
4089
+ -moz-border-radius: 4px;
4090
+ -ms-border-radius: 4px;
4091
+ -o-border-radius: 4px;
4092
+ border-radius: 4px;
4093
+ -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4094
+ /* Webkit browsers */
4095
+ -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4096
+ /* Firefox */
4097
+ -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4098
+ /* IE9 */
4099
+ -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4100
+ /* Opera(Old) */
4101
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4102
+ /* IE9+, News */
4103
+ }
4104
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li ul {
4105
+ width: 100%;
4106
+ min-width: 180px;
4107
+ border: 1px solid #ddd;
4108
+ display: none;
4109
+ background: #fff;
4110
+ -webkit-border-radius: 4px;
4111
+ -moz-border-radius: 4px;
4112
+ -ms-border-radius: 4px;
4113
+ -o-border-radius: 4px;
4114
+ border-radius: 4px;
4115
+ }
4116
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a {
4117
+ color: #666;
4118
+ padding: 6px 10px;
4119
+ display: block;
4120
+ -webkit-transition: background-color 500ms ease-out;
4121
+ /* Safari, Chrome */
4122
+ -moz-transition: background-color 500ms ease-out;
4123
+ /* Firefox 4.0~16.0 */
4124
+ transition: background-color 500ms ease-out;
4125
+ /* IE >9, FF >15, Opera >12.0 */
4126
+ }
4127
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a:hover, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a:hover {
4128
+ background-color: #f6f6f6;
4129
+ }
4130
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc li, .editormd-html-preview .editormd-toc-menu > .markdown-toc li {
4131
+ position: relative;
4132
+ }
4133
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul {
4134
+ position: absolute;
4135
+ top: 32px;
4136
+ left: 10%;
4137
+ display: none;
4138
+ -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4139
+ /* Webkit browsers */
4140
+ -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4141
+ /* Firefox */
4142
+ -ms-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4143
+ /* IE9 */
4144
+ -o-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4145
+ /* Opera(Old) */
4146
+ box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
4147
+ /* IE9+, News */
4148
+ }
4149
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:after {
4150
+ pointer-events: pointer-events;
4151
+ position: absolute;
4152
+ left: 15px;
4153
+ top: -6px;
4154
+ display: block;
4155
+ content: "";
4156
+ width: 0;
4157
+ height: 0;
4158
+ border: 6px solid transparent;
4159
+ border-width: 0 6px 6px;
4160
+ z-index: 10;
4161
+ }
4162
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:before, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:before {
4163
+ border-bottom-color: #ccc;
4164
+ }
4165
+ .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul:after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul:after {
4166
+ border-bottom-color: #ffffff;
4167
+ top: -5px;
4168
+ }
4169
+ .editormd-preview-container .editormd-toc-menu ul, .editormd-html-preview .editormd-toc-menu ul {
4170
+ list-style: none;
4171
+ }
4172
+ .editormd-preview-container .editormd-toc-menu a, .editormd-html-preview .editormd-toc-menu a {
4173
+ text-decoration: none;
4174
+ }
4175
+ .editormd-preview-container .editormd-toc-menu h1, .editormd-html-preview .editormd-toc-menu h1 {
4176
+ font-size: 16px;
4177
+ padding: 5px 0 10px 10px;
4178
+ line-height: 1;
4179
+ border-bottom: 1px solid #eee;
4180
+ }
4181
+ .editormd-preview-container .editormd-toc-menu h1 .fa, .editormd-html-preview .editormd-toc-menu h1 .fa {
4182
+ padding-left: 10px;
4183
+ }
4184
+ .editormd-preview-container .editormd-toc-menu .toc-menu-btn, .editormd-html-preview .editormd-toc-menu .toc-menu-btn {
4185
+ color: #666;
4186
+ min-width: 180px;
4187
+ padding: 5px 10px;
4188
+ border-radius: 4px;
4189
+ display: inline-block;
4190
+ -webkit-transition: background-color 500ms ease-out;
4191
+ /* Safari, Chrome */
4192
+ -moz-transition: background-color 500ms ease-out;
4193
+ /* Firefox 4.0~16.0 */
4194
+ transition: background-color 500ms ease-out;
4195
+ /* IE >9, FF >15, Opera >12.0 */
4196
+ }
4197
+ .editormd-preview-container .editormd-toc-menu .toc-menu-btn:hover, .editormd-html-preview .editormd-toc-menu .toc-menu-btn:hover {
4198
+ background-color: #f6f6f6;
4199
+ }
4200
+ .editormd-preview-container .editormd-toc-menu .toc-menu-btn .fa, .editormd-html-preview .editormd-toc-menu .toc-menu-btn .fa {
4201
+ float: right;
4202
+ padding: 3px 0 0 10px;
4203
+ font-size: 1.3em;
4204
+ }
4205
+
4206
+ .markdown-body .editormd-toc-menu ul {
4207
+ padding-left: 0;
4208
+ }
4209
+ .markdown-body .highlight pre, .markdown-body pre {
4210
+ line-height: 1.6;
4211
+ }
4212
+
4213
+ hr.editormd-page-break {
4214
+ border: 1px dotted #ccc;
4215
+ font-size: 0;
4216
+ height: 2px;
4217
+ }
4218
+
4219
+ @media only print {
4220
+ hr.editormd-page-break {
4221
+ background: none;
4222
+ border: none;
4223
+ height: 0;
4224
+ }
4225
+ }
4226
+ .editormd-html-preview textarea {
4227
+ display: none;
4228
+ }
4229
+ .editormd-html-preview hr.editormd-page-break {
4230
+ background: none;
4231
+ border: none;
4232
+ height: 0;
4233
+ }
4234
+
4235
+ .editormd-preview-close-btn {
4236
+ color: #fff;
4237
+ padding: 4px 6px;
4238
+ font-size: 18px;
4239
+ -webkit-border-radius: 500px;
4240
+ -moz-border-radius: 500px;
4241
+ -ms-border-radius: 500px;
4242
+ -o-border-radius: 500px;
4243
+ border-radius: 500px;
4244
+ display: none;
4245
+ background-color: #ccc;
4246
+ position: absolute;
4247
+ top: 25px;
4248
+ right: 35px;
4249
+ z-index: 19;
4250
+ -webkit-transition: background-color 300ms ease-out;
4251
+ /* Safari, Chrome */
4252
+ -moz-transition: background-color 300ms ease-out;
4253
+ /* Firefox 4.0~16.0 */
4254
+ transition: background-color 300ms ease-out;
4255
+ /* IE >9, FF >15, Opera >12.0 */
4256
+ }
4257
+ .editormd-preview-close-btn:hover {
4258
+ background-color: #999;
4259
+ }
4260
+
4261
+ .editormd-preview-active {
4262
+ width: 100%;
4263
+ padding: 40px;
4264
+ }
4265
+
4266
+ /* Preview dark theme */
4267
+ .editormd-preview-theme-dark {
4268
+ color: #777;
4269
+ background: #2C2827;
4270
+ }
4271
+ .editormd-preview-theme-dark .editormd-preview-container {
4272
+ color: #888;
4273
+ background-color: #2C2827;
4274
+ }
4275
+ .editormd-preview-theme-dark .editormd-preview-container pre.prettyprint {
4276
+ border: none;
4277
+ }
4278
+ .editormd-preview-theme-dark .editormd-preview-container blockquote {
4279
+ color: #555;
4280
+ padding: 0.5em;
4281
+ background: #222;
4282
+ border-color: #333;
4283
+ }
4284
+ .editormd-preview-theme-dark .editormd-preview-container abbr {
4285
+ color: #fff;
4286
+ padding: 1px 3px;
4287
+ -webkit-border-radius: 3px;
4288
+ -moz-border-radius: 3px;
4289
+ -ms-border-radius: 3px;
4290
+ -o-border-radius: 3px;
4291
+ border-radius: 3px;
4292
+ background: #ff9900;
4293
+ }
4294
+ .editormd-preview-theme-dark .editormd-preview-container code {
4295
+ color: #fff;
4296
+ border: none;
4297
+ padding: 1px 3px;
4298
+ -webkit-border-radius: 3px;
4299
+ -moz-border-radius: 3px;
4300
+ -ms-border-radius: 3px;
4301
+ -o-border-radius: 3px;
4302
+ border-radius: 3px;
4303
+ background: #5A9600;
4304
+ }
4305
+ .editormd-preview-theme-dark .editormd-preview-container table {
4306
+ border: none;
4307
+ }
4308
+ .editormd-preview-theme-dark .editormd-preview-container .fa-emoji {
4309
+ color: #B4BF42;
4310
+ }
4311
+ .editormd-preview-theme-dark .editormd-preview-container .katex {
4312
+ color: #FEC93F;
4313
+ }
4314
+ .editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc {
4315
+ background: #fff;
4316
+ border: none;
4317
+ }
4318
+ .editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc h1 {
4319
+ border-color: #ddd;
4320
+ }
4321
+ .editormd-preview-theme-dark .markdown-body h1, .editormd-preview-theme-dark .markdown-body h2, .editormd-preview-theme-dark .markdown-body hr {
4322
+ border-color: #222;
4323
+ }
4324
+ .editormd-preview-theme-dark pre {
4325
+ color: #999;
4326
+ background-color: #111;
4327
+ background-color: rgba(0, 0, 0, 0.4);
4328
+ /* plain text */
4329
+ }
4330
+ .editormd-preview-theme-dark pre .pln {
4331
+ color: #999;
4332
+ }
4333
+ .editormd-preview-theme-dark li.L1, .editormd-preview-theme-dark li.L3, .editormd-preview-theme-dark li.L5, .editormd-preview-theme-dark li.L7, .editormd-preview-theme-dark li.L9 {
4334
+ background: none;
4335
+ }
4336
+ .editormd-preview-theme-dark [class*=editormd-logo] {
4337
+ color: #2196F3;
4338
+ }
4339
+ .editormd-preview-theme-dark .sequence-diagram text {
4340
+ fill: #fff;
4341
+ }
4342
+ .editormd-preview-theme-dark .sequence-diagram rect, .editormd-preview-theme-dark .sequence-diagram path {
4343
+ color: #fff;
4344
+ fill: #64D1CB;
4345
+ stroke: #64D1CB;
4346
+ }
4347
+ .editormd-preview-theme-dark .flowchart rect, .editormd-preview-theme-dark .flowchart path {
4348
+ stroke: #A6C6FF;
4349
+ }
4350
+ .editormd-preview-theme-dark .flowchart rect {
4351
+ fill: #A6C6FF;
4352
+ }
4353
+ .editormd-preview-theme-dark .flowchart text {
4354
+ fill: #5879B4;
4355
+ }
4356
+
4357
+ @media screen {
4358
+ .editormd-preview-theme-dark {
4359
+ /* string content */
4360
+ /* a keyword */
4361
+ /* a comment */
4362
+ /* a type name */
4363
+ /* a literal value */
4364
+ /* punctuation, lisp open bracket, lisp close bracket */
4365
+ /* a markup tag name */
4366
+ /* a markup attribute name */
4367
+ /* a markup attribute value */
4368
+ /* a declaration; a variable name */
4369
+ /* a function name */
4370
+ }
4371
+ .editormd-preview-theme-dark .str {
4372
+ color: #080;
4373
+ }
4374
+ .editormd-preview-theme-dark .kwd {
4375
+ color: #ff9900;
4376
+ }
4377
+ .editormd-preview-theme-dark .com {
4378
+ color: #444444;
4379
+ }
4380
+ .editormd-preview-theme-dark .typ {
4381
+ color: #606;
4382
+ }
4383
+ .editormd-preview-theme-dark .lit {
4384
+ color: #066;
4385
+ }
4386
+ .editormd-preview-theme-dark .pun, .editormd-preview-theme-dark .opn, .editormd-preview-theme-dark .clo {
4387
+ color: #660;
4388
+ }
4389
+ .editormd-preview-theme-dark .tag {
4390
+ color: #ff9900;
4391
+ }
4392
+ .editormd-preview-theme-dark .atn {
4393
+ color: #6C95F5;
4394
+ }
4395
+ .editormd-preview-theme-dark .atv {
4396
+ color: #080;
4397
+ }
4398
+ .editormd-preview-theme-dark .dec, .editormd-preview-theme-dark .var {
4399
+ color: #008BA7;
4400
+ }
4401
+ .editormd-preview-theme-dark .fun {
4402
+ color: red;
4403
+ }
4404
+ }
4405
+ .editormd-onlyread .editormd-toolbar {
4406
+ display: none;
4407
+ }
4408
+ .editormd-onlyread .CodeMirror {
4409
+ margin-top: 0;
4410
+ }
4411
+ .editormd-onlyread .editormd-preview {
4412
+ top: 0;
4413
+ }
4414
+
4415
+ .editormd-fullscreen {
4416
+ position: fixed;
4417
+ top: 0;
4418
+ left: 0;
4419
+ border: none;
4420
+ margin: 0 auto;
4421
+ }
4422
+
4423
+ /* Editor.md Dark theme */
4424
+ .editormd-theme-dark {
4425
+ border-color: #1a1a17;
4426
+ }
4427
+ .editormd-theme-dark .editormd-toolbar {
4428
+ background: #1A1A17;
4429
+ border-color: #1a1a17;
4430
+ }
4431
+ .editormd-theme-dark .editormd-menu > li > a {
4432
+ color: #777;
4433
+ border-color: #1a1a17;
4434
+ }
4435
+ .editormd-theme-dark .editormd-menu > li > a:hover, .editormd-theme-dark .editormd-menu > li > a.active {
4436
+ border-color: #333;
4437
+ background: #333;
4438
+ }
4439
+ .editormd-theme-dark .editormd-menu > li.divider {
4440
+ border-right: 1px solid #111;
4441
+ }
4442
+ .editormd-theme-dark .CodeMirror {
4443
+ border-right: 1px solid rgba(0, 0, 0, 0.1);
4444
+ }