jekyll-shell-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 608bfad8b106d471a241358637024d4c08b44cfdd7e4f5e748ff871414bd1e80
4
+ data.tar.gz: ca8f42a183275a0f84ec27dfcc15079e2a2492141041e927bc397c1c6607ad59
5
+ SHA512:
6
+ metadata.gz: d65d6296086492739213407b410afe2bab2a4b532fb9cf7fe0620b54a69bd81d93ed594b3d421abc52e1ea6cc5583953b1ba9b330ab55670daffb621d4739d0d
7
+ data.tar.gz: ee3ee47a8ff3db076c774dc0c1b3217e9e06fcd784714a6c3051d34afb373a091ec9a0497dc2a80acf90ffd479041a8972902f2fba62734ea1087f1d5d2b787b
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Tareq El Dandachi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,54 @@
1
+ <img src="assets/theme_logo.svg" class="detail_header">
2
+
3
+ # jekyll-shell-theme
4
+
5
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
6
+
7
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
8
+
9
+ TODO: Delete this and the text above, and describe your gem
10
+
11
+
12
+ ## Installation
13
+
14
+ Add this line to your Jekyll site's `Gemfile`:
15
+
16
+ ```ruby
17
+ gem "jekyll-shell-theme"
18
+ ```
19
+
20
+ And add this line to your Jekyll site's `_config.yml`:
21
+
22
+ ```yaml
23
+ theme: jekyll-shell-theme
24
+ ```
25
+
26
+ And then execute:
27
+
28
+ $ bundle
29
+
30
+ Or install it yourself as:
31
+
32
+ $ gem install jekyll-shell-theme
33
+
34
+ ## Usage
35
+
36
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
37
+
38
+ ## Contributing
39
+
40
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
41
+
42
+ ## Development
43
+
44
+ To set up your environment to develop this theme, run `bundle install`.
45
+
46
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
47
+
48
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
49
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-shell-theme.gemspec` accordingly.
50
+
51
+ ## License
52
+
53
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
54
+
@@ -0,0 +1,7 @@
1
+ <footer>
2
+
3
+ {{ site.title }}/{{ page.permalink_name | replace: "/", "" | replace: " ", "-" }}
4
+ <br><br>
5
+ :octocat: @{{ site.github_username }}
6
+
7
+ </footer>
@@ -0,0 +1,12 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
5
+
6
+ <title>
7
+ {% if page.layout != 'home' %}{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %} - {{ site.title }}{% else %}
8
+ {{ site.title }}{% endif %}
9
+ </title>
10
+ <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
11
+
12
+ </head>
@@ -0,0 +1,15 @@
1
+ {%- assign page_paths = site.header_pages | default: default_paths -%}
2
+
3
+ <header>
4
+ <div class="menu">
5
+ <ul>
6
+ <li class="page_title">{{ page.title }}</li>
7
+ {%- for path in page_paths -%}
8
+ {%- assign my_page = site.pages | where: "path", path | first -%}
9
+ {%- if my_page.title -%}
10
+ <li><a href="{{ my_page.url | relative_url }}">/{{ my_page.permalink_name | replace: " ", "-" | replace: "/", "" | my_page.permalink | replace: "/", "" | ERROR }}</a></li>
11
+ {%- endif -%}
12
+ {%- endfor -%}
13
+ </ul>
14
+ </div>
15
+ </header>
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ {% include head.html %}
5
+
6
+ <body class="{{ site.font-size }}">
7
+
8
+ {% include header.html %}
9
+
10
+ {{ content }}
11
+
12
+ {% include footer.html %}
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="error_box">
6
+ {{ content }}
7
+ </div>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%- if page.detail_image -%}<img class="home_header" src="{{ page.detail_image }}">{%- endif -%}
6
+
7
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {%- if page.detail_image -%}<img class="detail_header" src="{{ page.detail_image }}">{%- endif -%}
6
+
7
+ {{ content }}
@@ -0,0 +1,66 @@
1
+ ---
2
+ # Style-Sheet
3
+ ---
4
+
5
+ /* FONTS */
6
+ @charset "utf-8";
7
+ @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700');
8
+ @import url('syntax-highlighting.css');
9
+
10
+ :root {
11
+
12
+ --main-color: white;
13
+ --bg-color: black;
14
+
15
+ --text-color: #DDD;
16
+ --pop-color: white;
17
+ --alt-color: #2ed573;
18
+ --light-alt-color: rgba(46, 213, 115);
19
+
20
+ }
21
+
22
+ /* BASE */
23
+ body { background-color: var(--bg-color); color: var(--main-color); font-family: 'Roboto Mono', monospace; margin: 0 auto; width: 90%; max-width: 700px; line-height: 2em; font-size: 0.9em; }
24
+ h1, h2, h3, h4, h5, h6 { margin: 0px; margin-top: 22px; font-weight: bold; color: var(--pop-color); font-size: 1em; }
25
+ p, ul, ol { font-size: 1em; color: var(--text-color); }
26
+ a { text-decoration: underline; color: var(--alt-color); }
27
+ a:hover { color: var(--bg-color); background-color: var(--alt-color); }
28
+ .primary-text { color: var(--main-color); }
29
+ @media only screen and (max-device-width: 500px) { * { font-size: 12px !important; } }
30
+ b, strong { color: var(--main-color); }
31
+
32
+ /* SMALL FONT OVERRIDE */
33
+ body.large { line-height: 2em; font-size: 1em; }
34
+
35
+ /* LAYOUT */
36
+ .container { margin-right: auto; margin-left: auto; }
37
+ p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; }
38
+ footer { color: var(--text-color); border-top: dashed 1px rgba(219, 219, 219, 0.9); margin: 20px auto 15px; padding-top: 10px; text-align: right; }
39
+ header { margin-top: 25px; margin-bottom: 10px; }
40
+ header p { text-align: left; margin: 0; }
41
+ footer { margin-bottom: 20px; }
42
+ img.home_header { width: 100%; margin-top: 5%; margin-bottom: 5%; }
43
+ img.detail_header { width: 100%; }
44
+
45
+ /* LISTS */
46
+ :not(.menu) > ul { list-style: none; padding-left: 1em; }
47
+ ul :not(.menu) > ul { list-style: none; padding-left: 3em; margin-top: 0.5em; margin-bottom: 0.7em; }
48
+ :not(.menu) > ul { list-style-type: none; }
49
+ :not(.menu) > ul > li:before { content: "-"; margin-right: 9px; }
50
+ ul :not(.menu) > ul > li:before { content: "*"; margin-right: 9px; }
51
+
52
+ /* NAVIGATION */
53
+ .menu { border-top: dashed 1px rgba(219, 219, 219, 0.9); border-bottom: dashed 1px rgba(219, 219, 219, 0.9); margin-bottom: 25px; }
54
+ .menu ul { margin-top: 12px; margin-bottom: 12px; padding-left: 0px; list-style-type: none; text-align: right; }
55
+ .menu ul li { display: inline; margin-left: 10px; }
56
+ .menu ul li a { text-decoration: none; color: var(--text-color); }
57
+ .menu ul li a:hover { text-decoration: none; color: var(--bg-color); background-color: var(--main-color); }
58
+ .menu ul li.page_title { text-align: left; margin-left: 10px; float: left; font-weight: bold; color: var(--main-color) }
59
+
60
+
61
+ /* ERROR PAGES */
62
+
63
+ div.error_box { margin: 100px; text-align: center; }
64
+ div.error_box h1 { font-size: 2em; }
65
+
66
+ *::selection { background-color: var(--light-alt-color); color: black; }
@@ -0,0 +1,78 @@
1
+ .highlight .hll { background-color: #333333 }
2
+ .highlight { background: #111111; color: #ffffff; padding-left: 10px; border-radius: 10px; padding-top: 1px; padding-bottom: 1px; }
3
+ .highlight .c { color: #008800; font-style: italic; background-color: #0f140f } /* Comment */
4
+ .highlight .err { color: #ffffff } /* Error */
5
+ .highlight .esc { color: #ffffff } /* Escape */
6
+ .highlight .g { color: #ffffff } /* Generic */
7
+ .highlight .k { color: #fb660a; font-weight: bold } /* Keyword */
8
+ .highlight .l { color: #ffffff } /* Literal */
9
+ .highlight .n { color: #ffffff } /* Name */
10
+ .highlight .o { color: #ffffff } /* Operator */
11
+ .highlight .x { color: #ffffff } /* Other */
12
+ .highlight .p { color: #ffffff } /* Punctuation */
13
+ .highlight .ch { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Hashbang */
14
+ .highlight .cm { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Multiline */
15
+ .highlight .cp { color: #34c759; font-weight: bold; font-style: italic; background-color: #0f140f } /* Comment.Preproc */
16
+ .highlight .cpf { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.PreprocFile */
17
+ .highlight .c1 { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Single */
18
+ .highlight .cs { color: #008800; font-style: italic; background-color: #0f140f } /* Comment.Special */
19
+ .highlight .gd { color: #ffffff } /* Generic.Deleted */
20
+ .highlight .ge { color: #ffffff } /* Generic.Emph */
21
+ .highlight .gr { color: #ffffff } /* Generic.Error */
22
+ .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
23
+ .highlight .gi { color: #ffffff } /* Generic.Inserted */
24
+ .highlight .go { color: #444444; background-color: #222222 } /* Generic.Output */
25
+ .highlight .gp { color: #ffffff } /* Generic.Prompt */
26
+ .highlight .gs { color: #ffffff } /* Generic.Strong */
27
+ .highlight .gu { color: #ffffff; font-weight: bold } /* Generic.Subheading */
28
+ .highlight .gt { color: #ffffff } /* Generic.Traceback */
29
+ .highlight .kc { color: #fb660a; font-weight: bold } /* Keyword.Constant */
30
+ .highlight .kd { color: #fb660a; font-weight: bold } /* Keyword.Declaration */
31
+ .highlight .kn { color: #fb660a; font-weight: bold } /* Keyword.Namespace */
32
+ .highlight .kp { color: #fb660a } /* Keyword.Pseudo */
33
+ .highlight .kr { color: #fb660a; font-weight: bold } /* Keyword.Reserved */
34
+ .highlight .kt { color: #5e5ce6; font-weight: bold } /* Keyword.Type */
35
+ .highlight .ld { color: #ffffff } /* Literal.Date */
36
+ .highlight .m { color: #0086f7; font-weight: bold } /* Literal.Number */
37
+ .highlight .s { color: #e65c71 } /* Literal.String */
38
+ .highlight .na { color: #ff0086; font-weight: bold } /* Name.Attribute */
39
+ .highlight .nb { color: #ffffff } /* Name.Builtin */
40
+ .highlight .nc { color: #ffffff } /* Name.Class */
41
+ .highlight .no { color: #0086d2 } /* Name.Constant */
42
+ .highlight .nd { color: #ffffff } /* Name.Decorator */
43
+ .highlight .ni { color: #ffffff } /* Name.Entity */
44
+ .highlight .ne { color: #ffffff } /* Name.Exception */
45
+ .highlight .nf { color: #ff0086; font-weight: bold } /* Name.Function */
46
+ .highlight .nl { color: #ffffff } /* Name.Label */
47
+ .highlight .nn { color: #ffffff } /* Name.Namespace */
48
+ .highlight .nx { color: #ffffff } /* Name.Other */
49
+ .highlight .py { color: #ffffff } /* Name.Property */
50
+ .highlight .nt { color: #fb660a; font-weight: bold } /* Name.Tag */
51
+ .highlight .nv { color: #fb660a } /* Name.Variable */
52
+ .highlight .ow { color: #ffffff } /* Operator.Word */
53
+ .highlight .w { color: #888888 } /* Text.Whitespace */
54
+ .highlight .mb { color: #0086f7; font-weight: bold } /* Literal.Number.Bin */
55
+ .highlight .mf { color: #0086f7; font-weight: bold } /* Literal.Number.Float */
56
+ .highlight .mh { color: #0086f7; font-weight: bold } /* Literal.Number.Hex */
57
+ .highlight .mi { color: #0086f7; font-weight: bold } /* Literal.Number.Integer */
58
+ .highlight .mo { color: #0086f7; font-weight: bold } /* Literal.Number.Oct */
59
+ .highlight .sa { color: #0086d2 } /* Literal.String.Affix */
60
+ .highlight .sb { color: #0086d2 } /* Literal.String.Backtick */
61
+ .highlight .sc { color: #0086d2 } /* Literal.String.Char */
62
+ .highlight .dl { color: #0086d2 } /* Literal.String.Delimiter */
63
+ .highlight .sd { color: #0086d2 } /* Literal.String.Doc */
64
+ .highlight .s2 { color: #0086d2 } /* Literal.String.Double */
65
+ .highlight .se { color: #0086d2 } /* Literal.String.Escape */
66
+ .highlight .sh { color: #0086d2 } /* Literal.String.Heredoc */
67
+ .highlight .si { color: #0086d2 } /* Literal.String.Interpol */
68
+ .highlight .sx { color: #0086d2 } /* Literal.String.Other */
69
+ .highlight .sr { color: #0086d2 } /* Literal.String.Regex */
70
+ .highlight .s1 { color: #0086d2 } /* Literal.String.Single */
71
+ .highlight .ss { color: #0086d2 } /* Literal.String.Symbol */
72
+ .highlight .bp { color: #ffffff } /* Name.Builtin.Pseudo */
73
+ .highlight .fm { color: #ff0086; font-weight: bold } /* Name.Function.Magic */
74
+ .highlight .vc { color: #fb660a } /* Name.Variable.Class */
75
+ .highlight .vg { color: #fb660a } /* Name.Variable.Global */
76
+ .highlight .vi { color: #fb660a } /* Name.Variable.Instance */
77
+ .highlight .vm { color: #fb660a } /* Name.Variable.Magic */
78
+ .highlight .il { color: #0086f7; font-weight: bold } /* Literal.Number.Integer.Long */
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="1806px" height="317px" viewBox="0 0 1806 317" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 52.2 (67145) - http://www.bohemiancoding.com/sketch -->
4
+ <title>A4 Copy 54</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <g id="A4-Copy-54" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
7
+ <rect fill="#000000" x="0" y="0" width="1806" height="317"></rect>
8
+ <path d="M97.3249999,67.22 L97.3249999,63.44 L111.725,63.44 L111.725,67.22 L97.3249999,67.22 Z M238.55,67.22 L238.55,63.44 L252.95,63.44 L252.95,67.22 L238.55,67.22 Z M460.474999,67.22 L460.474999,63.44 L474.874999,63.44 L474.874999,67.22 L460.474999,67.22 Z M500.824999,67.22 L500.824999,63.44 L515.224999,63.44 L515.224999,67.22 L500.824999,67.22 Z M86.6599999,105.4 C84.7399903,103.619991 83.2250055,101.585011 82.1149999,99.295 C81.0049944,97.0049885 80.4499999,94.460014 80.4499999,91.66 C80.4499999,88.859986 81.0049944,86.3150114 82.1149999,84.025 C83.2250055,81.7349885 84.7399903,79.7000089 86.6599999,77.92 L89.5099999,80.14 C88.6699957,81.0200044 87.945003,81.8999956 87.3349999,82.78 C86.7249969,83.6600044 86.2250019,84.5649953 85.8349999,85.495 C85.444998,86.4250046 85.1600008,87.3949949 84.9799999,88.405 C84.799999,89.415005 84.7099999,90.4999942 84.7099999,91.66 C84.7099999,92.8200058 84.799999,93.9049949 84.9799999,94.915 C85.1600008,95.925005 85.444998,96.8949953 85.8349999,97.825 C86.2250019,98.7550046 86.7249969,99.6599956 87.3349999,100.54 C87.945003,101.420004 88.6699957,102.299996 89.5099999,103.18 L86.6599999,105.4 Z M97.3249999,105.22 L97.3249999,101.44 L111.725,101.44 L111.725,105.22 L97.3249999,105.22 Z M122.39,105.4 L119.54,103.18 C120.380004,102.299996 121.104997,101.420004 121.715,100.54 C122.325003,99.6599956 122.824998,98.7550046 123.215,97.825 C123.605002,96.8949953 123.889999,95.925005 124.07,94.915 C124.250001,93.9049949 124.34,92.8200058 124.34,91.66 C124.34,90.4999942 124.250001,89.415005 124.07,88.405 C123.889999,87.3949949 123.605002,86.4250046 123.215,85.495 C122.824998,84.5649953 122.325003,83.6600044 121.715,82.78 C121.104997,81.8999956 120.380004,81.0200044 119.54,80.14 L122.39,77.92 C124.310009,79.7000089 125.824994,81.7349885 126.935,84.025 C128.045005,86.3150114 128.6,88.859986 128.6,91.66 C128.6,94.460014 128.045005,97.0049885 126.935,99.295 C125.824994,101.585011 124.310009,103.619991 122.39,105.4 Z M157.85,105.22 L157.85,101.44 L172.25,101.44 L172.25,105.22 L157.85,105.22 Z M178.025,105.22 L178.025,101.44 L192.425,101.44 L192.425,105.22 L178.025,105.22 Z M198.2,105.22 L198.2,101.44 L212.6,101.44 L212.6,105.22 L198.2,105.22 Z M223.295,107.5 L223.295,77.5 L227.855,77.5 L227.855,107.5 L223.295,107.5 Z M263.644999,107.5 L263.644999,77.5 L268.204999,77.5 L268.204999,107.5 L263.644999,107.5 Z M299.074999,105.22 L299.074999,101.44 L313.474999,101.44 L313.474999,105.22 L299.074999,105.22 Z M319.249999,105.22 L319.249999,101.44 L333.649999,101.44 L333.649999,105.22 L319.249999,105.22 Z M339.424999,105.22 L339.424999,101.44 L353.824999,101.44 L353.824999,105.22 L339.424999,105.22 Z M420.124999,105.22 L420.124999,101.44 L434.524999,101.44 L434.524999,105.22 L420.124999,105.22 Z M445.219999,107.5 L445.219999,77.5 L449.779999,77.5 L449.779999,107.5 L445.219999,107.5 Z M485.569999,107.5 L485.569999,77.5 L490.129999,77.5 L490.129999,107.5 L485.569999,107.5 Z M525.919999,107.5 L525.919999,77.5 L530.479999,77.5 L530.479999,107.5 L525.919999,107.5 Z M82.0699999,145.5 L82.0699999,115.5 L86.6299999,115.5 L86.6299999,145.5 L82.0699999,145.5 Z M137.795,142.8 L147.695,116.7 L151.955,116.7 L142.055,142.8 L137.795,142.8 Z M178.025,143.22 L178.025,139.44 L192.425,139.44 L192.425,143.22 L178.025,143.22 Z M228.395,142.8 L218.495,116.7 L222.755,116.7 L232.655,142.8 L228.395,142.8 Z M263.644999,145.5 L263.644999,115.5 L268.204999,115.5 L268.204999,145.5 L263.644999,145.5 Z M279.019999,142.8 L288.919999,116.7 L293.179999,116.7 L283.279999,142.8 L279.019999,142.8 Z M319.369999,142.8 L329.269999,116.7 L333.529999,116.7 L323.629999,142.8 L319.369999,142.8 Z M364.519999,145.5 L364.519999,115.5 L369.079999,115.5 L369.079999,145.5 L364.519999,145.5 Z M404.869999,145.5 L404.869999,115.5 L409.429999,115.5 L409.429999,145.5 L404.869999,145.5 Z M445.219999,145.5 L445.219999,115.5 L449.779999,115.5 L449.779999,145.5 L445.219999,145.5 Z M485.569999,145.5 L485.569999,115.5 L490.129999,115.5 L490.129999,145.5 L485.569999,145.5 Z M525.919999,145.5 L525.919999,115.5 L530.479999,115.5 L530.479999,145.5 L525.919999,145.5 Z M82.0699999,183.5 L82.0699999,153.5 L86.6299999,153.5 L86.6299999,183.5 L82.0699999,183.5 Z M122.42,183.5 L122.42,153.5 L126.98,153.5 L126.98,183.5 L122.42,183.5 Z M178.025,181.22 L178.025,177.44 L192.425,177.44 L192.425,181.22 L178.025,181.22 Z M198.2,181.22 L198.2,177.44 L212.6,177.44 L212.6,181.22 L198.2,181.22 Z M218.495,180.8 L228.395,154.7 L232.655,154.7 L222.755,180.8 L218.495,180.8 Z M312.454999,175.28 L300.694999,167.78 L300.694999,164.3 L312.454999,156.8 L312.454999,161.42 L304.894999,165.98 L304.894999,166.1 L312.454999,170.66 L312.454999,175.28 Z M324.169999,183.5 L324.169999,153.5 L328.729999,153.5 L328.729999,183.5 L324.169999,183.5 Z M364.519999,183.5 L364.519999,153.5 L369.079999,153.5 L369.079999,183.5 L364.519999,183.5 Z M379.774999,181.22 L379.774999,177.44 L394.174999,177.44 L394.174999,181.22 L379.774999,181.22 Z M404.869999,183.5 L404.869999,153.5 L409.429999,153.5 L409.429999,183.5 L404.869999,183.5 Z M445.219999,183.5 L445.219999,153.5 L449.779999,153.5 L449.779999,183.5 L445.219999,183.5 Z M485.569999,183.5 L485.569999,153.5 L490.129999,153.5 L490.129999,183.5 L485.569999,183.5 Z M525.919999,183.5 L525.919999,153.5 L530.479999,153.5 L530.479999,183.5 L525.919999,183.5 Z M56.975,219.22 L56.975,215.44 L71.375,215.44 L71.375,219.22 L56.975,219.22 Z M77.2699999,218.8 L87.1699999,192.7 L91.4299999,192.7 L81.5299999,218.8 L77.2699999,218.8 Z M122.42,221.5 L122.42,191.5 L126.98,191.5 L126.98,221.5 L122.42,221.5 Z M147.695,218.8 L137.795,192.7 L142.055,192.7 L151.955,218.8 L147.695,218.8 Z M157.85,219.22 L157.85,215.44 L172.25,215.44 L172.25,219.22 L157.85,219.22 Z M178.025,219.22 L178.025,215.44 L192.425,215.44 L192.425,219.22 L178.025,219.22 Z M198.2,219.22 L198.2,215.44 L212.6,215.44 L212.6,219.22 L198.2,219.22 Z M223.295,221.5 L223.295,191.5 L227.855,191.5 L227.855,221.5 L223.295,221.5 Z M238.55,219.22 L238.55,215.44 L252.95,215.44 L252.95,219.22 L238.55,219.22 Z M263.644999,221.5 L263.644999,191.5 L268.204999,191.5 L268.204999,221.5 L263.644999,221.5 Z M288.919999,218.8 L279.019999,192.7 L283.279999,192.7 L293.179999,218.8 L288.919999,218.8 Z M299.074999,219.22 L299.074999,215.44 L313.474999,215.44 L313.474999,219.22 L299.074999,219.22 Z M329.269999,218.8 L319.369999,192.7 L323.629999,192.7 L333.529999,218.8 L329.269999,218.8 Z M349.444999,218.8 L339.544999,192.7 L343.804999,192.7 L353.704999,218.8 L349.444999,218.8 Z M359.599999,219.22 L359.599999,215.44 L373.999999,215.44 L373.999999,219.22 L359.599999,219.22 Z M379.774999,219.22 L379.774999,215.44 L394.174999,215.44 L394.174999,219.22 L379.774999,219.22 Z M404.689999,220.54 L403.459999,217.6 C404.820006,217.159998 405.824996,216.595003 406.474999,215.905 C407.125002,215.214997 407.429999,214.460004 407.389999,213.64 L407.149999,213.64 C406.689997,213.64 406.240001,213.565001 405.799999,213.415 C405.359997,213.264999 404.975001,213.045001 404.644999,212.755 C404.314997,212.464999 404.05,212.110002 403.849999,211.69 C403.649998,211.269998 403.549999,210.790003 403.549999,210.25 C403.549999,209.229995 403.909996,208.410003 404.629999,207.79 C405.350003,207.169997 406.239994,206.86 407.299999,206.86 C408.660006,206.86 409.684996,207.354995 410.374999,208.345 C411.065003,209.335005 411.409999,210.719991 411.409999,212.5 C411.409999,214.48001 410.850005,216.154993 409.729999,217.525 C408.609994,218.895007 406.93001,219.899997 404.689999,220.54 Z M445.219999,221.5 L445.219999,191.5 L449.779999,191.5 L449.779999,221.5 L445.219999,221.5 Z M460.474999,219.22 L460.474999,215.44 L474.874999,215.44 L474.874999,219.22 L460.474999,219.22 Z M485.569999,221.5 L485.569999,191.5 L490.129999,191.5 L490.129999,221.5 L485.569999,221.5 Z M500.824999,219.22 L500.824999,215.44 L515.224999,215.44 L515.224999,219.22 L500.824999,219.22 Z M525.919999,221.5 L525.919999,191.5 L530.479999,191.5 L530.479999,221.5 L525.919999,221.5 Z M41.72,259.5 L41.72,229.5 L46.28,229.5 L46.28,259.5 L41.72,259.5 Z M56.975,257.22 L56.975,253.44 L71.375,253.44 L71.375,257.22 L56.975,257.22 Z M77.1499999,257.22 L77.1499999,253.44 L91.5499999,253.44 L91.5499999,257.22 L77.1499999,257.22 Z M97.4449999,256.8 L107.345,230.7 L111.605,230.7 L101.705,256.8 L97.4449999,256.8 Z M344.344999,259.5 L344.344999,229.5 L348.904999,229.5 L348.904999,259.5 L344.344999,259.5 Z M359.599999,257.22 L359.599999,253.44 L373.999999,253.44 L373.999999,257.22 L359.599999,257.22 Z M379.774999,257.22 L379.774999,253.44 L394.174999,253.44 L394.174999,257.22 L379.774999,257.22 Z M399.949999,257.22 L399.949999,253.44 L414.349999,253.44 L414.349999,257.22 L399.949999,257.22 Z M420.244999,256.8 L430.144999,230.7 L434.404999,230.7 L424.504999,256.8 L420.244999,256.8 Z M122.42,145.5 L122.42,115.5 L126.98,115.5 L126.98,145.5 L122.42,145.5 Z" id="Combined-Shape" stroke="#7ED321" stroke-width="2" fill="#7ED321"></path>
9
+ <path d="M742.924998,67.22 L742.924998,63.44 L757.324998,63.44 L757.324998,67.22 L742.924998,67.22 Z M964.849998,67.22 L964.849998,63.44 L979.249998,63.44 L979.249998,67.22 L964.849998,67.22 Z M1005.2,67.22 L1005.2,63.44 L1019.6,63.44 L1019.6,67.22 L1005.2,67.22 Z M662.224999,105.22 L662.224999,101.44 L676.624999,101.44 L676.624999,105.22 L662.224999,105.22 Z M682.399998,105.22 L682.399998,101.44 L696.799998,101.44 L696.799998,105.22 L682.399998,105.22 Z M702.574998,105.22 L702.574998,101.44 L716.974998,101.44 L716.974998,105.22 L702.574998,105.22 Z M727.669998,107.5 L727.669998,77.5 L732.229998,77.5 L732.229998,107.5 L727.669998,107.5 Z M768.019998,107.5 L768.019998,77.5 L772.579998,77.5 L772.579998,107.5 L768.019998,107.5 Z M783.274998,105.22 L783.274998,101.44 L797.674998,101.44 L797.674998,105.22 L783.274998,105.22 Z M803.449998,105.22 L803.449998,101.44 L817.849998,101.44 L817.849998,105.22 L803.449998,105.22 Z M884.149998,105.22 L884.149998,101.44 L898.549998,101.44 L898.549998,105.22 L884.149998,105.22 Z M904.324998,105.22 L904.324998,101.44 L918.724998,101.44 L918.724998,105.22 L904.324998,105.22 Z M924.499998,105.22 L924.499998,101.44 L938.899998,101.44 L938.899998,105.22 L924.499998,105.22 Z M949.594998,107.5 L949.594998,77.5 L954.154998,77.5 L954.154998,107.5 L949.594998,107.5 Z M989.944998,107.5 L989.944998,77.5 L994.504998,77.5 L994.504998,107.5 L989.944998,107.5 Z M1030.295,107.5 L1030.295,77.5 L1034.855,77.5 L1034.855,107.5 L1030.295,107.5 Z M642.169999,142.8 L652.069999,116.7 L656.329999,116.7 L646.429999,142.8 L642.169999,142.8 Z M682.399998,143.22 L682.399998,139.44 L696.799998,139.44 L696.799998,143.22 L682.399998,143.22 Z M702.574998,143.22 L702.574998,139.44 L716.974998,139.44 L716.974998,143.22 L702.574998,143.22 Z M727.669998,145.5 L727.669998,115.5 L732.229998,115.5 L732.229998,145.5 L727.669998,145.5 Z M768.739998,129.48 L767.599998,122.22 L767.419998,117.48 L773.179998,117.48 L772.999998,122.22 L771.859998,129.48 L768.739998,129.48 Z M783.274998,143.22 L783.274998,139.44 L797.674998,139.44 L797.674998,143.22 L783.274998,143.22 Z M833.644998,142.8 L823.744998,116.7 L828.004998,116.7 L837.904998,142.8 L833.644998,142.8 Z M864.094998,142.8 L873.994998,116.7 L878.254998,116.7 L868.354998,142.8 L864.094998,142.8 Z M904.324998,143.22 L904.324998,139.44 L918.724998,139.44 L918.724998,143.22 L904.324998,143.22 Z M954.694998,142.8 L944.794998,116.7 L949.054998,116.7 L958.954998,142.8 L954.694998,142.8 Z M989.944998,145.5 L989.944998,115.5 L994.504998,115.5 L994.504998,145.5 L989.944998,145.5 Z M1030.295,145.5 L1030.295,115.5 L1034.855,115.5 L1034.855,145.5 L1030.295,145.5 Z M652.069999,180.8 L642.169999,154.7 L646.429999,154.7 L656.329999,180.8 L652.069999,180.8 Z M662.224999,181.22 L662.224999,177.44 L676.624999,177.44 L676.624999,181.22 L662.224999,181.22 Z M682.399998,181.22 L682.399998,177.44 L696.799998,177.44 L696.799998,181.22 L682.399998,181.22 Z M732.769998,180.8 L722.869998,154.7 L727.129998,154.7 L737.029998,180.8 L732.769998,180.8 Z M768.019998,183.5 L768.019998,153.5 L772.579998,153.5 L772.579998,183.5 L768.019998,183.5 Z M808.369998,183.5 L808.369998,153.5 L812.929998,153.5 L812.929998,183.5 L808.369998,183.5 Z M848.719998,183.5 L848.719998,153.5 L853.279998,153.5 L853.279998,183.5 L848.719998,183.5 Z M904.324998,181.22 L904.324998,177.44 L918.724998,177.44 L918.724998,181.22 L904.324998,181.22 Z M924.499998,181.22 L924.499998,177.44 L938.899998,177.44 L938.899998,181.22 L924.499998,181.22 Z M944.794998,180.8 L954.694998,154.7 L958.954998,154.7 L949.054998,180.8 L944.794998,180.8 Z M989.944998,183.5 L989.944998,153.5 L994.504998,153.5 L994.504998,183.5 L989.944998,183.5 Z M1030.295,183.5 L1030.295,153.5 L1034.855,153.5 L1034.855,183.5 L1030.295,183.5 Z M646.969999,221.5 L646.969999,191.5 L651.529999,191.5 L651.529999,221.5 L646.969999,221.5 Z M662.224999,219.22 L662.224999,215.44 L676.624999,215.44 L676.624999,219.22 L662.224999,219.22 Z M682.399998,219.22 L682.399998,215.44 L696.799998,215.44 L696.799998,219.22 L682.399998,219.22 Z M702.574998,219.22 L702.574998,215.44 L716.974998,215.44 L716.974998,219.22 L702.574998,219.22 Z M722.869998,218.8 L732.769998,192.7 L737.029998,192.7 L727.129998,218.8 L722.869998,218.8 Z M742.924998,219.22 L742.924998,215.44 L757.324998,215.44 L757.324998,219.22 L742.924998,219.22 Z M768.019998,221.5 L768.019998,191.5 L772.579998,191.5 L772.579998,221.5 L768.019998,221.5 Z M808.369998,221.5 L808.369998,191.5 L812.929998,191.5 L812.929998,221.5 L808.369998,221.5 Z M823.624998,219.22 L823.624998,215.44 L838.024998,215.44 L838.024998,219.22 L823.624998,219.22 Z M848.719998,221.5 L848.719998,191.5 L853.279998,191.5 L853.279998,221.5 L848.719998,221.5 Z M873.994998,218.8 L864.094998,192.7 L868.354998,192.7 L878.254998,218.8 L873.994998,218.8 Z M884.149998,219.22 L884.149998,215.44 L898.549998,215.44 L898.549998,219.22 L884.149998,219.22 Z M904.324998,219.22 L904.324998,215.44 L918.724998,215.44 L918.724998,219.22 L904.324998,219.22 Z M924.499998,219.22 L924.499998,215.44 L938.899998,215.44 L938.899998,219.22 L924.499998,219.22 Z M949.594998,221.5 L949.594998,191.5 L954.154998,191.5 L954.154998,221.5 L949.594998,221.5 Z M964.849998,219.22 L964.849998,215.44 L979.249998,215.44 L979.249998,219.22 L964.849998,219.22 Z M989.944998,221.5 L989.944998,191.5 L994.504998,191.5 L994.504998,221.5 L989.944998,221.5 Z M1005.2,219.22 L1005.2,215.44 L1019.6,215.44 L1019.6,219.22 L1005.2,219.22 Z M1030.295,221.5 L1030.295,191.5 L1034.855,191.5 L1034.855,221.5 L1030.295,221.5 Z" id="Combined-Shape" stroke="#91C4FF" stroke-width="2" fill="#91C4FF"></path>
10
+ <path d="M1166.6,67.22 L1166.6,63.44 L1181,63.44 L1181,67.22 L1166.6,67.22 Z M1247.3,67.22 L1247.3,63.44 L1261.7,63.44 L1261.7,67.22 L1247.3,67.22 Z M1151.345,107.5 L1151.345,77.5 L1155.905,77.5 L1155.905,107.5 L1151.345,107.5 Z M1191.695,107.5 L1191.695,77.5 L1196.255,77.5 L1196.255,107.5 L1191.695,107.5 Z M1206.95,105.22 L1206.95,101.44 L1221.35,101.44 L1221.35,105.22 L1206.95,105.22 Z M1232.045,107.5 L1232.045,77.5 L1236.605,77.5 L1236.605,107.5 L1232.045,107.5 Z M1272.395,107.5 L1272.395,77.5 L1276.955,77.5 L1276.955,107.5 L1272.395,107.5 Z M1287.65,105.22 L1287.65,101.44 L1302.05,101.44 L1302.05,105.22 L1287.65,105.22 Z M1307.825,105.22 L1307.825,101.44 L1322.225,101.44 L1322.225,105.22 L1307.825,105.22 Z M1388.525,105.22 L1388.525,101.44 L1402.925,101.44 L1402.925,105.22 L1388.525,105.22 Z M1408.7,105.22 L1408.7,101.44 L1423.1,101.44 L1423.1,105.22 L1408.7,105.22 Z M1428.875,105.22 L1428.875,101.44 L1443.275,101.44 L1443.275,105.22 L1428.875,105.22 Z M1469.225,105.22 L1469.225,101.44 L1483.625,101.44 L1483.625,105.22 L1469.225,105.22 Z M1509.575,105.22 L1509.575,101.44 L1523.975,101.44 L1523.975,105.22 L1509.575,105.22 Z M1529.75,105.22 L1529.75,101.44 L1544.15,101.44 L1544.15,105.22 L1529.75,105.22 Z M1570.1,105.22 L1570.1,101.44 L1584.5,101.44 L1584.5,105.22 L1570.1,105.22 Z M1590.275,105.22 L1590.275,101.44 L1604.675,101.44 L1604.675,105.22 L1590.275,105.22 Z M1610.45,105.22 L1610.45,101.44 L1624.85,101.44 L1624.85,105.22 L1610.45,105.22 Z M1691.15,105.22 L1691.15,101.44 L1705.55,101.44 L1705.55,105.22 L1691.15,105.22 Z M1711.325,105.22 L1711.325,101.44 L1725.725,101.44 L1725.725,105.22 L1711.325,105.22 Z M1731.5,105.22 L1731.5,101.44 L1745.9,101.44 L1745.9,105.22 L1731.5,105.22 Z M1151.345,145.5 L1151.345,115.5 L1155.905,115.5 L1155.905,145.5 L1151.345,145.5 Z M1186.775,143.22 L1186.775,139.44 L1201.175,139.44 L1201.175,143.22 L1186.775,143.22 Z M1206.95,143.22 L1206.95,139.44 L1221.35,139.44 L1221.35,143.22 L1206.95,143.22 Z M1232.045,145.5 L1232.045,115.5 L1236.605,115.5 L1236.605,145.5 L1232.045,145.5 Z M1273.115,129.48 L1271.975,122.22 L1271.795,117.48 L1277.555,117.48 L1277.375,122.22 L1276.235,129.48 L1273.115,129.48 Z M1287.65,143.22 L1287.65,139.44 L1302.05,139.44 L1302.05,143.22 L1287.65,143.22 Z M1338.02,142.8 L1328.12,116.7 L1332.38,116.7 L1342.28,142.8 L1338.02,142.8 Z M1368.47,142.8 L1378.37,116.7 L1382.63,116.7 L1372.73,142.8 L1368.47,142.8 Z M1408.7,143.22 L1408.7,139.44 L1423.1,139.44 L1423.1,143.22 L1408.7,143.22 Z M1459.07,142.8 L1449.17,116.7 L1453.43,116.7 L1463.33,142.8 L1459.07,142.8 Z M1495.04,129.48 L1493.9,122.22 L1493.72,117.48 L1499.48,117.48 L1499.3,122.22 L1498.16,129.48 L1495.04,129.48 Z M1509.575,143.22 L1509.575,139.44 L1523.975,139.44 L1523.975,143.22 L1509.575,143.22 Z M1557.125,121.26 L1551.425,116.52 L1554.905,113.1 L1559.645,118.74 L1557.125,121.26 Z M1590.275,143.22 L1590.275,139.44 L1604.675,139.44 L1604.675,143.22 L1590.275,143.22 Z M1640.645,142.8 L1630.745,116.7 L1635.005,116.7 L1644.905,142.8 L1640.645,142.8 Z M1671.095,142.8 L1680.995,116.7 L1685.255,116.7 L1675.355,142.8 L1671.095,142.8 Z M1711.325,143.22 L1711.325,139.44 L1725.725,139.44 L1725.725,143.22 L1711.325,143.22 Z M1761.695,142.8 L1751.795,116.7 L1756.055,116.7 L1765.955,142.8 L1761.695,142.8 Z M1151.345,183.5 L1151.345,153.5 L1155.905,153.5 L1155.905,183.5 L1151.345,183.5 Z M1191.695,183.5 L1191.695,153.5 L1196.255,153.5 L1196.255,183.5 L1191.695,183.5 Z M1206.95,181.22 L1206.95,177.44 L1221.35,177.44 L1221.35,181.22 L1206.95,181.22 Z M1232.045,183.5 L1232.045,153.5 L1236.605,153.5 L1236.605,183.5 L1232.045,183.5 Z M1272.395,183.5 L1272.395,153.5 L1276.955,153.5 L1276.955,183.5 L1272.395,183.5 Z M1312.745,183.5 L1312.745,153.5 L1317.305,153.5 L1317.305,183.5 L1312.745,183.5 Z M1353.095,183.5 L1353.095,153.5 L1357.655,153.5 L1357.655,183.5 L1353.095,183.5 Z M1408.7,181.22 L1408.7,177.44 L1423.1,177.44 L1423.1,181.22 L1408.7,181.22 Z M1428.875,181.22 L1428.875,177.44 L1443.275,177.44 L1443.275,181.22 L1428.875,181.22 Z M1449.17,180.8 L1459.07,154.7 L1463.33,154.7 L1453.43,180.8 L1449.17,180.8 Z M1494.32,183.5 L1494.32,153.5 L1498.88,153.5 L1498.88,183.5 L1494.32,183.5 Z M1534.67,183.5 L1534.67,153.5 L1539.23,153.5 L1539.23,183.5 L1534.67,183.5 Z M1575.02,183.5 L1575.02,153.5 L1579.58,153.5 L1579.58,183.5 L1575.02,183.5 Z M1615.37,183.5 L1615.37,153.5 L1619.93,153.5 L1619.93,183.5 L1615.37,183.5 Z M1655.72,183.5 L1655.72,153.5 L1660.28,153.5 L1660.28,183.5 L1655.72,183.5 Z M1711.325,181.22 L1711.325,177.44 L1725.725,177.44 L1725.725,181.22 L1711.325,181.22 Z M1731.5,181.22 L1731.5,177.44 L1745.9,177.44 L1745.9,181.22 L1731.5,181.22 Z M1751.795,180.8 L1761.695,154.7 L1765.955,154.7 L1756.055,180.8 L1751.795,180.8 Z M1176.62,218.8 L1166.72,192.7 L1170.98,192.7 L1180.88,218.8 L1176.62,218.8 Z M1186.775,219.22 L1186.775,215.44 L1201.175,215.44 L1201.175,219.22 L1186.775,219.22 Z M1206.95,219.22 L1206.95,215.44 L1221.35,215.44 L1221.35,219.22 L1206.95,219.22 Z M1232.045,221.5 L1232.045,191.5 L1236.605,191.5 L1236.605,221.5 L1232.045,221.5 Z M1247.3,219.22 L1247.3,215.44 L1261.7,215.44 L1261.7,219.22 L1247.3,219.22 Z M1272.395,221.5 L1272.395,191.5 L1276.955,191.5 L1276.955,221.5 L1272.395,221.5 Z M1312.745,221.5 L1312.745,191.5 L1317.305,191.5 L1317.305,221.5 L1312.745,221.5 Z M1328,219.22 L1328,215.44 L1342.4,215.44 L1342.4,219.22 L1328,219.22 Z M1353.095,221.5 L1353.095,191.5 L1357.655,191.5 L1357.655,221.5 L1353.095,221.5 Z M1378.37,218.8 L1368.47,192.7 L1372.73,192.7 L1382.63,218.8 L1378.37,218.8 Z M1388.525,219.22 L1388.525,215.44 L1402.925,215.44 L1402.925,219.22 L1388.525,219.22 Z M1408.7,219.22 L1408.7,215.44 L1423.1,215.44 L1423.1,219.22 L1408.7,219.22 Z M1428.875,219.22 L1428.875,215.44 L1443.275,215.44 L1443.275,219.22 L1428.875,219.22 Z M1453.97,221.5 L1453.97,191.5 L1458.53,191.5 L1458.53,221.5 L1453.97,221.5 Z M1469.225,219.22 L1469.225,215.44 L1483.625,215.44 L1483.625,219.22 L1469.225,219.22 Z M1494.32,221.5 L1494.32,191.5 L1498.88,191.5 L1498.88,221.5 L1494.32,221.5 Z M1534.67,221.5 L1534.67,191.5 L1539.23,191.5 L1539.23,221.5 L1534.67,221.5 Z M1549.925,219.22 L1549.925,215.44 L1564.325,215.44 L1564.325,219.22 L1549.925,219.22 Z M1575.02,221.5 L1575.02,191.5 L1579.58,191.5 L1579.58,221.5 L1575.02,221.5 Z M1615.37,221.5 L1615.37,191.5 L1619.93,191.5 L1619.93,221.5 L1615.37,221.5 Z M1630.625,219.22 L1630.625,215.44 L1645.025,215.44 L1645.025,219.22 L1630.625,219.22 Z M1655.72,221.5 L1655.72,191.5 L1660.28,191.5 L1660.28,221.5 L1655.72,221.5 Z M1680.995,218.8 L1671.095,192.7 L1675.355,192.7 L1685.255,218.8 L1680.995,218.8 Z M1691.15,219.22 L1691.15,215.44 L1705.55,215.44 L1705.55,219.22 L1691.15,219.22 Z M1711.325,219.22 L1711.325,215.44 L1725.725,215.44 L1725.725,219.22 L1711.325,219.22 Z M1731.5,219.22 L1731.5,215.44 L1745.9,215.44 L1745.9,219.22 L1731.5,219.22 Z M1756.595,221.5 L1756.595,191.5 L1761.155,191.5 L1761.155,221.5 L1756.595,221.5 Z" id="Combined-Shape" stroke="#EF5FA7" stroke-width="2" fill="#EF5FA7"></path>
11
+ <path d="M541.174999,143.22 L541.174999,139.44 L555.574999,139.44 L555.574999,143.22 L541.174999,143.22 Z M561.349999,143.22 L561.349999,139.44 L575.749999,139.44 L575.749999,143.22 L561.349999,143.22 Z M581.524999,143.22 L581.524999,139.44 L595.924999,139.44 L595.924999,143.22 L581.524999,143.22 Z M601.699999,143.22 L601.699999,139.44 L616.099999,139.44 L616.099999,143.22 L601.699999,143.22 Z M621.874999,143.22 L621.874999,139.44 L636.274999,139.44 L636.274999,143.22 L621.874999,143.22 Z M541.174999,181.22 L541.174999,177.44 L555.574999,177.44 L555.574999,181.22 L541.174999,181.22 Z M561.349999,181.22 L561.349999,177.44 L575.749999,177.44 L575.749999,181.22 L561.349999,181.22 Z M581.524999,181.22 L581.524999,177.44 L595.924999,177.44 L595.924999,181.22 L581.524999,181.22 Z M601.699999,181.22 L601.699999,177.44 L616.099999,177.44 L616.099999,181.22 L601.699999,181.22 Z M621.874999,181.22 L621.874999,177.44 L636.274999,177.44 L636.274999,181.22 L621.874999,181.22 Z" id="Combined-Shape" fill="#FFFFFF"></path>
12
+ <path d="M1045.55,143.22 L1045.55,139.44 L1059.95,139.44 L1059.95,143.22 L1045.55,143.22 Z M1065.725,143.22 L1065.725,139.44 L1080.125,139.44 L1080.125,143.22 L1065.725,143.22 Z M1085.9,143.22 L1085.9,139.44 L1100.3,139.44 L1100.3,143.22 L1085.9,143.22 Z M1106.075,143.22 L1106.075,139.44 L1120.475,139.44 L1120.475,143.22 L1106.075,143.22 Z M1126.25,143.22 L1126.25,139.44 L1140.65,139.44 L1140.65,143.22 L1126.25,143.22 Z M1045.55,181.22 L1045.55,177.44 L1059.95,177.44 L1059.95,181.22 L1045.55,181.22 Z M1065.725,181.22 L1065.725,177.44 L1080.125,177.44 L1080.125,181.22 L1065.725,181.22 Z M1085.9,181.22 L1085.9,177.44 L1100.3,177.44 L1100.3,181.22 L1085.9,181.22 Z M1106.075,181.22 L1106.075,177.44 L1120.475,177.44 L1120.475,181.22 L1106.075,181.22 Z M1126.25,181.22 L1126.25,177.44 L1140.65,177.44 L1140.65,181.22 L1126.25,181.22 Z" id="Combined-Shape" fill="#FFFFFF"></path>
13
+ </g>
14
+ </svg>
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-shell-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Tareq El Dandachi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-11-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 3.8.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 3.8.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - tareqdandachi@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/head.html
66
+ - _includes/header.html
67
+ - _layouts/default.html
68
+ - _layouts/error.html
69
+ - _layouts/home.html
70
+ - _layouts/page.html
71
+ - assets/css/main.scss
72
+ - assets/css/syntax-highlighting.css
73
+ - assets/theme_logo.svg
74
+ homepage: https://tareqdandachi.github.io/jekyll-shell-theme/
75
+ licenses:
76
+ - MIT
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubygems_version: 3.0.6
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: A Jekyll Theme that looks like a shell
97
+ test_files: []