converted to gulp npm compatible

This commit is contained in:
jorge 2022-03-29 17:40:39 +02:00
parent 10ac80ed32
commit 1373194415
165 changed files with 41265 additions and 2275 deletions

4
.babelrc Normal file
View File

@ -0,0 +1,4 @@
{
"presets": ["@babel/preset-env"],
"compact": false
}

5
.browserslistrc Normal file
View File

@ -0,0 +1,5 @@
# Browsers that we support
last 2 versions
ie >= 9
ios >= 7
android >= 4.4

1
.gitattributes vendored
View File

@ -1 +0,0 @@
default.css merge=ours

View File

@ -1,5 +0,0 @@
# Changelog
## Version 1.0 (June 03, 2021)
Initial release.

18
MIT-LICENSE.txt Normal file
View File

@ -0,0 +1,18 @@
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

119
README.md
View File

@ -1,119 +0,0 @@
# Arc-hive omeka theme
This is the Arc-hive development theme based on Omeka S theme based on [Omeka Foundation S theme].
## dev site
https://dev-archive.hangar.org/
### designs omeka
We are trying to accomplish this design for the OmekaS system
https://www.figma.com/file/HruKRRVPgfAgSgs8HihI2w/ARCHIVE-WEB-04?node-id=274%3A0
## Installation
For basic out-of-the-box use of the theme, follow the [Omeka S User Manual instructions for installing themes](https://omeka.org/s/docs/user-manual/sites/site_theme/#installing-themes).
```bash
cd themes
git clone https://git.hangar.org/arcHIVE-tech/Arc-hive-omeka-theme.git archive
cd archive
git checkout arc-hive-v01
chown -R www-data:www-data ./
```
to update changes
```bash
cd themes/archive
git pull
chown -R www-data:www-data ./
```
## Arc-hive theme notes
### Configure
The main menu can be retrieved from a wordpress site and rendered. To configure this, edit `view/common/wordpress-menu.phtml`. Optional.
```
# Config
$wordpress_site="https://my.wordpress.site";
$wordpress_endpoint="https://my.wordpress.site/wp-json/menus/v1/menus/4";
```
For more advanced use, such as customizing the theme with Sass, you'll need to install the tools with [NodeJS](https://nodejs.org/en/) (0.12 or greater). Navigate to your theme directory and run `npm install`.
## Theme Configuration
* **Stylesheet**: The theme provides 4 style options.
* **Default** uses ZURB Foundation's default styles for prototyping, which are all viewable in their documentation under the [Kitchen Sink](https://get.foundation/sites/docs/kitchen-sink.html).
* **Revolution** aims to capture the feel of old documents and juxtaposes it with a bright red accent. It includes a textured paper background image.
* **Sea Foam** offers a clean, friendly look with a teal palette.
* **Inkwell** features a high contrast serif family for its typography, as well as sunny yellow accents.
* **Navigation layouts**: Global navigation can display as a **horizontal top bar with optional dropdown menus** or a **left vertical column**.
* **Show Top Navigation Child Pages**: Toggle display of child pages within the main navigation.
* **Top Navigation Depth**: If the main navigation is set to display child pages, this setting controls how many navigation levels to display. Setting this to '0' shows all levels.
* **Logo**: Upload an image asset to use as a logo in place of a text site title.
* **Footer Content**: Control what appears in the footer. This field takes HTML markup.
* **Layout for Browse Pages**: Select how to display items within their "browse" views.
* **Grid**: Items are organized into rows and columns. This is recommended for items that prominently feature images.
* **List**: Items are stacked into a single column.
* **Toggle (default: grid)**: Site visitors can choose to display the browse views as grids or lists, and grids are the default.
* **Toggle (default: list)**: Site visitors can choose to display the browse views as grids or lists, and lists are the default.
* **Layout for Show Pages**: Resource metadata can show display as **stacked** with properties as headings above their values, or **inline** with properties as headings inline with their values.
## Customizing the Theme
### CSS classes
Arc-hive projecct css classes will start with `arc-` as ex: `arc-my-class-name`
### Sass Tasks
Run these commands within the theme's root directory.
* **npm start**: While this task runs, it watches for changes to sass files and recompiles the CSS.
* **gulp sass**: This is the one-off task for compiling the current Sass/CSS.
### Sass File Structure
Foundation S comes with the Default theme, as well as 3 other customized stylesheets that were built on top of Default. The "Sea Foam" theme has the fewest overrides and is thus the easiest reference for a custom theme model.
**/asset/sass/seafoam.scss**
```
@charset 'utf-8';
@import 'globals-default';
@import 'globals-seafoam';
@import 'settings';
// Sea Foam Settings
$topbar-background: $primary-color;
$thumbnail-border: 4px solid $secondary-color;
$thumbnail-shadow: none;
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
$button-background: $secondary-color;
$button-color: $primary-color;
@import 'foundation-core';
@import 'omeka';
header a {
color: $white;
}
```
Much of the customizability within the theme lies in managing its settings variables. ZURB Foundation's default global variables from their original `_settings.scss` all sit in `_globals-default.scss`. Many of these variables are used throughout the rest of `_settings.scss`, so it was necessary to separate them out into their own file if the theme writer wants to set their own global variables. Here all the overrides live in `_globals-seafoam.scss`, and so all overridden values will be appropriately updated for use throughout the rest of `_settings.scss`.
Any non-global setting variable overrides should come after the import for `_settings.scss` and before their usagee in the rule files, `_foundation-core.scss`, and `_omeka.scss`.
ZURB Foundation's default style rules are all managed in `_foundation-core.scss`. All style rules specific to Omeka S are contained within `_omeka.scss`.
After all those imports come all style rules specific to the theme.

View File

@ -0,0 +1,47 @@
<?xml version="1.0"?>
<ruleset name="WordPress Theme Coding Standards">
<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
<!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml -->
<!-- Set a description for this ruleset. -->
<description>A custom set of code standard rules to check for WordPress themes.</description>
<!-- Include the WordPress ruleset, with exclusions. -->
<rule ref="WordPress">
<exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" />
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed" />
<exclude name="Generic.Files.EndFileNewline.NotFound" />
<exclude name="Generic.Strings.UnnecessaryStringConcat.Found" />
<exclude name="Generic.Formatting.DisallowMultipleStatements.SameLine" />
<exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace" />
<exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket" />
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket" />
<exclude name="Squiz.Commenting.FileComment.WrongStyle" />
<exclude name="Squiz.Commenting.BlockComment.NoEmptyLineBefore" />
<exclude name="Squiz.Commenting.FunctionComment.MissingParamTag" />
<exclude name="Squiz.Commenting.InlineComment.NotCapital" />
<exclude name="Squiz.Commenting.InlineComment.SpacingAfter" />
<exclude name="Squiz.Commenting.VariableComment.WrongStyle" />
<exclude name="Squiz.Commenting.FunctionComment.Missing" />
<exclude name="Squiz.Commenting.FunctionComment.WrongStyle" />
<exclude name="Squiz.Commenting.InlineComment.InvalidEndChar" />
<exclude name="Squiz.Commenting.ClassComment.Missing" />
<exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace" />
<exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterOpenHint" />
<exclude name="WordPress.XSS.EscapeOutput.UnsafePrintingFunction" />
<exclude name="WordPress.XSS.EscapeOutput.OutputNotEscaped" />
<exclude name="WordPress.Arrays.ArrayDeclaration.NoSpaceAfterOpenParenthesis" />
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceAfterArrayOpener" />
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceBeforeArrayCloser" />
<exclude name="WordPress.Variables.GlobalVariables" />
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis" />
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeCloseParenthesis)" />
<exclude name="WordPress.VIP.RestrictedFunctions" />
</rule>
</ruleset>

13888
assets/css/app.css Normal file

File diff suppressed because one or more lines are too long

BIN
assets/fonts/WorkSans-Medium.woff Executable file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5069;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
.st6{fill:url(#SVGID_4_);}
</style>
<g class="st0">
<polyline class="st1" points="15.4,124.2 133.9,248.4 208.8,34.2 15.4,124.2 "/>
<polyline class="st1" points="220.2,158.5 137.4,17.4 248.8,115.6 219.4,161.2 "/>
<polyline class="st1" points="248.8,115.6 15.4,124.2 52.4,55.6 137.4,17.4 "/>
<g>
<circle class="st2" cx="248.8" cy="115.6" r="4.1"/>
<circle class="st2" cx="15.4" cy="124.2" r="4.6"/>
<circle class="st2" cx="137.4" cy="17.4" r="4.1"/>
<circle class="st2" cx="52.4" cy="55.6" r="3.3"/>
<circle class="st2" cx="133.9" cy="248.4" r="3.8"/>
<circle class="st2" cx="208.8" cy="34.2" r="4.7"/>
<circle class="st2" cx="219.4" cy="161.2" r="5.3"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="126.3543" y1="93.2575" x2="138.7467" y2="93.2575">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="126.4" y="80.3" class="st3" width="12.4" height="26"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="96.7949" y1="187.5047" x2="114.2522" y2="97.1009">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<rect x="97.4" y="97.1" class="st4" width="16.2" height="90.6"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="80.9993" y1="93.2569" x2="126.3543" y2="93.2569">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="81" y="85.4" class="st5" width="45.4" height="15.7"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="145.8713" y1="185.0645" x2="190.5812" y2="87.2338">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<path class="st6" d="M181.1,81.2l-2,0.9v10.7l-8.6,5.7l-7.6-5.7V82.2l-1.4-0.7l-8.1,11.6v12.3l9.5,8.5v73.8h16.3v-74.2l9.8-8.9
V93.2L181.1,81.2z M171.2,182.4c-1.7,0-3-1.4-3-3c0-1.7,1.4-3,3-3c1.7,0,3,1.4,3,3C174.2,181,172.9,182.4,171.2,182.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.16;}
.st1{fill:none;stroke:#26373E;stroke-width:0.6356;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
.st6{fill:url(#SVGID_4_);}
.st7{fill:url(#SVGID_5_);}
.st8{fill:url(#SVGID_6_);}
.st9{fill:#FFFFFF;}
.st10{fill:url(#SVGID_7_);}
.st11{fill:url(#SVGID_8_);}
.st12{fill:url(#SVGID_9_);}
.st13{fill:url(#SVGID_10_);}
.st14{fill:url(#SVGID_11_);}
.st15{fill:url(#SVGID_12_);}
.st16{fill:url(#SVGID_13_);}
.st17{fill:url(#SVGID_14_);}
.st18{fill:url(#SVGID_15_);}
.st19{fill:url(#SVGID_16_);}
</style>
<g class="st0">
<polyline class="st1" points="14.5,191.2 237.4,214.9 156.5,11.6 14.5,187.7 49.4,38.9 263.3,173.2 109.7,255.8 8.7,77.7 "/>
<polyline class="st1" points="49.4,38.9 156.5,11.6 263.3,173.2 "/>
<g>
<circle class="st2" cx="49.4" cy="38.9" r="5.1"/>
<circle class="st2" cx="156.5" cy="11.6" r="5.1"/>
<circle class="st2" cx="263.3" cy="173.2" r="5.7"/>
<circle class="st2" cx="237.4" cy="214.9" r="5.1"/>
<circle class="st2" cx="109.7" cy="255.8" r="4.8"/>
<circle class="st2" cx="8.7" cy="77.7" r="5.9"/>
<circle class="st2" cx="14.5" cy="187.7" r="6.7"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="89.8471" y1="134.6955" x2="163.2465" y2="134.6955">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="89.8" y="81.4" class="st3" width="73.4" height="106.6"/>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="90.6335" y1="179.444" x2="156.1698" y2="81.7949">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.4956" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<rect x="89.8" y="81.4" class="st4" width="66.6" height="99.2"/>
</g>
<g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="172.3255" y1="178.4396" x2="190.0203" y2="114.214">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<polygon class="st5" points="186.2,180.6 175.7,180.6 175.7,113.7 180.9,100.8 186.2,113.7 "/>
</g>
<g>
<path class="st9" d="M111.3,132.4v-17.8h12.6v3.3h-8.8v3.7h8.6v3.3h-8.6v7.4H111.3z"/>
<path class="st9" d="M125.7,123.6c0-5.4,3-9.2,8.3-9.2c2.2,0,4,0.7,5.3,1.8l-1.7,2.9c-1-0.9-2-1.4-3.5-1.4c-2.6,0-4.5,2.2-4.5,5
c0,0.1,0,0.2,0,0.4c0.8-1.2,2.6-2.3,4.6-2.3c3.2,0,6.1,2,6.1,5.8c0,3.5-2.8,6.1-6.8,6.1C128,132.8,125.7,128.6,125.7,123.6z
M136.4,126.8c0-1.9-1.6-2.7-3.3-2.7c-1.3,0-2.6,0.6-3.5,1.7c0.2,1.7,1.1,3.6,3.6,3.6C135.2,129.4,136.4,128,136.4,126.8z"/>
</g>
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="91.6015" x2="95.586" y2="91.6015">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="89.4" class="st6" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="100.4609" x2="95.586" y2="100.4609">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="98.2" class="st7" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="127.0393" x2="95.586" y2="127.0393">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="124.8" class="st8" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="135.8988" x2="95.586" y2="135.8988">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="133.7" class="st10" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="162.4771" x2="95.586" y2="162.4771">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="160.3" class="st11" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="171.3366" x2="95.586" y2="171.3366">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="169.1" class="st12" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="109.3204" x2="95.586" y2="109.3204">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="107.1" class="st13" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="118.1799" x2="95.586" y2="118.1799">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="116" class="st14" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="144.7582" x2="95.586" y2="144.7582">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="142.5" class="st15" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="153.6177" x2="95.586" y2="153.6177">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="151.4" class="st16" width="12" height="4.4"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5134;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
.st6{fill:url(#SVGID_4_);}
.st7{fill:url(#SVGID_5_);}
.st8{fill:url(#SVGID_6_);}
.st9{fill:url(#SVGID_7_);}
</style>
<g class="st0">
<polyline class="st1" points="91.2,27.9 250.6,116.3 13.7,117.1 208.2,54.1 "/>
<polyline class="st1" points="181.5,227.2 258.7,182.9 7.3,179.2 179.2,228.8 "/>
<polyline class="st1" points="7.3,179.2 91.2,27.9 208.2,54.1 258.7,182.9 "/>
<g>
<circle class="st2" cx="7.3" cy="179.2" r="4.1"/>
<circle class="st2" cx="91.2" cy="27.9" r="4.6"/>
<circle class="st2" cx="258.7" cy="182.9" r="4.1"/>
<circle class="st2" cx="208.2" cy="54.1" r="3.3"/>
<circle class="st2" cx="250.6" cy="116.3" r="3.9"/>
<circle class="st2" cx="13.7" cy="117.1" r="4.7"/>
<circle class="st2" cx="179.2" cy="228.8" r="5.4"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="127.1718" y1="187.3774" x2="152.0181" y2="156.8904">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<polygon class="st3" points="145.4,169.2 145.4,154.5 133.9,154.5 133.9,169.2 112.5,169.2 112.5,174.9 166.9,174.9 166.9,169.2
"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="85.0996" y1="118.4856" x2="194.2902" y2="118.4856">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<rect x="85.1" y="80.7" class="st4" width="109.2" height="75.6"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="91.1375" y1="149.8817" x2="188.7937" y2="86.7396">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="89.9" y="86.4" class="st5" width="99.6" height="64.1"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="58.8981" y1="153.359" x2="119.2881" y2="153.359">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="58.9" y="114.3" class="st6" width="60.4" height="78"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="63.3368" y1="184.134" x2="114.438" y2="121.4314">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="63.9" y="121.7" class="st7" width="50.4" height="61.6"/>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="180.4045" y1="159.832" x2="210.4102" y2="159.832">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="180.4" y="137.3" class="st8" width="30" height="45.1"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="184.9704" y1="174.5269" x2="206.6195" y2="142.2015">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="184.9" y="143.5" class="st9" width="21" height="30.9"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5162;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
</style>
<g class="st0">
<polyline class="st1" points="171,16.5 8.5,102.5 160.1,236.6 173.5,17.8 264.4,151.9 79.7,241.1 248,86.7 90.2,25.6 19.2,186.2
"/>
<polyline class="st1" points="264.4,151.9 160.1,236.6 79.7,241.1 19.2,186.2 8.5,102.5 "/>
<g>
<circle class="st2" cx="264.4" cy="151.9" r="4.1"/>
<circle class="st2" cx="160.1" cy="236.6" r="4.1"/>
<circle class="st2" cx="79.7" cy="241.1" r="4.6"/>
<circle class="st2" cx="8.5" cy="102.5" r="4.1"/>
<circle class="st2" cx="19.2" cy="186.2" r="3.4"/>
<circle class="st2" cx="248" cy="86.7" r="3.9"/>
<circle class="st2" cx="90.2" cy="25.6" r="4.8"/>
<circle class="st2" cx="173.5" cy="17.8" r="5.4"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="50.9584" y1="135.1361" x2="104.5381" y2="135.1361">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<path class="st3" d="M51,140.7v-11.1l53.6-23.9V117l-42.6,18.3l42.6,18v11.3L51,140.7z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="112.5123" y1="135" x2="156.683" y2="135">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<path class="st4" d="M112.5,185.8l33.1-101.5h11.1l-33.1,101.5H112.5z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="165.4619" y1="135.1361" x2="219.0416" y2="135.1361">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<path class="st5" d="M165.5,164.6v-11.3l42.6-18L165.5,117v-11.3l53.6,23.9v11.1L165.5,164.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
xml:space="preserve"
width="865.62665"
height="355.04001"
viewBox="0 0 865.62665 355.04001"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
id="g10"
transform="matrix(1.3333333,0,0,-1.3333333,0,355.04)"><g
id="g12"
transform="scale(0.1)"><path
d="M 75,1331.41 C 79.5977,1005.45 208.422,696.109 437.77,460.301 667.211,224.398 972.246,87.8789 1296.67,75.8906 1570.9,65.8984 1834.82,142.141 2060.1,296.77 l 3.56,2.16 c 14.78,7.89 26.85,14.961 37.88,22.179 l 450.53,340.071 c 190.26,125.41 423.77,189 694.03,189 270.27,0 503.77,-63.59 694.04,-189 l 1.96,-1.371 448.57,-338.7 c 11.12,-7.277 23.38,-14.449 38.49,-22.5 l 3.57,-2.16 c 225.26,-154.41 489.16,-230.6677 763.23,-220.4099 324.33,12.0898 629.26,148.6409 858.61,384.5119 229.24,235.738 358.02,545.009 362.65,870.859 -4.63,325.85 -133.41,635.11 -362.65,870.86 -229.35,235.87 -534.28,372.43 -858.61,384.51 -274.03,10.21 -537.98,-66.01 -763.23,-220.4 l -3.56,-2.17 c -15.1,-8.04 -27.37,-15.21 -38.5,-22.5 l -450.53,-340.07 c -190.26,-125.41 -423.76,-189 -694.04,-189 -270.27,0 -503.77,63.59 -694.03,189 l -1.95,1.38 -448.59,338.69 c -10.99,7.2 -23.06,14.27 -37.87,22.17 l -3.56,2.17 c -225.26,154.62 -489.23,230.99 -763.43,220.87 -324.424,-11.98 -629.459,-148.5 -858.9,-384.4 C 208.422,1966.72 79.5977,1657.37 75,1331.41 Z M 1344.92,0 c -16.97,0 -33.96,0.308594 -51.01,0.949219 C 950.105,13.6406 626.961,158.211 384.004,408.012 141.137,657.719 4.76172,985.43 0,1330.8 l 44.3984,0.61 L 0,1332.02 c 4.76172,345.37 141.137,673.09 384.004,922.79 242.957,249.8 566.101,394.36 909.906,407.06 289.68,10.66 568.66,-69.79 806.92,-232.81 16.5,-8.87 30.2,-16.96 42.97,-25.38 l 1.95,-1.38 448.59,-338.69 c 177.62,-116.77 396.88,-175.97 651.76,-175.97 254.87,0 474.15,59.21 651.77,175.96 l 450.54,340.08 c 12.91,8.52 26.82,16.72 43.64,25.74 238.25,162.78 517.22,243.13 806.7,232.31 343.7,-12.81 666.74,-157.41 909.6,-407.17 242.76,-249.67 379.08,-577.31 383.87,-922.59 l -40.85,-0.56 40.85,-0.56 C 6487.43,985.57 6351.11,657.922 6108.35,408.262 5865.49,158.512 5542.45,13.8984 5198.75,1.10156 4909.03,-9.73828 4630.29,70.6289 4392.05,233.41 c -16.83,9.012 -30.73,17.219 -43.64,25.719 l -1.96,1.383 -448.59,338.707 C 3720.23,715.98 3500.96,775.18 3246.1,775.18 c -254.87,0 -474.13,-59.2 -651.76,-175.969 L 2143.79,259.129 C 2131,250.691 2117.3,242.609 2100.83,233.762 1876.58,80.332 1616.26,0 1344.92,0"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path14" /><path
d="m 823.75,1266.44 -64.387,179.6 -25.41,80.48 h -2.543 l -23.719,-78.79 -66.082,-181.29 z m 27.109,-73.7 H 615.352 l -53.375,-146.57 h -93.188 l 210.945,559.13 h 108.438 l 210.945,-559.13 h -95.73 l -52.528,146.57"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path16" /><path
d="m 1233.8,1345.23 h 130.47 c 73.7,0 109.28,29.64 109.28,91.49 0,61.85 -35.58,91.49 -109.28,91.49 H 1233.8 Z m 120.3,-75.4 H 1233.8 V 1046.17 H 1144 v 559.13 h 227.89 c 120.3,0 195.7,-62.69 195.7,-167.73 0,-80.49 -44.06,-135.55 -118.61,-157.58 l 151.64,-233.82 h -104.19 l -142.33,223.66"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path18" /><path
d="m 1986.12,1037.71 c -161.81,0 -263.47,110.12 -263.47,288.02 0,177.91 102.51,288.05 262.62,288.05 110.98,0 189.77,-46.6 223.66,-137.25 l -85.57,-38.12 c -22.03,66.08 -63.54,96.58 -133.01,96.58 -104.2,0 -172.82,-76.25 -172.82,-209.26 0,-132.14 63.54,-209.24 169.43,-209.24 71.16,0 122.84,35.58 144.03,106.74 l 86.4,-28.8 c -34.73,-102.5 -121.99,-156.72 -231.27,-156.72"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20" /><path
d="m 4559.9,1605.3 v -559.13 h -91.49 v 243.99 h -276.17 v -243.99 h -90.66 v 559.13 h 90.66 v -237.2 h 276.17 v 237.2 h 91.49"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path22" /><path
d="m 4836.95,1046.17 h -90.64 v 559.13 h 90.64 v -559.13"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" /><path
d="m 5273.25,1046.17 h -105.9 L 4959.8,1605.3 h 96.58 l 130.46,-371.9 33.88,-110.99 33.89,110.14 130.47,372.75 h 95.73 l -207.56,-559.13"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path26" /><path
d="m 6019.63,1124.11 v -77.94 h -416.8 v 559.13 h 404.94 v -77.94 H 5693.48 V 1366.4 h 245.67 v -76.24 h -245.67 v -166.05 h 326.15"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" /></g></g></svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,146 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 908.7 167" style="enable-background:new 0 0 908.7 167;" xml:space="preserve">
<g id="Layer_1">
<path d="M660.8,0v167h247.8V0H660.8z M825.4,53.8l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0l-2.1,1.5l-3,2.2l1.1,3.4
l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5L825.4,53.8z M725.4,90.2l0.7-2.3l1.1-3.4l-3-2.2
l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1l-2.1,1.5l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.1-2.1
l-3.2,2.1L725.4,90.2z M744.1,109l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5
l2.6-0.1l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1L744.1,109z M744.2,55.2l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1
l-3.2,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0L744.2,55.2z
M763.6,128.5l-3,2.2l1.1,3.4l0.8,2.3l-2-1.3l-3.1-2.1l-3.2,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4
l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1L763.6,128.5z M763.9,35.8l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.1-2.1l-3.2,2.1l-2,1.3
l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L763.9,35.8z M790.9,135.8l-3,2.2
l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2
l1.2,3.4l3.8,0.1l2.6,0.1L790.9,135.8z M790.9,28.6l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4
l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L790.9,28.6z M817.9,128.7l-3,2.2l1.1,3.4l0.7,2.3
l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0
L817.9,128.7z M818.1,35.8l-3,2.2l1.1,3.4l0.8,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1
l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0.1L818.1,35.8z M837.5,109.2l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1
l-3.2,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L837.5,109.2z
M844.8,82.3l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4
l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0.1L844.8,82.3z"/>
</g>
<g id="Layer_4">
<g>
<path d="M273.6,28.5c-1.5,7.7-7.3,12-15,12c-10.1,0-15.9-7.4-15.9-18.1c0-10.9,6.3-18,16.3-18c7.4,0,13.1,4.3,14.5,12h-5.3
c-1.1-4.5-4.4-7.4-9.5-7.4c-5.9,0-10.4,4.7-10.4,13.4c0,8.6,4.4,13.5,10.5,13.5c5.1,0,8.5-2.8,9.6-7.4H273.6z"/>
<path d="M302.1,27c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C295.7,13.5,302.1,17.7,302.1,27z
M289.5,36.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C282.3,33.4,285.8,36.2,289.5,36.2z"/>
<path d="M306.9,29.1v-4.6h15.5v4.6H306.9z"/>
<path d="M328.8,12.3c0-5.7,1.7-7.2,7.7-7.2h2.3v4h-1.9c-2.5,0-3.1,0.5-3.1,3.2V14h5v3.8h-5v22h-5v-22h-3.6V14h3.6V12.3z"/>
<path d="M359.1,36.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V14h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2V14h5
v25.8h-5V36.2z"/>
<path d="M375.8,17.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5V24.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3v13.9
h-5V14h5V17.8z"/>
<path d="M416.2,5h5v34.8h-5v-3.6c-1.6,2.6-4.3,4.3-8.1,4.3c-6,0-11.1-5-11.1-13.5c0-8.4,5.1-13.4,11.1-13.4c3.8,0,6.5,1.6,8.1,4.3
V5z M409.3,17.7c-4.1,0-7,3.5-7,9.3s2.8,9.3,7,9.3c3.8,0,7.1-2.9,7.1-9.3C416.4,20.6,413.1,17.7,409.3,17.7z"/>
<path d="M445.6,32.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C442.4,36.2,444.5,34.7,445.6,32.3z M431.4,24.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C434.9,17.6,432,19.6,431.4,24.5z"/>
<path d="M473.5,5h5v34.8h-5v-3.6c-1.6,2.6-4.3,4.3-8.1,4.3c-6,0-11.1-5-11.1-13.5c0-8.4,5.1-13.4,11.1-13.4c3.8,0,6.5,1.6,8.1,4.3
V5z M466.6,17.7c-4.1,0-7,3.5-7,9.3s2.8,9.3,7,9.3c3.8,0,7.1-2.9,7.1-9.3C473.7,20.6,470.4,17.7,466.6,17.7z"/>
<path d="M501.5,5v12.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v3.6h-5V5
H501.5z M508.4,36.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3C501.3,33.4,504.5,36.3,508.4,36.3z"/>
<path d="M523.8,48.2v-4h2c2.7,0,3.8-0.2,5.1-3.9l0.2-0.6L521.8,14h5.5l6.2,19.2l6.1-19.2h5.2l-9.1,26.4c-2.1,6.1-3.6,7.8-9.5,7.8
H523.8z"/>
<path d="M560.4,7.4h5V14h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4h-3.6c-5.2,0-6.4-1.3-6.4-6.6V17.8h-3.9V14h3.9V7.4z"/>
<path d="M580.3,17.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5V24.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3v13.9
h-5V5h5V17.8z"/>
<path d="M621,32.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C617.8,36.2,619.9,34.7,621,32.3z M606.8,24.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C610.3,17.6,607.4,19.6,606.8,24.5z"/>
<path d="M31,84.5c-1.5,7.7-7.3,12-15,12C5.9,96.5,0,89.1,0,78.4c0-10.9,6.3-18,16.3-18c7.4,0,13.1,4.3,14.5,12h-5.3
C24.5,67.8,21.1,65,16,65c-5.9,0-10.4,4.7-10.4,13.4c0,8.6,4.4,13.5,10.5,13.5c5.1,0,8.5-2.8,9.6-7.4H31z"/>
<path d="M49.3,75.1C48.4,75,47.6,75,46.8,75c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7c0.4,0,1,0,1.4,0
V75.1z"/>
<path d="M70.5,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9H56.2
c0.5,4.8,3.5,7.7,7.5,7.7C67.3,92.2,69.4,90.7,70.5,88.3z M56.3,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9C59.8,73.6,56.9,75.6,56.3,80.5z
"/>
<path d="M79,88.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C82.9,96.5,79,93.6,79,88.9z M96.6,83.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V83.5z"/>
<path d="M108.6,63.4h5V70h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4H115c-5.2,0-6.4-1.3-6.4-6.6V73.8h-3.9V70h3.9V63.4z"/>
<path d="M128.5,61v5.5h-5V61H128.5z M128.5,70v25.8h-5V70H128.5z"/>
<path d="M143.9,89.2l6.5-19.2h5.2L146,95.8h-4.6L131.9,70h5.5L143.9,89.2z"/>
<path d="M176.1,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C172.9,92.2,175.1,90.7,176.1,88.3z M161.9,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C165.5,73.6,162.6,75.6,161.9,80.5z"/>
<path d="M198.1,61h24.1v4.7h-18.6v9.9h17.6v4.6h-17.6v10.9h18.6v4.7h-24.1V61z"/>
<path d="M243,92.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V70h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2V70h5
v25.8h-5V92.2z"/>
<path d="M268.2,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M295,83c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C288.6,69.5,295,73.7,295,83z
M282.4,92.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C275.2,89.4,278.7,92.2,282.4,92.2z"/>
<path d="M305,70v3.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v12h-5V70H305
z M311.9,92.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3C304.8,89.4,308.1,92.3,311.9,92.3z"/>
<path d="M347.2,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C344,92.2,346.1,90.7,347.2,88.3z M333,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9C336.5,73.6,333.6,75.6,333,80.5
z"/>
<path d="M380.3,61c8.1,0,14.6,1.6,14.6,10.7c0,8.7-6.2,10.6-14.6,10.6h-5.7v13.5h-5.5V61H380.3z M374.6,65.5v12.2h6
c4.8,0,8.6-0.6,8.6-6c0-5.7-4-6.2-8.7-6.2H374.6z"/>
<path d="M412.1,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M438.9,83c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C432.5,69.5,438.9,73.7,438.9,83z
M426.3,92.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C419.1,89.4,422.6,92.2,426.3,92.2z"/>
<path d="M461.5,70h5v22.8c0,4.8-1,7.3-2.8,9.1c-2,2.1-5.1,3.1-9,3.1c-5.8,0-10-2.5-10.8-7.9h5.1c0.5,2.4,2,3.7,5.8,3.7
c2.4,0,4.1-0.7,5.2-1.9c1-1.1,1.5-2.4,1.5-5.1v-2.7c-1.6,2.6-4.2,4.3-8,4.3c-6,0-11-4.8-11-13c0-8.2,5-12.9,11-12.9
c3.8,0,6.4,1.6,8,4.3V70z M454.6,73.7c-4.1,0-6.8,3.3-6.8,8.8c0,5.6,2.7,8.9,6.8,8.9c3.8,0,7-2.7,7-8.9
C461.7,76.3,458.5,73.7,454.6,73.7z"/>
<path d="M486.6,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M488,88.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C492,96.5,488,93.6,488,88.9z M505.7,83.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V83.5z"/>
<path d="M521.6,95.8h-5V70h5v3.7c1.5-2.5,3.9-4.2,7.6-4.2c4,0,6.3,1.7,7.5,4.6c2.2-3.2,5.2-4.6,8.5-4.6c6,0,8.4,4,8.4,10v16.3h-5
V80.9c0-3.7-0.6-7.2-5.1-7.2c-3.9,0-6,3.1-6,8.3v13.9h-5V80.9c0-3.7-0.6-7.2-5.1-7.2c-4,0-6,3.1-6,8.3V95.8z"/>
<path d="M565,95.8h-5V70h5v3.7c1.5-2.5,3.9-4.2,7.6-4.2c4,0,6.3,1.7,7.5,4.6c2.2-3.2,5.2-4.6,8.5-4.6c6,0,8.4,4,8.4,10v16.3h-5
V80.9c0-3.7-0.6-7.2-5.1-7.2c-3.9,0-6,3.1-6,8.3v13.9h-5V80.9c0-3.7-0.6-7.2-5.1-7.2c-4,0-6,3.1-6,8.3V95.8z"/>
<path d="M621,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C617.8,92.2,619.9,90.7,621,88.3z M606.8,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C610.3,73.6,607.4,75.6,606.8,80.5z"/>
<path d="M159.7,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C153.2,125.5,159.7,129.7,159.7,139z M147.1,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C139.8,145.4,143.3,148.2,147.1,148.2z"/>
<path d="M166,124.3c0-5.7,1.7-7.2,7.7-7.2h2.3v4h-1.9c-2.5,0-3.1,0.5-3.1,3.2v1.8h5v3.8h-5v22h-5v-22h-3.6V126h3.6V124.3z"/>
<path d="M192.6,119.4h5v6.6h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4H199c-5.2,0-6.4-1.3-6.4-6.6v-15.4h-3.9V126h3.9V119.4z
"/>
<path d="M212.5,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V117h5V129.8z"/>
<path d="M253.2,144.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C250,148.2,252.1,146.7,253.2,144.3z M239,136.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C242.5,129.6,239.7,131.6,239,136.5z"/>
<path d="M275.2,117h24.1v4.7h-18.6v9.9h17.6v4.6h-17.6v10.9h18.6v4.7h-24.1V117z"/>
<path d="M320.1,148.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V126h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2v-14
h5v25.8h-5V148.2z"/>
<path d="M345.3,131.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V126h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V131.1z"/>
<path d="M372.1,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C365.7,125.5,372.1,129.7,372.1,139z M359.5,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C352.3,145.4,355.8,148.2,359.5,148.2z"/>
<path d="M382.1,126v3.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v12h-5V126
H382.1z M389,148.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3S385.1,148.3,389,148.3z"/>
<path d="M424.3,144.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9H410
c0.5,4.8,3.5,7.7,7.5,7.7C421.1,148.2,423.2,146.7,424.3,144.3z M410.1,136.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C413.6,129.6,410.7,131.6,410.1,136.5z"/>
<path d="M432.8,144.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C436.7,152.5,432.8,149.6,432.8,144.9z M450.4,139.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V139.5
z"/>
<path d="M466.4,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
<path d="M506,117v20.9c0,6.6,2.1,9.9,8.6,9.9c6.5,0,8.6-3.7,8.6-10.3V117h5.5v20.2c0,10.6-4,15.2-14.1,15.2
c-9.8,0-14.1-3.9-14.1-14.9V117H506z"/>
<path d="M540.2,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
<path d="M568.2,117v5.5h-5V117H568.2z M568.2,126v25.8h-5V126H568.2z"/>
<path d="M598.3,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C591.8,125.5,598.3,129.7,598.3,139z M585.7,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C578.4,145.4,581.9,148.2,585.7,148.2z"/>
<path d="M608.2,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,261 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
xml:space="preserve"
width="1219.5468"
height="222.60001"
viewBox="0 0 1219.5468 222.60001"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
id="g10"
transform="matrix(1.3333333,0,0,-1.3333333,0,222.6)"><g
id="g12"
transform="scale(0.1)"><path
d="M 9146.57,0 V 1669.52 H 6668.36 V 0 h 2478.21"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path14" /><path
d="m 8528.84,861.59 -25.86,0.527 -38.24,0.723 -12.52,34.094 -8.11,21.785 -7.97,-21.785 -12.42,-34.094 -38.24,-0.723 -25.84,-0.527 21.09,-15.195 30.14,-21.629 -10.96,-34.133 -7.52,-23.242 20.39,13.457 31.33,20.742 31.7,-20.742 20.14,-13.457 -7.39,23.242 -10.85,34.133 30.03,21.629 21.1,15.195"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path16" /><path
d="m 8528.84,861.59 -25.86,0.527 -38.24,0.723 -12.52,34.094 -8.11,21.785 -7.97,-21.785 -12.42,-34.094 -38.24,-0.723 -25.84,-0.527 21.09,-15.195 30.14,-21.629 -10.96,-34.133 -7.52,-23.242 20.39,13.457 31.33,20.742 31.7,-20.742 20.14,-13.457 -7.39,23.242 -10.85,34.133 30.03,21.629 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path18" /><path
d="m 8339.01,1093.95 -10.84,-34.18 -7.38,-23.18 20.25,13.28 31.47,21.04 31.7,-21.04 20,-13.28 -7.27,23.18 -10.95,34.18 30.04,21.64 21.19,15.2 -25.84,0.47 -38.38,0.6 -12.38,34.18 -8.11,22 -8.01,-22 -12.36,-34.18 -38.26,-0.6 -25.86,-0.47 20.97,-15.2 30.02,-21.64"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20" /><path
d="m 8339.01,1093.95 -10.84,-34.18 -7.38,-23.18 20.25,13.28 31.47,21.04 31.7,-21.04 20,-13.28 -7.27,23.18 -10.95,34.18 30.04,21.64 21.19,15.2 -25.84,0.47 -38.38,0.6 -12.38,34.18 -8.11,22 -8.01,-22 -12.36,-34.18 -38.26,-0.6 -25.86,-0.47 20.97,-15.2 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path22" /><path
d="m 8198.29,1327.64 -12.52,34.13 -8.1,21.93 -7.97,-21.93 -12.41,-34.13 -38.24,-0.66 -25.99,-0.59 21.21,-15.13 30.15,-21.69 -10.95,-34.14 -7.52,-23.19 20.37,13.24 31.35,20.91 31.58,-20.91 20.27,-13.24 -7.52,23.19 -10.74,34.14 30.04,21.69 21.07,15.13 -25.72,0.59 -38.36,0.66"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" /><path
d="m 8198.29,1327.64 -12.52,34.13 -8.1,21.93 -7.97,-21.93 -12.41,-34.13 -38.24,-0.66 -25.99,-0.59 21.21,-15.13 30.15,-21.69 -10.95,-34.14 -7.52,-23.19 20.37,13.24 31.35,20.91 31.58,-20.91 20.27,-13.24 -7.52,23.19 -10.74,34.14 30.04,21.69 21.07,15.13 -25.72,0.59 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path26" /><path
d="m 7925.89,1399.85 -12.52,34.03 -8.13,21.92 -7.85,-21.92 -12.52,-34.03 -38.24,-0.84 -25.98,-0.41 21.22,-15.19 30.03,-21.75 -10.86,-34.2 -7.5,-23.12 20.26,13.23 31.44,20.97 31.7,-20.97 20.14,-13.23 -7.36,23.12 -10.86,34.2 30.04,21.75 20.95,15.19 -25.72,0.41 -38.24,0.84"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" /><path
d="m 7925.89,1399.85 -12.52,34.03 -8.13,21.92 -7.85,-21.92 -12.52,-34.03 -38.24,-0.84 -25.98,-0.41 21.22,-15.19 30.03,-21.75 -10.86,-34.2 -7.5,-23.12 20.26,13.23 31.44,20.97 31.7,-20.97 20.14,-13.23 -7.36,23.12 -10.86,34.2 30.04,21.75 20.95,15.19 -25.72,0.41 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30" /><path
d="m 7655.85,1327.64 -12.52,34.13 -7.85,21.93 -7.99,-21.93 -12.5,-34.13 -38.26,-0.66 -25.98,-0.41 21.1,-15.25 30.15,-21.63 -10.86,-34.14 -7.48,-23.31 20.24,13.47 31.58,20.8 31.35,-20.8 20.25,-13.47 -7.38,23.31 -10.86,34.14 30.04,21.63 21.21,15.25 -25.98,0.41 -38.26,0.66"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32" /><path
d="m 7655.85,1327.64 -12.52,34.13 -7.85,21.93 -7.99,-21.93 -12.5,-34.13 -38.26,-0.66 -25.98,-0.41 21.1,-15.25 30.15,-21.63 -10.86,-34.14 -7.48,-23.31 20.24,13.47 31.58,20.8 31.35,-20.8 20.25,-13.47 -7.38,23.31 -10.86,34.14 30.04,21.63 21.21,15.25 -25.98,0.41 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34" /><path
d="m 7459.25,1133.93 -12.31,34.04 -7.97,21.85 -8.08,-21.85 -12.4,-34.04 -38.27,-0.7 -25.85,-0.49 21.09,-15.25 30.04,-21.68 -10.96,-34.08 -7.28,-23.25 20.02,13.34 31.58,20.86 31.58,-20.86 20.14,-13.34 -7.41,23.25 -10.84,34.08 30.16,21.68 20.98,15.25 -25.88,0.49 -38.34,0.7"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path36" /><path
d="m 7459.25,1133.93 -12.31,34.04 -7.97,21.85 -8.08,-21.85 -12.4,-34.04 -38.27,-0.7 -25.85,-0.49 21.09,-15.25 30.04,-21.68 -10.96,-34.08 -7.28,-23.25 20.02,13.34 31.58,20.86 31.58,-20.86 20.14,-13.34 -7.41,23.25 -10.84,34.08 30.16,21.68 20.98,15.25 -25.88,0.49 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path38" /><path
d="m 7396.9,781.336 20.26,-13.457 -7.37,23.351 -10.85,34.083 30.02,21.675 21.09,15.129 -25.84,0.547 -38.26,0.652 -12.5,34.036 -7.99,21.855 -8.01,-21.855 -12.5,-34.036 -38.24,-0.652 -25.86,-0.547 20.96,-15.129 30.15,-21.675 -10.84,-34.083 -7.38,-23.351 20.12,13.457 31.6,20.852 31.44,-20.852"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path40" /><path
d="m 7396.9,781.336 20.26,-13.457 -7.37,23.351 -10.85,34.083 30.02,21.675 21.09,15.129 -25.84,0.547 -38.26,0.652 -12.5,34.036 -7.99,21.855 -8.01,-21.855 -12.5,-34.036 -38.24,-0.652 -25.86,-0.547 20.96,-15.129 30.15,-21.675 -10.84,-34.083 -7.38,-23.351 20.12,13.457 31.6,20.852 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path42" /><path
d="m 7458.39,596.27 -12.5,33.96 -7.87,21.879 -8.11,-21.879 -12.5,-33.96 -38.24,-0.829 -25.86,-0.582 21.07,-15.019 30.04,-21.809 -10.86,-34.09 -7.5,-23.043 20.26,13.161 31.46,20.839 31.59,-20.839 20.13,-13.278 -7.38,23.16 -10.72,34.09 30.02,21.809 20.97,15.019 -25.86,0.582 -38.14,0.829"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path44" /><path
d="m 7458.39,596.27 -12.5,33.96 -7.87,21.879 -8.11,-21.879 -12.5,-33.96 -38.24,-0.829 -25.86,-0.582 21.07,-15.019 30.04,-21.809 -10.86,-34.09 -7.5,-23.043 20.26,13.161 31.46,20.839 31.59,-20.839 20.13,-13.278 -7.38,23.16 -10.72,34.09 30.02,21.809 20.97,15.019 -25.86,0.582 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path46" /><path
d="m 7653.47,400.73 -12.39,34.2 -7.98,21.859 -8.11,-21.859 -12.38,-34.2 -38.38,-0.601 -25.86,-0.59 21.21,-15.141 29.9,-21.687 -10.72,-34.063 -7.5,-23.25 20.12,13.231 31.72,20.922 31.32,-20.922 20.39,-13.231 -7.52,23.25 -10.82,34.063 30.02,21.687 21.22,15.141 -25.98,0.59 -38.26,0.601"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path48" /><path
d="m 7653.47,400.73 -12.39,34.2 -7.98,21.859 -8.11,-21.859 -12.38,-34.2 -38.38,-0.601 -25.86,-0.59 21.21,-15.141 29.9,-21.687 -10.72,-34.063 -7.5,-23.25 20.12,13.231 31.72,20.922 31.32,-20.922 20.39,-13.231 -7.52,23.25 -10.82,34.063 30.02,21.687 21.22,15.141 -25.98,0.59 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path50" /><path
d="m 7925.63,328.582 -12.38,33.898 -8.12,21.989 -7.85,-21.989 -12.52,-33.898 -38.25,-0.781 -25.99,-0.602 21.09,-15.25 30.18,-21.551 -10.98,-34.089 -7.27,-23.297 20.14,13.386 31.45,20.922 31.6,-20.922 20.14,-13.386 -7.27,23.297 -10.98,34.089 30.04,21.551 21.08,15.25 -25.73,0.602 -38.38,0.781"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path52" /><path
d="m 7925.63,328.582 -12.38,33.898 -8.12,21.989 -7.85,-21.989 -12.52,-33.898 -38.25,-0.781 -25.99,-0.602 21.09,-15.25 30.18,-21.551 -10.98,-34.089 -7.27,-23.297 20.14,13.386 31.45,20.922 31.6,-20.922 20.14,-13.386 -7.27,23.297 -10.98,34.089 30.04,21.551 21.08,15.25 -25.73,0.602 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path54" /><path
d="m 8195.79,399.422 -12.52,34.078 -7.99,21.871 -7.99,-21.871 -12.4,-34.078 -38.24,-0.844 -25.98,-0.476 21.23,-15.122 30.02,-21.679 -10.86,-34.102 -7.38,-23.23 20.14,13.242 31.46,20.898 31.59,-20.898 20.01,-13.242 -7.14,23.23 -10.86,34.102 29.9,21.679 21.11,15.122 -25.86,0.476 -38.24,0.844"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" /><path
d="m 8195.79,399.422 -12.52,34.078 -7.99,21.871 -7.99,-21.871 -12.4,-34.078 -38.24,-0.844 -25.98,-0.476 21.23,-15.122 30.02,-21.679 -10.86,-34.102 -7.38,-23.23 20.14,13.242 31.46,20.898 31.59,-20.898 20.01,-13.242 -7.14,23.23 -10.86,34.102 29.9,21.679 21.11,15.122 -25.86,0.476 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path58" /><path
d="m 8392.04,593.879 -12.52,34.109 -7.97,21.782 -7.99,-21.782 -12.52,-34.109 -38.26,-0.699 -25.84,-0.489 21.19,-15.25 29.95,-21.621 -10.84,-34.199 -7.29,-23.172 20.04,13.34 31.56,20.852 31.57,-20.852 20.03,-13.34 -7.4,23.172 -10.72,34.199 30.04,21.621 21.09,15.25 -25.88,0.489 -38.24,0.699"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path60" /><path
d="m 8392.04,593.879 -12.52,34.109 -7.97,21.782 -7.99,-21.782 -12.52,-34.109 -38.26,-0.699 -25.84,-0.489 21.19,-15.25 29.95,-21.621 -10.84,-34.199 -7.29,-23.172 20.04,13.34 31.56,20.852 31.57,-20.852 20.03,-13.34 -7.4,23.172 -10.72,34.199 30.04,21.621 21.09,15.25 -25.88,0.489 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path62" /><path
d="m 2796.88,1386.67 47.36,-11.97 c -9.93,-38.9 -27.79,-68.56 -53.6,-88.99 -25.79,-20.43 -57.33,-30.64 -94.6,-30.64 -38.57,0 -69.95,7.85 -94.11,23.56 -24.18,15.71 -42.56,38.45 -55.17,68.23 -12.62,29.79 -18.93,61.78 -18.93,95.96 0,37.27 7.12,69.78 21.37,97.53 14.24,27.74 34.5,48.83 60.78,63.23 26.29,14.41 55.22,21.6 86.8,21.6 35.8,0 65.92,-9.11 90.33,-27.34 24.41,-18.22 41.42,-43.87 51.02,-76.89 l -46.63,-11 c -8.3,26.04 -20.35,45 -36.13,56.89 -15.79,11.88 -35.64,17.82 -59.57,17.82 -27.51,0 -50.5,-6.59 -68.96,-19.77 -18.48,-13.18 -31.47,-30.89 -38.95,-53.1 -7.49,-22.22 -11.23,-45.13 -11.23,-68.74 0,-30.42 4.43,-57 13.3,-79.7 8.88,-22.71 22.67,-39.67 41.39,-50.9 18.71,-11.23 38.97,-16.86 60.79,-16.86 26.52,0 48.98,7.66 67.38,22.95 18.39,15.31 30.84,38.01 37.36,68.13"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path64" /><path
d="m 2925.78,1390.81 c 0,-33.2 7.24,-58.07 21.73,-74.58 14.48,-16.52 32.71,-24.78 54.69,-24.78 21.8,0 39.95,8.3 54.44,24.91 14.48,16.6 21.73,41.9 21.73,75.91 0,32.07 -7.29,56.36 -21.86,72.88 -14.56,16.52 -32.67,24.78 -54.31,24.78 -21.98,0 -40.21,-8.22 -54.69,-24.65 -14.49,-16.44 -21.73,-41.27 -21.73,-74.47 z m -45.16,0 c 0,48.01 13.34,83.57 40.03,106.7 22.3,19.2 49.48,28.81 81.55,28.81 35.64,0 64.77,-11.68 87.4,-35.04 22.62,-23.36 33.94,-55.63 33.94,-96.8 0,-33.38 -5.01,-59.62 -15.01,-78.74 -10.02,-19.13 -24.58,-33.97 -43.72,-44.56 -19.12,-10.57 -40,-15.86 -62.61,-15.86 -36.3,0 -65.64,11.63 -88.01,34.9 -22.38,23.28 -33.57,56.81 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path66" /><path
d="m 3157.96,1368.6 v 44.18 h 135.01 v -44.18 h -135.01"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path68" /><path
d="m 3352.05,1261.18 v 225.1 h -38.82 v 34.18 h 38.82 v 27.58 c 0,17.42 1.54,30.35 4.64,38.82 4.23,11.39 11.68,20.63 22.33,27.71 10.67,7.08 25.6,10.61 44.81,10.61 12.36,0 26.03,-1.46 41.01,-4.39 l -6.59,-38.32 c -9.12,1.62 -17.74,2.44 -25.88,2.44 -13.35,0 -22.79,-2.85 -28.32,-8.55 -5.53,-5.7 -8.3,-16.35 -8.3,-31.98 v -23.92 h 50.54 v -34.18 h -50.54 v -225.1 h -43.7"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path70" /><path
d="m 3650.39,1261.18 v 38.09 c -20.18,-29.3 -47.61,-43.95 -82.27,-43.95 -15.31,0 -29.58,2.93 -42.86,8.79 -13.26,5.86 -23.1,13.22 -29.53,22.09 -6.43,8.87 -10.95,19.73 -13.55,32.6 -1.8,8.61 -2.69,22.28 -2.69,41.01 v 160.65 h 43.95 v -143.81 c 0,-22.95 0.89,-38.41 2.68,-46.39 2.77,-11.55 8.63,-20.62 17.58,-27.21 8.95,-6.6 20.02,-9.9 33.2,-9.9 13.19,0 25.55,3.38 37.11,10.14 11.56,6.76 19.74,15.94 24.53,27.59 4.81,11.63 7.21,28.52 7.21,50.65 v 138.93 h 43.95 v -259.28 h -39.31"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path72" /><path
d="m 3758.54,1261.18 v 259.28 h 39.56 v -36.88 c 19.04,28.49 46.54,42.74 82.52,42.74 15.62,0 29.99,-2.82 43.09,-8.43 13.1,-5.62 22.9,-12.98 29.42,-22.1 6.5,-9.11 11.06,-19.94 13.67,-32.46 1.62,-8.15 2.44,-22.38 2.44,-42.74 v -159.41 h -43.95 v 157.71 c 0,17.9 -1.71,31.29 -5.12,40.16 -3.42,8.87 -9.49,15.95 -18.2,21.24 -8.7,5.28 -18.91,7.94 -30.63,7.94 -18.72,0 -34.88,-5.95 -48.47,-17.83 -13.58,-11.88 -20.38,-34.42 -20.38,-67.62 v -141.6 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path74" /><path
d="m 4065.92,1390.57 c 0,-33.2 6.99,-58.02 20.99,-74.47 14,-16.43 30.52,-24.65 49.56,-24.65 19.2,0 35.53,7.85 48.95,23.56 13.44,15.7 20.15,39.67 20.15,71.89 0,35.49 -6.84,61.53 -20.51,78.13 -13.67,16.6 -30.52,24.9 -50.54,24.9 -19.53,0 -35.85,-7.97 -48.94,-23.93 -13.11,-15.94 -19.66,-41.09 -19.66,-75.43 z m 138.91,-129.39 v 32.71 c -16.44,-25.72 -40.61,-38.57 -72.51,-38.57 -20.67,0 -39.67,5.7 -57,17.09 -17.34,11.39 -30.76,27.3 -40.29,47.73 -9.51,20.41 -14.28,43.89 -14.28,70.43 0,25.88 4.31,49.36 12.94,70.43 8.62,21.08 21.56,37.23 38.82,48.46 17.25,11.23 36.53,16.86 57.86,16.86 15.63,0 29.54,-3.3 41.75,-9.89 12.21,-6.6 22.13,-15.19 29.78,-25.76 v 128.42 h 43.71 v -357.91 h -40.78"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path76" /><path
d="m 4347.9,1415.71 h 144.78 c -1.96,21.82 -7.49,38.17 -16.61,49.08 -14,16.92 -32.14,25.39 -54.44,25.39 -20.18,0 -37.15,-6.75 -50.91,-20.27 -13.75,-13.51 -21.35,-31.57 -22.82,-54.2 z m 144.29,-71.03 45.41,-5.63 c -7.17,-26.52 -20.43,-47.11 -39.8,-61.76 -19.37,-14.65 -44.11,-21.97 -74.22,-21.97 -37.93,0 -67.99,11.67 -90.2,35.03 -22.23,23.35 -33.33,56.1 -33.33,98.27 0,43.61 11.23,77.46 33.69,101.56 22.46,24.09 51.59,36.14 87.4,36.14 34.67,0 62.99,-11.81 84.96,-35.41 21.98,-23.6 32.96,-56.8 32.96,-99.61 0,-2.6 -0.09,-6.51 -0.24,-11.72 h -193.36 c 1.62,-28.48 9.68,-50.29 24.17,-65.43 14.48,-15.14 32.55,-22.7 54.2,-22.7 16.11,0 29.86,4.22 41.26,12.7 11.38,8.46 20.42,21.97 27.1,40.53"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path78" /><path
d="m 4622.07,1390.57 c 0,-33.2 6.99,-58.02 21,-74.47 13.99,-16.43 30.51,-24.65 49.56,-24.65 19.2,0 35.52,7.85 48.94,23.56 13.44,15.7 20.15,39.67 20.15,71.89 0,35.49 -6.84,61.53 -20.51,78.13 -13.67,16.6 -30.52,24.9 -50.54,24.9 -19.53,0 -35.85,-7.97 -48.94,-23.93 -13.11,-15.94 -19.66,-41.09 -19.66,-75.43 z m 138.92,-129.39 v 32.71 c -16.45,-25.72 -40.62,-38.57 -72.51,-38.57 -20.68,0 -39.68,5.7 -57.01,17.09 -17.34,11.39 -30.76,27.3 -40.29,47.73 -9.51,20.41 -14.28,43.89 -14.28,70.43 0,25.88 4.31,49.36 12.94,70.43 8.63,21.08 21.57,37.23 38.82,48.46 17.25,11.23 36.54,16.86 57.86,16.86 15.63,0 29.54,-3.3 41.75,-9.89 12.21,-6.6 22.13,-15.19 29.79,-25.76 v 128.42 h 43.7 v -357.91 h -40.77"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path80" /><path
d="m 5049.8,1392.76 c 0,-31.08 4.23,-53.54 12.7,-67.38 13.83,-22.62 32.55,-33.93 56.15,-33.93 19.2,0 35.8,8.34 49.81,25.02 13.99,16.68 20.99,41.55 20.99,74.59 0,33.85 -6.71,58.83 -20.14,74.94 -13.42,16.12 -29.66,24.18 -48.7,24.18 -19.21,0 -35.82,-8.34 -49.81,-25.03 -14,-16.69 -21,-40.81 -21,-72.39 z m 0.49,-131.58 h -40.77 v 357.91 h 43.95 v -127.7 c 18.55,23.29 42.23,34.93 71.04,34.93 15.95,0 31.05,-3.23 45.28,-9.65 14.25,-6.43 25.97,-15.47 35.16,-27.1 9.2,-11.64 16.4,-25.68 21.61,-42.12 5.21,-16.43 7.82,-34.01 7.82,-52.74 0,-44.43 -10.99,-78.76 -32.96,-103.02 -21.98,-24.25 -48.34,-36.37 -79.11,-36.37 -30.6,0 -54.6,12.77 -72.02,38.32 v -32.46"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path82" /><path
d="m 5285.89,1161.32 -4.88,41.27 c 9.6,-2.61 17.97,-3.91 25.14,-3.91 9.77,0 17.58,1.62 23.44,4.88 5.86,3.26 10.65,7.82 14.4,13.67 2.77,4.4 7.24,15.3 13.43,32.72 0.81,2.44 2.11,6.01 3.91,10.74 l -98.39,259.77 h 47.36 l 53.96,-150.16 c 6.99,-19.04 13.26,-39.06 18.8,-60.06 5.04,20.19 11.06,39.89 18.06,59.08 l 55.42,151.14 h 43.95 l -98.63,-263.67 c -10.59,-28.49 -18.8,-48.11 -24.66,-58.85 -7.82,-14.48 -16.77,-25.1 -26.86,-31.86 -10.1,-6.76 -22.14,-10.13 -36.13,-10.13 -8.47,0 -17.91,1.79 -28.32,5.37"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path84" /><path
d="m 5772.71,1300.48 6.34,-38.81 c -12.37,-2.61 -23.43,-3.91 -33.2,-3.91 -15.96,0 -28.32,2.52 -37.11,7.56 -8.79,5.05 -14.98,11.68 -18.55,19.9 -3.59,8.23 -5.38,25.51 -5.38,51.88 v 149.18 h -32.22 v 34.18 h 32.22 v 64.2 l 43.71,26.36 v -90.56 h 44.19 v -34.18 h -44.19 v -151.62 c 0,-12.53 0.77,-20.59 2.31,-24.16 1.55,-3.6 4.07,-6.44 7.58,-8.56 3.49,-2.11 8.49,-3.16 15.01,-3.16 4.88,0 11.31,0.56 19.29,1.7"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path86" /><path
d="m 5815.67,1261.18 v 357.91 h 43.95 v -128.42 c 20.51,23.75 46.39,35.65 77.64,35.65 19.2,0 35.88,-3.79 50.04,-11.36 14.16,-7.57 24.3,-18.03 30.4,-31.38 6.11,-13.34 9.16,-32.71 9.16,-58.1 v -164.3 h -43.95 v 164.3 c 0,21.97 -4.77,37.97 -14.28,47.98 -9.53,10 -23,15 -40.41,15 -13.02,0 -25.27,-3.37 -36.74,-10.12 -11.48,-6.76 -19.65,-15.91 -24.54,-27.47 -4.88,-11.56 -7.32,-27.5 -7.32,-47.85 v -141.84 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path88" /><path
d="m 6126.95,1415.71 h 144.78 c -1.95,21.82 -7.49,38.17 -16.6,49.08 -14.01,16.92 -32.15,25.39 -54.45,25.39 -20.18,0 -37.14,-6.75 -50.9,-20.27 -13.75,-13.51 -21.36,-31.57 -22.83,-54.2 z m 144.29,-71.03 45.41,-5.63 c -7.17,-26.52 -20.43,-47.11 -39.79,-61.76 -19.38,-14.65 -44.12,-21.97 -74.22,-21.97 -37.93,0 -68,11.67 -90.21,35.03 -22.22,23.35 -33.33,56.1 -33.33,98.27 0,43.61 11.23,77.46 33.69,101.56 22.46,24.09 51.59,36.14 87.41,36.14 34.66,0 62.98,-11.81 84.96,-35.41 21.97,-23.6 32.96,-56.8 32.96,-99.61 0,-2.6 -0.09,-6.51 -0.25,-11.72 h -193.36 c 1.62,-28.48 9.68,-50.29 24.17,-65.43 14.48,-15.14 32.55,-22.7 54.2,-22.7 16.11,0 29.86,4.22 41.26,12.7 11.39,8.46 20.42,21.97 27.1,40.53"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path90" /><path
d="m 269.043,826.656 47.363,-11.961 c -9.929,-38.906 -27.793,-68.562 -53.593,-88.996 -25.793,-20.418 -57.333,-30.633 -94.598,-30.633 -38.574,0 -69.9533,7.852 -94.1134,23.567 -24.1797,15.703 -42.5703,38.445 -55.1758,68.23 C 6.30859,816.648 0,848.633 0,882.813 c 0,37.273 7.11719,69.773 21.3672,97.527 14.2383,27.75 34.5,48.83 60.7812,63.24 26.2896,14.4 55.2146,21.6 86.7966,21.6 35.801,0 65.918,-9.12 90.332,-27.34 24.414,-18.23 41.414,-43.867 51.028,-76.902 l -46.633,-10.989 c -8.301,26.035 -20.352,45 -36.133,56.891 -15.793,11.88 -35.644,17.82 -59.57,17.82 -27.508,0 -50.496,-6.59 -68.9651,-19.78 -18.4766,-13.185 -31.4648,-30.888 -38.9453,-53.095 -7.4883,-22.226 -11.2305,-45.137 -11.2305,-68.73 0,-30.442 4.4336,-57.012 13.3008,-79.715 8.8789,-22.695 22.6641,-39.668 41.3871,-50.899 18.711,-11.23 38.972,-16.847 60.793,-16.847 26.519,0 48.98,7.644 67.379,22.949 18.39,15.293 30.839,38 37.355,68.113"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path92" /><path
d="m 368.652,701.172 v 259.273 h 39.551 v -39.304 c 10.09,18.386 19.402,30.515 27.957,36.379 8.535,5.859 17.942,8.789 28.195,8.789 14.805,0 29.864,-4.719 45.165,-14.161 l -15.133,-40.773 c -10.742,6.348 -21.489,9.523 -32.231,9.523 -9.605,0 -18.23,-2.89 -25.879,-8.664 -7.656,-5.781 -13.101,-13.796 -16.355,-24.05 -4.883,-15.625 -7.324,-32.715 -7.324,-51.274 V 701.172 h -43.946"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path94" /><path
d="m 568.848,855.711 h 144.773 c -1.949,21.809 -7.488,38.164 -16.601,49.07 -14,16.926 -32.149,25.395 -54.442,25.395 -20.183,0 -37.148,-6.758 -50.906,-20.266 -13.75,-13.515 -21.359,-31.582 -22.824,-54.199 z m 144.289,-71.043 45.41,-5.617 c -7.168,-26.531 -20.434,-47.117 -39.797,-61.77 -19.375,-14.644 -44.109,-21.968 -74.219,-21.968 -37.929,0 -68,11.675 -90.207,35.039 -22.222,23.347 -33.328,56.101 -33.328,98.257 0,43.625 11.231,77.473 33.692,101.567 22.46,24.09 51.589,36.133 87.402,36.133 34.668,0 62.988,-11.809 84.961,-35.403 21.972,-23.601 32.961,-56.804 32.961,-99.609 0,-2.606 -0.09,-6.516 -0.246,-11.719 h -193.36 c 1.621,-28.484 9.68,-50.293 24.168,-65.43 14.485,-15.136 32.551,-22.707 54.199,-22.707 16.118,0 29.868,4.231 41.262,12.7 11.387,8.457 20.418,21.968 27.102,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path96" /><path
d="m 979.246,831.297 c -15.953,-6.516 -39.883,-12.051 -71.773,-16.602 -18.071,-2.605 -30.852,-5.539 -38.332,-8.789 -7.493,-3.261 -13.274,-8.015 -17.332,-14.289 -4.075,-6.258 -6.106,-13.219 -6.106,-20.867 0,-11.719 4.434,-21.484 13.301,-29.297 8.879,-7.812 21.855,-11.719 38.945,-11.719 16.922,0 31.985,3.704 45.164,11.106 13.188,7.41 22.864,17.539 29.055,30.398 4.719,9.922 7.078,24.571 7.078,43.946 z m 3.664,-98.145 c -16.277,-13.836 -31.941,-23.601 -46.992,-29.297 -15.059,-5.695 -31.223,-8.542 -48.469,-8.542 -28.484,0 -50.379,6.953 -65.672,20.878 -15.3,13.907 -22.949,31.688 -22.949,53.336 0,12.7 2.891,24.297 8.672,34.789 5.77,10.504 13.34,18.922 22.695,25.274 9.368,6.348 19.903,11.14 31.621,14.402 8.622,2.278 21.641,4.473 39.063,6.594 35.476,4.227 61.601,9.273 78.367,15.137 0.156,6.023 0.246,9.843 0.246,11.472 0,17.903 -4.148,30.52 -12.449,37.84 -11.23,9.934 -27.922,14.895 -50.051,14.895 -20.676,0 -35.929,-3.621 -45.781,-10.86 -9.844,-7.246 -17.129,-20.066 -21.848,-38.457 l -42.968,5.86 c 3.91,18.386 10.335,33.242 19.289,44.55 8.945,11.309 21.882,20.02 38.82,26.133 16.922,6.094 36.531,9.153 58.836,9.153 22.129,0 40.117,-2.61 53.957,-7.817 13.824,-5.203 24.003,-11.765 30.513,-19.656 6.51,-7.891 11.07,-17.859 13.67,-29.902 1.47,-7.493 2.2,-20.996 2.2,-40.528 v -58.593 c 0,-40.86 0.94,-66.692 2.8,-77.508 1.88,-10.832 5.58,-21.211 11.12,-31.133 h -45.901 c -4.558,9.109 -7.488,19.773 -8.789,31.98"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path98" /><path
d="m 1187.74,740.477 6.35,-38.821 c -12.37,-2.593 -23.44,-3.902 -33.2,-3.902 -15.96,0 -28.32,2.527 -37.11,7.566 -8.79,5.039 -14.98,11.68 -18.56,19.895 -3.58,8.223 -5.37,25.515 -5.37,51.883 V 926.27 h -32.22 v 34.175 h 32.22 v 64.215 l 43.7,26.36 v -90.575 h 44.19 V 926.27 h -44.19 V 774.656 c 0,-12.539 0.78,-20.593 2.32,-24.172 1.55,-3.582 4.07,-6.433 7.58,-8.543 3.49,-2.121 8.49,-3.171 15.01,-3.171 4.88,0 11.31,0.566 19.28,1.707"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path100" /><path
d="m 1230.96,701.172 v 259.273 h 43.94 V 701.172 Z m 0,307.368 v 50.54 h 43.94 v -50.54 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path102" /><path
d="m 1413.82,701.172 -98.63,259.273 h 46.38 l 55.67,-155.269 c 6.01,-16.77 11.55,-34.184 16.6,-52.246 3.9,13.672 9.35,30.105 16.36,49.312 l 57.61,158.203 h 45.17 l -98.15,-259.273 h -41.01"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path104" /><path
d="m 1625,855.711 h 144.78 c -1.96,21.809 -7.49,38.164 -16.61,49.07 -14,16.926 -32.14,25.395 -54.44,25.395 -20.19,0 -37.15,-6.758 -50.91,-20.266 -13.75,-13.515 -21.36,-31.582 -22.82,-54.199 z m 144.29,-71.043 45.41,-5.617 c -7.17,-26.531 -20.43,-47.117 -39.8,-61.77 -19.37,-14.644 -44.11,-21.968 -74.22,-21.968 -37.93,0 -67.99,11.675 -90.2,35.039 -22.23,23.347 -33.33,56.101 -33.33,98.257 0,43.625 11.23,77.473 33.69,101.567 22.46,24.09 51.59,36.133 87.4,36.133 34.67,0 62.99,-11.809 84.96,-35.403 21.98,-23.601 32.96,-56.804 32.96,-99.609 0,-2.606 -0.09,-6.516 -0.24,-11.719 h -193.36 c 1.62,-28.484 9.68,-50.293 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.457 20.42,21.968 27.1,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path106" /><path
d="m 2015.38,701.172 v 357.908 h 258.79 v -42.24 H 2062.74 V 907.227 h 198 v -41.993 h -198 V 743.406 h 219.73 v -42.234 h -267.09"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path108" /><path
d="m 2512.21,701.172 v 38.086 c -20.19,-29.297 -47.61,-43.945 -82.28,-43.945 -15.3,0 -29.58,2.925 -42.85,8.789 -13.26,5.859 -23.11,13.218 -29.53,22.089 -6.44,8.875 -10.96,19.735 -13.56,32.594 -1.79,8.625 -2.68,22.297 -2.68,41.02 v 160.64 h 43.94 V 816.648 c 0,-22.949 0.89,-38.418 2.69,-46.386 2.76,-11.563 8.62,-20.633 17.58,-27.215 8.94,-6.606 20.02,-9.895 33.2,-9.895 13.18,0 25.55,3.379 37.11,10.125 11.55,6.758 19.74,15.957 24.53,27.602 4.81,11.629 7.21,28.516 7.21,50.652 v 138.914 h 43.94 V 701.172 h -39.3"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path110" /><path
d="m 2619.87,701.172 v 259.273 h 39.55 v -39.304 c 10.09,18.386 19.41,30.515 27.96,36.379 8.54,5.859 17.94,8.789 28.2,8.789 14.8,0 29.86,-4.719 45.16,-14.161 l -15.13,-40.773 c -10.75,6.348 -21.49,9.523 -32.23,9.523 -9.61,0 -18.23,-2.89 -25.88,-8.664 -7.66,-5.781 -13.11,-13.796 -16.36,-24.05 -4.88,-15.625 -7.32,-32.715 -7.32,-51.274 V 701.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path112" /><path
d="m 2815.67,830.809 c 0,-33.204 7.24,-58.067 21.73,-74.579 14.48,-16.527 32.72,-24.789 54.69,-24.789 21.81,0 39.95,8.301 54.44,24.907 14.49,16.597 21.73,41.902 21.73,75.925 0,32.063 -7.28,56.348 -21.85,72.872 -14.56,16.523 -32.68,24.785 -54.32,24.785 -21.97,0 -40.21,-8.223 -54.69,-24.657 -14.49,-16.437 -21.73,-41.261 -21.73,-74.464 z m -45.16,0 c 0,48.007 13.34,83.574 40.04,106.687 22.29,19.211 49.47,28.813 81.54,28.813 35.64,0 64.78,-11.68 87.4,-35.032 22.62,-23.359 33.94,-55.625 33.94,-96.804 0,-33.371 -5.01,-59.614 -15.01,-78.735 -10.02,-19.129 -24.58,-33.98 -43.71,-44.558 -19.12,-10.575 -40,-15.867 -62.62,-15.867 -36.3,0 -65.63,11.628 -88.01,34.91 -22.38,23.269 -33.57,56.797 -33.57,100.586"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path114" /><path
d="m 3104.74,829.344 c 0,-33.367 6.74,-58.028 20.26,-73.977 13.51,-15.957 29.86,-23.926 49.07,-23.926 19.53,0 36.25,8.262 50.18,24.789 13.9,16.512 20.87,42.11 20.87,76.778 0,33.035 -6.8,57.781 -20.38,74.219 -13.6,16.433 -29.84,24.656 -48.71,24.656 -18.73,0 -35.28,-8.75 -49.69,-26.25 -14.4,-17.5 -21.6,-42.93 -21.6,-76.289 z m -39.8,-227.543 v 358.644 h 40.04 v -33.687 c 9.43,13.183 20.1,23.074 31.98,29.656 11.88,6.602 26.28,9.895 43.22,9.895 22.12,0 41.66,-5.696 58.59,-17.09 16.92,-11.399 29.7,-27.473 38.33,-48.215 8.62,-20.762 12.94,-43.508 12.94,-68.242 0,-26.532 -4.76,-50.418 -14.29,-71.653 -9.51,-21.25 -23.35,-37.515 -41.5,-48.828 -18.15,-11.316 -37.23,-16.968 -57.25,-16.968 -14.65,0 -27.79,3.093 -39.43,9.277 -11.63,6.18 -21.2,13.992 -28.68,23.433 V 601.801 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path116" /><path
d="M 3376.22,855.711 H 3521 c -1.96,21.809 -7.49,38.164 -16.61,49.07 -14,16.926 -32.14,25.395 -54.44,25.395 -20.18,0 -37.15,-6.758 -50.91,-20.266 -13.75,-13.515 -21.35,-31.582 -22.82,-54.199 z m 144.29,-71.043 45.41,-5.617 c -7.17,-26.531 -20.43,-47.117 -39.8,-61.77 -19.37,-14.644 -44.11,-21.968 -74.22,-21.968 -37.93,0 -67.99,11.675 -90.2,35.039 -22.23,23.347 -33.33,56.101 -33.33,98.257 0,43.625 11.23,77.473 33.69,101.567 22.46,24.09 51.59,36.133 87.4,36.133 34.67,0 62.99,-11.809 84.96,-35.403 21.98,-23.601 32.96,-56.804 32.96,-99.609 0,-2.606 -0.09,-6.516 -0.24,-11.719 h -193.36 c 1.62,-28.484 9.68,-50.293 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.457 20.42,21.968 27.1,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path118" /><path
d="m 3812.99,888.914 h 92.53 c 30.59,0 52.32,5.695 65.18,17.09 12.85,11.387 19.29,27.422 19.29,48.098 0,14.968 -3.78,27.781 -11.36,38.445 -7.56,10.663 -17.54,17.703 -29.9,21.123 -7.98,2.12 -22.7,3.17 -44.19,3.17 h -91.55 z m -47.36,-187.742 v 357.908 h 135 c 23.76,0 41.91,-1.14 54.45,-3.42 17.58,-2.93 32.3,-8.5 44.19,-16.73 11.87,-8.22 21.44,-19.72 28.68,-34.54 7.25,-14.812 10.87,-31.081 10.87,-48.824 0,-30.441 -9.69,-56.203 -29.05,-77.277 -19.38,-21.074 -54.37,-31.609 -104.98,-31.609 h -91.8 V 701.172 h -47.36"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path120" /><path
d="m 4093.02,701.172 v 259.273 h 39.55 v -39.304 c 10.09,18.386 19.4,30.515 27.96,36.379 8.53,5.859 17.94,8.789 28.19,8.789 14.81,0 29.86,-4.719 45.17,-14.161 l -15.14,-40.773 c -10.74,6.348 -21.48,9.523 -32.23,9.523 -9.61,0 -18.23,-2.89 -25.88,-8.664 -7.65,-5.781 -13.1,-13.796 -16.35,-24.05 -4.89,-15.625 -7.33,-32.715 -7.33,-51.274 V 701.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path122" /><path
d="m 4288.82,830.809 c 0,-33.204 7.23,-58.067 21.73,-74.579 14.48,-16.527 32.71,-24.789 54.68,-24.789 21.81,0 39.96,8.301 54.45,24.907 14.48,16.597 21.73,41.902 21.73,75.925 0,32.063 -7.29,56.348 -21.86,72.872 -14.56,16.523 -32.67,24.785 -54.32,24.785 -21.97,0 -40.2,-8.223 -54.68,-24.657 -14.5,-16.437 -21.73,-41.261 -21.73,-74.464 z m -45.17,0 c 0,48.007 13.34,83.574 40.04,106.687 22.3,19.211 49.47,28.813 81.54,28.813 35.65,0 64.78,-11.68 87.41,-35.032 22.61,-23.359 33.93,-55.625 33.93,-96.804 0,-33.371 -5.01,-59.614 -15.01,-78.735 -10.02,-19.129 -24.58,-33.98 -43.71,-44.558 -19.12,-10.575 -40,-15.867 -62.62,-15.867 -36.29,0 -65.63,11.628 -88,34.91 -22.39,23.269 -33.58,56.797 -33.58,100.586"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path124" /><path
d="m 4566.41,835.445 c 0,-34.019 6.74,-58.836 20.26,-74.461 13.51,-15.625 30.43,-23.437 50.78,-23.437 20.18,0 37.11,7.773 50.78,23.312 13.67,15.543 20.51,39.918 20.51,73.125 0,31.739 -7.04,55.664 -21.11,71.778 -14.09,16.109 -31.06,24.168 -50.91,24.168 -19.53,0 -36.13,-7.93 -49.81,-23.809 -13.67,-15.859 -20.5,-39.426 -20.5,-70.676 z m -36.38,-155.757 42.72,-6.348 c 1.79,-13.192 6.75,-22.789 14.9,-28.809 10.89,-8.14 25.79,-12.211 44.67,-12.211 20.35,0 36.05,4.071 47.12,12.211 11.07,8.141 18.56,19.528 22.46,34.18 2.28,8.953 3.33,27.742 3.18,56.394 -19.21,-22.625 -43.14,-33.933 -71.78,-33.933 -35.64,0 -63.23,12.851 -82.76,38.57 -19.53,25.715 -29.3,56.555 -29.3,92.531 0,24.739 4.47,47.559 13.43,68.477 8.94,20.918 21.93,37.07 38.93,48.469 17.02,11.394 37,17.09 59.94,17.09 30.6,0 55.83,-12.375 75.69,-37.114 v 31.25 h 40.53 V 736.324 c 0,-40.359 -4.12,-68.965 -12.33,-85.812 -8.22,-16.84 -21.25,-30.153 -39.06,-39.922 -17.83,-9.762 -39.77,-14.641 -65.8,-14.641 -30.93,0 -55.91,6.961 -74.95,20.86 -19.05,13.929 -28.24,34.89 -27.59,62.879"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path126" /><path
d="m 4815.67,701.172 v 259.273 h 39.55 v -39.304 c 10.09,18.386 19.41,30.515 27.96,36.379 8.54,5.859 17.94,8.789 28.2,8.789 14.8,0 29.86,-4.719 45.16,-14.161 l -15.13,-40.773 c -10.75,6.348 -21.49,9.523 -32.23,9.523 -9.61,0 -18.23,-2.89 -25.88,-8.664 -7.66,-5.781 -13.1,-13.796 -16.36,-24.05 -4.88,-15.625 -7.32,-32.715 -7.32,-51.274 V 701.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path128" /><path
d="m 5148.19,831.297 c -15.95,-6.516 -39.88,-12.051 -71.77,-16.602 -18.07,-2.605 -30.85,-5.539 -38.33,-8.789 -7.49,-3.261 -13.28,-8.015 -17.34,-14.289 -4.07,-6.258 -6.1,-13.219 -6.1,-20.867 0,-11.719 4.43,-21.484 13.3,-29.297 8.88,-7.812 21.85,-11.719 38.94,-11.719 16.93,0 31.99,3.704 45.17,11.106 13.18,7.41 22.86,17.539 29.05,30.398 4.72,9.922 7.08,24.571 7.08,43.946 z m 3.67,-98.145 c -16.28,-13.836 -31.95,-23.601 -47,-29.297 -15.06,-5.695 -31.22,-8.542 -48.46,-8.542 -28.49,0 -50.38,6.953 -65.68,20.878 -15.3,13.907 -22.95,31.688 -22.95,53.336 0,12.7 2.89,24.297 8.68,34.789 5.77,10.504 13.34,18.922 22.69,25.274 9.37,6.348 19.9,11.14 31.62,14.402 8.62,2.278 21.64,4.473 39.06,6.594 35.48,4.227 61.61,9.273 78.37,15.137 0.16,6.023 0.25,9.843 0.25,11.472 0,17.903 -4.15,30.52 -12.45,37.84 -11.23,9.934 -27.92,14.895 -50.05,14.895 -20.68,0 -35.93,-3.621 -45.78,-10.86 -9.85,-7.246 -17.13,-20.066 -21.85,-38.457 l -42.97,5.86 c 3.91,18.386 10.33,33.242 19.29,44.55 8.94,11.309 21.88,20.02 38.82,26.133 16.92,6.094 36.53,9.153 58.84,9.153 22.12,0 40.11,-2.61 53.95,-7.817 13.83,-5.203 24,-11.765 30.52,-19.656 6.5,-7.891 11.06,-17.859 13.67,-29.902 1.46,-7.493 2.2,-20.996 2.2,-40.528 v -58.593 c 0,-40.86 0.93,-66.692 2.8,-77.508 1.87,-10.832 5.58,-21.211 11.11,-31.133 h -45.9 c -4.56,9.109 -7.49,19.773 -8.78,31.98"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path130" /><path
d="m 5260.74,701.172 v 259.273 h 39.31 V 924.07 c 8.13,12.696 18.95,22.91 32.47,30.645 13.51,7.726 28.89,11.594 46.14,11.594 19.2,0 34.95,-3.996 47.25,-11.965 12.28,-7.981 20.95,-19.121 25.99,-33.446 20.51,30.274 47.2,45.411 80.08,45.411 25.72,0 45.49,-7.121 59.33,-21.36 13.83,-14.25 20.75,-36.179 20.75,-65.801 V 701.172 h -43.7 V 864.5 c 0,17.578 -1.43,30.234 -4.27,37.969 -2.85,7.722 -8.03,13.945 -15.51,18.672 -7.49,4.718 -16.28,7.082 -26.36,7.082 -18.24,0 -33.37,-6.067 -45.41,-18.196 -12.05,-12.129 -18.07,-31.535 -18.07,-58.222 V 701.172 h -43.95 v 168.457 c 0,19.527 -3.58,34.18 -10.74,43.941 -7.17,9.77 -18.88,14.653 -35.15,14.653 -12.38,0 -23.81,-3.254 -34.3,-9.77 -10.51,-6.512 -18.12,-16.031 -22.83,-28.562 -4.73,-12.539 -7.08,-30.606 -7.08,-54.2 V 701.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path132" /><path
d="m 5677.25,701.172 v 259.273 h 39.3 V 924.07 c 8.14,12.696 18.96,22.91 32.47,30.645 13.51,7.726 28.89,11.594 46.15,11.594 19.2,0 34.95,-3.996 47.24,-11.965 12.29,-7.981 20.95,-19.121 26,-33.446 20.51,30.274 47.2,45.411 80.08,45.411 25.71,0 45.48,-7.121 59.32,-21.36 13.83,-14.25 20.75,-36.179 20.75,-65.801 V 701.172 h -43.7 V 864.5 c 0,17.578 -1.42,30.234 -4.26,37.969 -2.86,7.722 -8.03,13.945 -15.51,18.672 -7.49,4.718 -16.28,7.082 -26.37,7.082 -18.23,0 -33.37,-6.067 -45.41,-18.196 -12.05,-12.129 -18.07,-31.535 -18.07,-58.222 V 701.172 h -43.94 v 168.457 c 0,19.527 -3.59,34.18 -10.74,43.941 -7.17,9.77 -18.89,14.653 -35.16,14.653 -12.37,0 -23.81,-3.254 -34.3,-9.77 -10.5,-6.512 -18.11,-16.031 -22.83,-28.562 -4.73,-12.539 -7.08,-30.606 -7.08,-54.2 V 701.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path134" /><path
d="m 6126.95,855.711 h 144.78 c -1.95,21.809 -7.49,38.164 -16.6,49.07 -14.01,16.926 -32.15,25.395 -54.45,25.395 -20.18,0 -37.14,-6.758 -50.9,-20.266 -13.75,-13.515 -21.36,-31.582 -22.83,-54.199 z m 144.29,-71.043 45.41,-5.617 c -7.17,-26.531 -20.43,-47.117 -39.79,-61.77 -19.38,-14.644 -44.12,-21.968 -74.22,-21.968 -37.93,0 -68,11.675 -90.21,35.039 -22.22,23.347 -33.33,56.101 -33.33,98.257 0,43.625 11.23,77.473 33.69,101.567 22.46,24.09 51.59,36.133 87.41,36.133 34.66,0 62.98,-11.809 84.96,-35.403 21.97,-23.601 32.96,-56.804 32.96,-99.609 0,-2.606 -0.09,-6.516 -0.25,-11.719 h -193.36 c 1.62,-28.484 9.68,-50.293 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.39,8.457 20.42,21.968 27.1,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path136" /><path
d="m 1396.97,270.809 c 0,-33.2 7.24,-58.071 21.73,-74.579 14.48,-16.519 32.72,-24.789 54.69,-24.789 21.81,0 39.95,8.297 54.44,24.911 14.48,16.597 21.73,41.898 21.73,75.918 0,32.062 -7.28,56.359 -21.85,72.878 -14.57,16.524 -32.68,24.782 -54.32,24.782 -21.97,0 -40.21,-8.219 -54.69,-24.66 -14.49,-16.438 -21.73,-41.258 -21.73,-74.461 z m -45.16,0 c 0,48.011 13.34,83.57 40.04,106.691 22.29,19.199 49.47,28.809 81.54,28.809 35.64,0 64.77,-11.68 87.4,-35.039 22.62,-23.348 33.94,-55.629 33.94,-96.801 0,-33.367 -5.01,-59.61 -15.01,-78.731 -10.02,-19.129 -24.58,-33.976 -43.71,-44.558 -19.13,-10.578 -40,-15.871 -62.62,-15.871 -36.3,0 -65.64,11.632 -88.01,34.91 -22.38,23.269 -33.57,56.801 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path138" /><path
d="M 1656.74,141.172 V 366.27 h -38.82 v 34.179 h 38.82 v 27.59 c 0,17.41 1.54,30.352 4.64,38.813 4.23,11.386 11.68,20.628 22.33,27.718 10.67,7.071 25.6,10.61 44.81,10.61 12.36,0 26.03,-1.461 41.01,-4.391 l -6.59,-38.328 c -9.12,1.621 -17.74,2.437 -25.88,2.437 -13.35,0 -22.79,-2.847 -28.32,-8.539 -5.54,-5.711 -8.3,-16.359 -8.3,-31.988 v -23.922 h 50.54 V 366.27 h -50.54 V 141.172 h -43.7"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path140" /><path
d="m 2020.02,180.48 6.35,-38.82 c -12.38,-2.601 -23.44,-3.91 -33.21,-3.91 -15.95,0 -28.32,2.531 -37.11,7.57 -8.78,5.039 -14.98,11.68 -18.55,19.891 -3.58,8.23 -5.37,25.519 -5.37,51.891 V 366.27 h -32.23 v 34.179 h 32.23 v 64.211 l 43.7,26.36 v -90.571 h 44.19 V 366.27 h -44.19 V 214.66 c 0,-12.539 0.77,-20.601 2.31,-24.172 1.56,-3.59 4.08,-6.437 7.58,-8.547 3.5,-2.121 8.5,-3.171 15.01,-3.171 4.89,0 11.31,0.562 19.29,1.71"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path142" /><path
d="m 2062.99,141.172 v 357.91 h 43.94 V 370.66 c 20.51,23.762 46.39,35.649 77.64,35.649 19.2,0 35.89,-3.789 50.05,-11.348 14.16,-7.582 24.3,-18.039 30.39,-31.379 6.11,-13.352 9.16,-32.711 9.16,-58.102 V 141.172 h -43.95 V 305.48 c 0,21.969 -4.76,37.961 -14.27,47.981 -9.53,10 -23,15.008 -40.41,15.008 -13.03,0 -25.28,-3.379 -36.74,-10.129 -11.49,-6.762 -19.66,-15.918 -24.54,-27.469 -4.88,-11.57 -7.33,-27.512 -7.33,-47.851 V 141.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path144" /><path
d="m 2374.27,295.711 h 144.77 c -1.95,21.809 -7.49,38.168 -16.6,49.07 -14,16.93 -32.15,25.391 -54.44,25.391 -20.19,0 -37.15,-6.75 -50.91,-20.262 -13.75,-13.519 -21.36,-31.582 -22.82,-54.199 z m 144.28,-71.039 45.41,-5.621 c -7.16,-26.531 -20.42,-47.121 -39.79,-61.77 -19.38,-14.652 -44.11,-21.972 -74.22,-21.972 -37.93,0 -68,11.679 -90.2,35.043 -22.23,23.347 -33.33,56.097 -33.33,98.257 0,43.61 11.23,77.473 33.69,101.563 22.46,24.09 51.59,36.137 87.4,36.137 34.67,0 62.99,-11.809 84.96,-35.399 21.97,-23.609 32.96,-56.808 32.96,-99.609 0,-2.61 -0.09,-6.52 -0.24,-11.723 h -193.36 c 1.62,-28.488 9.67,-50.289 24.17,-65.43 14.48,-15.136 32.54,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.461 20.42,21.968 27.09,40.531"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path146" /><path
d="m 2764.65,141.172 v 357.91 h 258.79 V 456.84 H 2812.01 V 347.219 h 198 V 305.23 h -198 V 183.41 h 219.73 v -42.238 h -267.09"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path148" /><path
d="m 3261.47,141.172 v 38.09 c -20.18,-29.301 -47.6,-43.953 -82.27,-43.953 -15.3,0 -29.58,2.929 -42.85,8.793 -13.26,5.859 -23.11,13.218 -29.53,22.089 -6.44,8.879 -10.96,19.739 -13.56,32.598 -1.8,8.621 -2.68,22.293 -2.68,41.012 v 160.648 h 43.94 V 256.648 c 0,-22.949 0.89,-38.418 2.69,-46.386 2.76,-11.563 8.62,-20.633 17.58,-27.211 8.94,-6.61 20.01,-9.903 33.2,-9.903 13.18,0 25.55,3.383 37.11,10.133 11.55,6.758 19.73,15.957 24.53,27.598 4.8,11.633 7.21,28.512 7.21,50.652 v 138.918 h 43.94 V 141.172 h -39.31"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path150" /><path
d="m 3369.14,141.172 v 259.277 h 39.55 v -39.308 c 10.09,18.39 19.41,30.519 27.96,36.379 8.54,5.859 17.94,8.789 28.19,8.789 14.81,0 29.87,-4.727 45.17,-14.161 l -15.14,-40.769 c -10.74,6.34 -21.48,9.519 -32.22,9.519 -9.61,0 -18.24,-2.886 -25.88,-8.679 -7.66,-5.77 -13.11,-13.778 -16.36,-24.039 -4.88,-15.621 -7.32,-32.711 -7.32,-51.27 V 141.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path152" /><path
d="m 3564.94,270.809 c 0,-33.2 7.24,-58.071 21.73,-74.579 14.48,-16.519 32.71,-24.789 54.69,-24.789 21.8,0 39.95,8.297 54.44,24.911 14.48,16.597 21.73,41.898 21.73,75.918 0,32.062 -7.29,56.359 -21.86,72.878 -14.56,16.524 -32.67,24.782 -54.31,24.782 -21.98,0 -40.21,-8.219 -54.69,-24.66 -14.49,-16.438 -21.73,-41.258 -21.73,-74.461 z m -45.16,0 c 0,48.011 13.34,83.57 40.03,106.691 22.3,19.199 49.48,28.809 81.55,28.809 35.64,0 64.77,-11.68 87.4,-35.039 22.62,-23.348 33.94,-55.629 33.94,-96.801 0,-33.367 -5.01,-59.61 -15.01,-78.731 -10.02,-19.129 -24.58,-33.976 -43.72,-44.558 -19.12,-10.578 -40,-15.871 -62.61,-15.871 -36.3,0 -65.64,11.632 -88.01,34.91 -22.38,23.269 -33.57,56.801 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path154" /><path
d="m 3854,269.34 c 0,-33.371 6.75,-58.02 20.27,-73.969 13.5,-15.961 29.86,-23.93 49.07,-23.93 19.53,0 36.25,8.27 50.18,24.789 13.9,16.508 20.86,42.11 20.86,76.782 0,33.027 -6.79,57.769 -20.38,74.207 -13.59,16.441 -29.83,24.66 -48.71,24.66 -18.72,0 -35.27,-8.75 -49.68,-26.238 -14.4,-17.5 -21.61,-42.942 -21.61,-76.301 z M 3814.21,41.8008 V 400.449 h 40.04 v -33.687 c 9.43,13.179 20.1,23.058 31.98,29.66 11.88,6.59 26.28,9.887 43.21,9.887 22.13,0 41.66,-5.707 58.6,-17.09 16.92,-11.399 29.69,-27.457 38.33,-48.231 8.62,-20.738 12.94,-43.488 12.94,-68.226 0,-26.532 -4.76,-50.422 -14.29,-71.653 -9.51,-21.25 -23.35,-37.519 -41.5,-48.828 -18.15,-11.312 -37.23,-16.972 -57.25,-16.972 -14.65,0 -27.79,3.101 -39.43,9.281 -11.63,6.18 -21.21,13.992 -28.69,23.441 V 41.8008 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path156" /><path
d="m 4125.49,295.711 h 144.77 c -1.95,21.809 -7.49,38.168 -16.6,49.07 -14,16.93 -32.15,25.391 -54.44,25.391 -20.19,0 -37.15,-6.75 -50.91,-20.262 -13.75,-13.519 -21.36,-31.582 -22.82,-54.199 z m 144.29,-71.039 45.41,-5.621 c -7.17,-26.531 -20.43,-47.121 -39.8,-61.77 -19.37,-14.652 -44.11,-21.972 -74.22,-21.972 -37.93,0 -68,11.679 -90.2,35.043 -22.23,23.347 -33.33,56.097 -33.33,98.257 0,43.61 11.23,77.473 33.69,101.563 22.46,24.09 51.59,36.137 87.4,36.137 34.67,0 62.99,-11.809 84.96,-35.399 21.97,-23.609 32.96,-56.808 32.96,-99.609 0,-2.61 -0.09,-6.52 -0.24,-11.723 h -193.36 c 1.62,-28.488 9.67,-50.289 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.461 20.42,21.968 27.1,40.531"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path158" /><path
d="m 4535.89,271.301 c -15.96,-6.52 -39.88,-12.051 -71.78,-16.602 -18.07,-2.609 -30.85,-5.539 -38.33,-8.789 -7.49,-3.269 -13.27,-8.019 -17.33,-14.289 -4.07,-6.262 -6.11,-13.223 -6.11,-20.871 0,-11.719 4.44,-21.48 13.3,-29.301 8.88,-7.808 21.86,-11.719 38.95,-11.719 16.92,0 31.98,3.711 45.17,11.11 13.18,7.41 22.86,17.539 29.05,30.398 4.72,9.922 7.08,24.571 7.08,43.942 z m 3.66,-98.153 c -16.28,-13.839 -31.94,-23.597 -46.99,-29.289 -15.06,-5.699 -31.22,-8.55 -48.47,-8.55 -28.48,0 -50.38,6.953 -65.67,20.882 -15.3,13.911 -22.95,31.688 -22.95,53.34 0,12.688 2.89,24.301 8.67,34.778 5.77,10.511 13.34,18.929 22.7,25.281 9.36,6.351 19.9,11.14 31.62,14.398 8.62,2.282 21.64,4.481 39.06,6.594 35.48,4.227 61.6,9.277 78.37,15.137 0.15,6.019 0.24,9.84 0.24,11.48 0,17.903 -4.15,30.512 -12.45,37.84 -11.23,9.922 -27.92,14.891 -50.05,14.891 -20.67,0 -35.92,-3.621 -45.78,-10.871 -9.84,-7.239 -17.13,-20.059 -21.84,-38.45 l -42.97,5.86 c 3.9,18.39 10.33,33.25 19.28,44.562 8.95,11.309 21.89,20.02 38.82,26.117 16.93,6.114 36.54,9.161 58.84,9.161 22.13,0 40.12,-2.61 53.96,-7.821 13.82,-5.207 24,-11.75 30.51,-19.636 6.51,-7.903 11.07,-17.883 13.68,-29.922 1.46,-7.489 2.19,-20.989 2.19,-40.52 v -58.601 c 0,-40.86 0.94,-66.688 2.81,-77.508 1.87,-10.832 5.57,-21.211 11.11,-31.129 h -45.9 c -4.56,9.109 -7.49,19.777 -8.79,31.976"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path160" /><path
d="m 4648.44,141.172 v 259.277 h 39.55 v -36.867 c 19.04,28.477 46.54,42.727 82.52,42.727 15.62,0 29.99,-2.821 43.09,-8.418 13.1,-5.629 22.9,-12.993 29.42,-22.102 6.5,-9.117 11.06,-19.937 13.67,-32.469 1.62,-8.148 2.44,-22.379 2.44,-42.73 V 141.172 h -43.94 v 157.707 c 0,17.91 -1.71,31.293 -5.13,40.16 -3.42,8.883 -9.48,15.961 -18.19,21.25 -8.71,5.281 -18.92,7.93 -30.64,7.93 -18.72,0 -34.87,-5.949 -48.47,-17.821 -13.58,-11.886 -20.38,-34.429 -20.38,-67.628 V 141.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path162" /><path
d="m 5305.91,499.082 h 47.36 V 292.289 c 0,-35.969 -4.07,-64.539 -12.21,-85.687 -8.14,-21.161 -22.83,-38.372 -44.06,-51.641 -21.25,-13.262 -49.12,-19.891 -83.62,-19.891 -33.54,0 -60.96,5.782 -82.28,17.328 -21.32,11.551 -36.54,28.282 -45.65,50.184 -9.12,21.879 -13.67,51.777 -13.67,89.707 v 206.793 h 47.36 V 292.539 c 0,-31.098 2.89,-54 8.66,-68.73 5.78,-14.731 15.72,-26.09 29.79,-34.059 14.08,-7.969 31.29,-11.961 51.64,-11.961 34.82,0 59.65,7.891 74.46,23.68 14.81,15.781 22.22,46.152 22.22,91.07 v 206.543"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path164" /><path
d="m 5426.51,141.172 v 259.277 h 39.55 v -36.867 c 19.05,28.477 46.55,42.727 82.52,42.727 15.63,0 29.99,-2.821 43.1,-8.418 13.1,-5.629 22.9,-12.993 29.41,-22.102 6.51,-9.117 11.07,-19.937 13.68,-32.469 1.62,-8.148 2.44,-22.379 2.44,-42.73 V 141.172 h -43.95 v 157.707 c 0,17.91 -1.71,31.293 -5.13,40.16 -3.41,8.883 -9.48,15.961 -18.19,21.25 -8.7,5.281 -18.91,7.93 -30.63,7.93 -18.72,0 -34.88,-5.949 -48.47,-17.821 -13.58,-11.886 -20.38,-34.429 -20.38,-67.628 V 141.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path166" /><path
d="m 5704.83,141.172 v 259.277 h 43.95 V 141.172 Z m 0,307.367 v 50.543 h 43.95 v -50.543 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path168" /><path
d="m 5844.48,270.809 c 0,-33.2 7.24,-58.071 21.73,-74.579 14.48,-16.519 32.72,-24.789 54.69,-24.789 21.81,0 39.95,8.297 54.44,24.911 14.48,16.597 21.73,41.898 21.73,75.918 0,32.062 -7.28,56.359 -21.86,72.878 -14.56,16.524 -32.67,24.782 -54.31,24.782 -21.97,0 -40.21,-8.219 -54.69,-24.66 -14.49,-16.438 -21.73,-41.258 -21.73,-74.461 z m -45.16,0 c 0,48.011 13.34,83.57 40.04,106.691 22.29,19.199 49.47,28.809 81.54,28.809 35.64,0 64.77,-11.68 87.4,-35.039 22.62,-23.348 33.94,-55.629 33.94,-96.801 0,-33.367 -5.01,-59.61 -15.01,-78.731 -10.02,-19.129 -24.58,-33.976 -43.71,-44.558 -19.13,-10.578 -40,-15.871 -62.62,-15.871 -36.3,0 -65.64,11.632 -88.01,34.91 -22.38,23.269 -33.57,56.801 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path170" /><path
d="m 6093.75,141.172 v 259.277 h 39.55 v -36.867 c 19.04,28.477 46.54,42.727 82.52,42.727 15.63,0 29.99,-2.821 43.1,-8.418 13.09,-5.629 22.9,-12.993 29.41,-22.102 6.5,-9.117 11.06,-19.937 13.67,-32.469 1.62,-8.148 2.44,-22.379 2.44,-42.73 V 141.172 h -43.94 v 157.707 c 0,17.91 -1.71,31.293 -5.13,40.16 -3.42,8.883 -9.48,15.961 -18.19,21.25 -8.7,5.281 -18.92,7.93 -30.64,7.93 -18.72,0 -34.87,-5.949 -48.46,-17.821 -13.59,-11.886 -20.38,-34.429 -20.38,-67.628 V 141.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path172" /></g></g></svg>

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

17
assets/js/app.js Normal file
View File

@ -0,0 +1,17 @@
import $ from 'jquery';
import 'what-input';
// Foundation JS relies on a global variable. In ES6, all imports are hoisted
// to the top of the file so if we used `import` to import Foundation,
// it would execute earlier than we have assigned the global variable.
// This is why we have to use CommonJS require() here since it doesn't
// have the hoisting behavior.
window.jQuery = $;
require('foundation-sites');
// If you want to pick and choose which modules to include, comment out the above and uncomment
// the line below
//import './lib/foundation-explicit-pieces';
$(document).foundation();

1
assets/js/app.js.map Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,83 @@
import $ from 'jquery';
import { Foundation } from 'foundation-sites/js/foundation.core';
import * as CoreUtils from 'foundation-sites/js/foundation.core.utils';
import { Box } from 'foundation-sites/js/foundation.util.box'
import { onImagesLoaded } from 'foundation-sites/js/foundation.util.imageLoader';
import { Keyboard } from 'foundation-sites/js/foundation.util.keyboard';
import { MediaQuery } from 'foundation-sites/js/foundation.util.mediaQuery';
import { Motion, Move } from 'foundation-sites/js/foundation.util.motion';
import { Nest } from 'foundation-sites/js/foundation.util.nest';
import { Timer } from 'foundation-sites/js/foundation.util.timer';
import { Touch } from 'foundation-sites/js/foundation.util.touch';
import { Triggers } from 'foundation-sites/js/foundation.util.triggers';
import { Abide } from 'foundation-sites/js/foundation.abide';
import { Accordion } from 'foundation-sites/js/foundation.accordion';
import { AccordionMenu } from 'foundation-sites/js/foundation.accordionMenu';
import { Drilldown } from 'foundation-sites/js/foundation.drilldown';
import { Dropdown } from 'foundation-sites/js/foundation.dropdown';
import { DropdownMenu } from 'foundation-sites/js/foundation.dropdownMenu';
import { Equalizer } from 'foundation-sites/js/foundation.equalizer';
import { Interchange } from 'foundation-sites/js/foundation.interchange';
import { Magellan } from 'foundation-sites/js/foundation.magellan';
import { OffCanvas } from 'foundation-sites/js/foundation.offcanvas';
import { Orbit } from 'foundation-sites/js/foundation.orbit';
import { ResponsiveMenu } from 'foundation-sites/js/foundation.responsiveMenu';
import { ResponsiveToggle } from 'foundation-sites/js/foundation.responsiveToggle';
import { Reveal } from 'foundation-sites/js/foundation.reveal';
import { Slider } from 'foundation-sites/js/foundation.slider';
import { SmoothScroll } from 'foundation-sites/js/foundation.smoothScroll';
import { Sticky } from 'foundation-sites/js/foundation.sticky';
import { Tabs } from 'foundation-sites/js/foundation.tabs';
import { Toggler } from 'foundation-sites/js/foundation.toggler';
import { Tooltip } from 'foundation-sites/js/foundation.tooltip';
import { ResponsiveAccordionTabs } from 'foundation-sites/js/foundation.responsiveAccordionTabs';
Foundation.addToJquery($);
// Add Foundation Utils to Foundation global namespace for backwards
// compatibility.
Foundation.rtl = CoreUtils.rtl;
Foundation.GetYoDigits = CoreUtils.GetYoDigits;
Foundation.transitionend = CoreUtils.transitionend;
Foundation.RegExpEscape = CoreUtils.RegExpEscape;
Foundation.onLoad = CoreUtils.onLoad;
Foundation.Box = Box;
Foundation.onImagesLoaded = onImagesLoaded;
Foundation.Keyboard = Keyboard;
Foundation.MediaQuery = MediaQuery;
Foundation.Motion = Motion;
Foundation.Move = Move;
Foundation.Nest = Nest;
Foundation.Timer = Timer;
// Touch and Triggers previously were almost purely sede effect driven,
// so no need to add it to Foundation, just init them.
Touch.init($);
Triggers.init($, Foundation);
MediaQuery._init();
Foundation.plugin(Abide, 'Abide');
Foundation.plugin(Accordion, 'Accordion');
Foundation.plugin(AccordionMenu, 'AccordionMenu');
Foundation.plugin(Drilldown, 'Drilldown');
Foundation.plugin(Dropdown, 'Dropdown');
Foundation.plugin(DropdownMenu, 'DropdownMenu');
Foundation.plugin(Equalizer, 'Equalizer');
Foundation.plugin(Interchange, 'Interchange');
Foundation.plugin(Magellan, 'Magellan');
Foundation.plugin(OffCanvas, 'OffCanvas');
Foundation.plugin(Orbit, 'Orbit');
Foundation.plugin(ResponsiveMenu, 'ResponsiveMenu');
Foundation.plugin(ResponsiveToggle, 'ResponsiveToggle');
Foundation.plugin(Reveal, 'Reveal');
Foundation.plugin(Slider, 'Slider');
Foundation.plugin(SmoothScroll, 'SmoothScroll');
Foundation.plugin(Sticky, 'Sticky');
Foundation.plugin(Tabs, 'Tabs');
Foundation.plugin(Toggler, 'Toggler');
Foundation.plugin(Tooltip, 'Tooltip');
Foundation.plugin(ResponsiveAccordionTabs, 'ResponsiveAccordionTabs');
export { Foundation };

911
assets/scss/_settings.scss Normal file
View File

@ -0,0 +1,911 @@
// Foundation for Sites Settings
// -----------------------------
//
// Table of Contents:
//
// 1. Global
// 2. Breakpoints
// 3. The Grid
// 4. Base Typography
// 5. Typography Helpers
// 6. Abide
// 7. Accordion
// 8. Accordion Menu
// 9. Badge
// 10. Breadcrumbs
// 11. Button
// 12. Button Group
// 13. Callout
// 14. Card
// 15. Close Button
// 16. Drilldown
// 17. Dropdown
// 18. Dropdown Menu
// 19. Flexbox Utilities
// 20. Forms
// 21. Label
// 22. Media Object
// 23. Menu
// 24. Meter
// 25. Off-canvas
// 26. Orbit
// 27. Pagination
// 28. Progress Bar
// 29. Prototype Arrow
// 30. Prototype Border-Box
// 31. Prototype Border-None
// 32. Prototype Bordered
// 33. Prototype Display
// 34. Prototype Font-Styling
// 35. Prototype List-Style-Type
// 36. Prototype Overflow
// 37. Prototype Position
// 38. Prototype Rounded
// 39. Prototype Separator
// 40. Prototype Shadow
// 41. Prototype Sizing
// 42. Prototype Spacing
// 43. Prototype Text-Decoration
// 44. Prototype Text-Transformation
// 45. Prototype Text-Utilities
// 46. Responsive Embed
// 47. Reveal
// 48. Slider
// 49. Switch
// 50. Table
// 51. Tabs
// 52. Thumbnail
// 53. Title Bar
// 54. Tooltip
// 55. Top Bar
// 56. Xy Grid
@import 'util/util';
// 0. arcHIVE specific styles
// ---------
// global project styles
@import "global/colors";
@import "global/typography";
// 1. Global
// ---------
$global-font-size:100%;
$global-width: 100vw;
$global-lineheight: 1.5;
$foundation-palette: (
primary: $hyperlink-blue,
secondary: $desert-red,
success: $acid-green,
warning: $bloody-red,
alert: $bloody-red,
);
$light-gray: #e6e6e6;
$medium-gray: #cacaca;
$dark-gray: #8a8a8a;
$black: #0a0a0a;
$white: #fefefe;
$body-background: $white;
$body-font-color: $black;
$body-font-family: worksans-medium, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
$body-antialiased: true;
$global-margin: 2rem;
$global-padding: 1rem;
$global-position: 1rem;
$global-weight-normal: normal;
$global-weight-bold: bold;
$global-radius: 0;
$global-radius-archive: 2rem;
$global-menu-padding: 0.7rem 1rem;
$global-menu-nested-margin: 1rem;
$global-text-direction: ltr;
$global-flexbox: true;
$global-prototype-breakpoints: false;
$global-button-cursor: auto;
$global-color-pick-contrast-tolerance: 0;
$print-transparent-backgrounds: true;
$print-hrefs: true;
@include add-foundation-colors;
// 2. Breakpoints
// --------------
$breakpoints: (
small: 0,
medium: 640px,
large: 1024px,
xlarge: 1200px,
xxlarge: 1440px,
);
$breakpoints-hidpi: (
hidpi-1: 1,
hidpi-1-5: 1.5,
hidpi-2: 2,
retina: 2,
hidpi-3: 3
);
$print-breakpoint: large;
$breakpoint-classes: (small medium large);
// 3. The Grid
// -----------
$grid-row-width: $global-width;
$grid-column-count: 12;
$grid-column-gutter: (
small: 20px,
medium: 30px,
);
$grid-column-align-edge: true;
$grid-column-alias: 'columns';
$block-grid-max: 8;
// 4. Base Typography
// ------------------
$header-font-family: $body-font-family;
$header-font-weight: $global-weight-normal;
$header-font-style: normal;
$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace;
$header-color: inherit;
$header-lineheight: 1.4;
$header-margin-bottom: 0.5rem;
$header-styles: (
small: (
'h1': ('font-size': 36),
'h2': ('font-size': 30),
'h3': ('font-size': 23),
'h4': ('font-size': 18),
'h5': ('font-size': 17),
'h6': ('font-size': 16),
),
medium: (
'h1': ('font-size': 58),
'h2': ('font-size': 52),
'h3': ('font-size': 40),
'h4': ('font-size': 25),
'h5': ('font-size': 20),
'h6': ('font-size': 16),
),
);
$header-text-rendering: optimizeLegibility;
$small-font-size: 80%;
$header-small-font-color: $dark-gray;
$paragraph-lineheight: 1.6;
$paragraph-margin-bottom: 1rem;
$paragraph-text-rendering: optimizeLegibility;
$enable-code-inline: true;
$anchor-color: $primary-color;
$anchor-color-hover: $primary-color;//scale-color($anchor-color, $lightness: -14%);
$anchor-text-decoration: none;
$anchor-text-decoration-hover: none;
$hr-width: $global-width;
$hr-border: 1px solid $medium-gray;
$hr-margin: rem-calc(20) auto;
$list-lineheight: $paragraph-lineheight;
$list-margin-bottom: $paragraph-margin-bottom;
$list-style-type: disc;
$list-style-position: outside;
$list-side-margin: 1.25rem;
$list-nested-side-margin: 1.25rem;
$defnlist-margin-bottom: 1rem;
$defnlist-term-weight: $global-weight-bold;
$defnlist-term-margin-bottom: 0.3rem;
$blockquote-color: $dark-gray;
$blockquote-padding: rem-calc(9 20 0 19);
$blockquote-border: 1px solid $medium-gray;
$enable-cite-block: true;
$keystroke-font: $font-family-monospace;
$keystroke-color: $black;
$keystroke-background: $light-gray;
$keystroke-padding: rem-calc(2 4 0);
$keystroke-radius: $global-radius;
$abbr-underline: 1px dotted $black;
// 5. Typography Helpers
// ---------------------
$lead-font-size: $global-font-size * 1.25;
$lead-lineheight: 1.6;
$subheader-lineheight: 1.4;
$subheader-color: $dark-gray;
$subheader-font-weight: $global-weight-normal;
$subheader-margin-top: 0.2rem;
$subheader-margin-bottom: 0.5rem;
$stat-font-size: 2.5rem;
$cite-color: $dark-gray;
$cite-font-size: rem-calc(13);
$cite-pseudo-content: '\2014 \0020';
$code-color: $black;
$code-font-family: $font-family-monospace;
$code-font-weight: $global-weight-normal;
$code-background: $light-gray;
$code-border: 1px solid $medium-gray;
$code-padding: rem-calc(2 5 1);
$code-block-padding: 1rem;
$code-block-margin-bottom: 1.5rem;
// 6. Abide
// --------
$abide-inputs: true;
$abide-labels: true;
$input-background-invalid: get-color(alert);
$form-label-color-invalid: get-color(alert);
$input-error-color: get-color(alert);
$input-error-font-size: rem-calc(12);
$input-error-font-weight: $global-weight-bold;
// 7. Accordion
// ------------
$accordion-background: $white;
$accordion-plusminus: true;
$accordion-plus-content: '\002B';
$accordion-minus-content: '\2013';
$accordion-title-font-size: rem-calc(12);
$accordion-item-color: $body-font-color;
$accordion-item-background-hover: none;
$accordion-item-padding: $global-padding*1.5 0;
$accordion-content-background: $white;
$accordion-content-border: none;
$accordion-content-color: $body-font-color;
$accordion-content-padding: $global-padding*1.5 0;
// 8. Accordion Menu
// -----------------
$accordionmenu-padding: $global-menu-padding;
$accordionmenu-nested-margin: $global-menu-nested-margin;
$accordionmenu-submenu-padding: $accordionmenu-padding;
$accordionmenu-arrows: true;
$accordionmenu-arrow-color: $primary-color;
$accordionmenu-item-background: null;
$accordionmenu-border: null;
$accordionmenu-submenu-toggle-background: null;
$accordion-submenu-toggle-border: $accordionmenu-border;
$accordionmenu-submenu-toggle-width: 40px;
$accordionmenu-submenu-toggle-height: $accordionmenu-submenu-toggle-width;
$accordionmenu-arrow-size: 6px;
// 9. Badge
// --------
$badge-background: $primary-color;
$badge-color: $white;
$badge-color-alt: $black;
$badge-palette: $foundation-palette;
$badge-padding: 0.3em;
$badge-minwidth: 2.1em;
$badge-font-size: 0.6rem;
// 10. Breadcrumbs
// ---------------
$breadcrumbs-margin: 0 0 $global-margin 0;
$breadcrumbs-item-font-size: rem-calc(11);
$breadcrumbs-item-color: $primary-color;
$breadcrumbs-item-color-current: $black;
$breadcrumbs-item-color-disabled: $medium-gray;
$breadcrumbs-item-margin: 0.75rem;
$breadcrumbs-item-uppercase: true;
$breadcrumbs-item-separator: true;
$breadcrumbs-item-separator-item: '/';
$breadcrumbs-item-separator-item-rtl: '\\';
$breadcrumbs-item-separator-color: $medium-gray;
// 11. Button
// ----------
$button-font-family: inherit;
$button-font-weight: null;
$button-font-variant: all-petite-caps;
$button-padding: $global-padding $global-padding*3;
$button-margin: 0;
$button-fill: solid;
$button-background: $primary-color;
$button-background-hover: scale-color($button-background, $lightness: -15%);
$button-color: $white;
$button-color-alt: $black;
$button-radius: $global-radius-archive;
$button-border: 1px solid transparent;
$button-hollow-border-width: 2px;
$button-sizes: (
tiny: 0.6rem,
small: 0.75rem,
default: 1.2rem,
large: 1.5rem,
);
$button-palette: $foundation-palette;
$button-opacity-disabled: 0.25;
$button-background-hover-lightness: -20%;
$button-hollow-hover-lightness: -50%;
$button-transition: background-color 0.25s ease-out, color 0.25s ease-out;
$button-responsive-expanded: false;
// 12. Button Group
// ----------------
$buttongroup-margin: 1rem;
$buttongroup-spacing: 1px;
$buttongroup-child-selector: '.button';
$buttongroup-expand-max: 6;
$buttongroup-radius-on-each: true;
// 13. Callout
// -----------
$callout-background: $white;
$callout-background-fade: 85%;
$callout-border: 1px solid rgba($black, 0.25);
$callout-margin: 0 0 1rem 0;
$callout-sizes: (
small: 0.5rem,
default: 1rem,
large: 3rem,
);
$callout-font-color: $body-font-color;
$callout-font-color-alt: $body-background;
$callout-radius: $global-radius;
$callout-link-tint: 30%;
// 14. Card
// --------
$card-background: unset;
$card-font-color: $body-font-color;
$card-divider-background: $light-gray;
$card-border: none;
$card-shadow: none;
$card-border-radius: $global-radius;
$card-padding: $global-padding*4;
$card-margin-bottom: $global-margin*2;
// 15. Close Button
// ----------------
$closebutton-position: right top;
$closebutton-z-index: 10;
$closebutton-default-size: medium;
$closebutton-offset-horizontal: (
small: 0.66rem,
medium: 1rem,
);
$closebutton-offset-vertical: (
small: 0.33em,
medium: 0.5rem,
);
$closebutton-size: (
small: 1.5em,
medium: 2em,
);
$closebutton-lineheight: 1;
$closebutton-color: $dark-gray;
$closebutton-color-hover: $black;
// 16. Drilldown
// -------------
$drilldown-transition: transform 0.15s linear;
$drilldown-arrows: true;
$drilldown-padding: $global-menu-padding;
$drilldown-nested-margin: 0;
$drilldown-background: $white;
$drilldown-submenu-padding: $drilldown-padding;
$drilldown-submenu-background: $white;
$drilldown-arrow-color: $primary-color;
$drilldown-arrow-size: 6px;
// 17. Dropdown
// ------------
$dropdown-padding: 1rem;
$dropdown-background: $body-background;
$dropdown-border: none;//1px solid $medium-gray;
$dropdown-font-size: 1rem;
$dropdown-width: 100%;
$dropdown-radius: $global-radius;
$dropdown-sizes: (
tiny: 100px,
small: 200px,
large: 400px,
);
// 18. Dropdown Menu
// -----------------
$dropdownmenu-arrows: true;
$dropdownmenu-arrow-color: $body-font-color;//$anchor-color;
$dropdownmenu-arrow-size: 6px;
$dropdownmenu-arrow-padding: 1.5rem;
$dropdownmenu-min-width: 100%;//200px;
$dropdownmenu-background: null;
$dropdownmenu-submenu-background: $dropdown-background;
$dropdownmenu-padding: $global-menu-padding;
$dropdownmenu-nested-margin: 0;
$dropdownmenu-submenu-padding: $dropdownmenu-padding;
$dropdownmenu-border: none; //1px solid $medium-gray;
$dropdown-menu-item-color-active: get-color(primary);
$dropdown-menu-item-background-active: transparent;
// 19. Flexbox Utilities
// ---------------------
$flex-source-ordering-count: 6;
$flexbox-responsive-breakpoints: true;
// 20. Forms
// ---------
$fieldset-border: 1px solid $medium-gray;
$fieldset-padding: rem-calc(20);
$fieldset-margin: rem-calc(18 0);
$legend-padding: rem-calc(0 3);
$form-spacing: rem-calc(16);
$helptext-color: $black;
$helptext-font-size: rem-calc(13);
$helptext-font-style: italic;
$input-prefix-color: $black;
$input-prefix-background: $light-gray;
$input-prefix-border: 1px solid $medium-gray;
$input-prefix-padding: 1rem;
$form-label-color: $black;
$form-label-font-size: rem-calc(14);
$form-label-font-weight: $global-weight-normal;
$form-label-line-height: 1.8;
$select-background: $white;
$select-triangle-color: $dark-gray;
$select-radius: $global-radius;
$input-color: $black;
$input-placeholder-color: $medium-gray;
$input-font-family: inherit;
$input-font-size: rem-calc(16);
$input-font-weight: $global-weight-normal;
$input-line-height: $global-lineheight;
//$input-background: $white;
//$input-background-focus: $white;
$input-background: scale-color($primary-color, $lightness: 95%);
$input-background-focus: scale-color($primary-color, $lightness: 85%);
$input-background-disabled: $light-gray;
$input-border: 1px solid $medium-gray;
$input-border-focus: 1px solid $dark-gray;
$input-padding: $form-spacing / 2;
$input-shadow: inset 0 1px 2px rgba($black, 0.1);
$input-shadow-focus: 0 0 5px $medium-gray;
$input-cursor-disabled: not-allowed;
$input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
$input-number-spinners: true;
$input-radius: $global-radius;
$form-button-radius: $global-radius;
// 21. Label
// ---------
$label-background: $primary-color;
$label-color: $white;
$label-color-alt: $black;
$label-palette: $foundation-palette;
$label-font-size: 0.8rem;
$label-padding: 0.33333rem 0.5rem;
$label-radius: $global-radius;
// 22. Media Object
// ----------------
$mediaobject-margin-bottom: $global-margin;
$mediaobject-section-padding: $global-padding;
$mediaobject-image-width-stacked: 100%;
// 23. Menu
// --------
$menu-margin: 0;
$menu-nested-margin: $global-menu-nested-margin;
$menu-items-padding: $global-menu-padding;
$menu-simple-margin: 1rem;
$menu-item-color: $black;
$menu-item-color-active: $anchor-color;
$menu-item-color-alt-active: $black;
$menu-item-background-active: $white;
$menu-icon-spacing: 0.25rem;
$menu-state-back-compat: true;
$menu-centered-back-compat: true;
$menu-icons-back-compat: true;
$menu-anchor-color: $black;
$menu-anchor-color-hover: $anchor-color;
// 24. Meter
// ---------
$meter-height: 1rem;
$meter-radius: $global-radius;
$meter-background: $medium-gray;
$meter-fill-good: $success-color;
$meter-fill-medium: $warning-color;
$meter-fill-bad: $alert-color;
// 25. Off-canvas
// --------------
$offcanvas-sizes: (
small: 250px,
);
$offcanvas-vertical-sizes: (
small: 250px,
);
$offcanvas-background: $light-gray;
$offcanvas-shadow: 0 0 10px rgba($black, 0.7);
$offcanvas-inner-shadow-size: 20px;
$offcanvas-inner-shadow-color: rgba($black, 0.25);
$offcanvas-overlay-zindex: 11;
$offcanvas-push-zindex: 12;
$offcanvas-overlap-zindex: 13;
$offcanvas-reveal-zindex: 12;
$offcanvas-transition-length: 0.5s;
$offcanvas-transition-timing: ease;
$offcanvas-fixed-reveal: true;
$offcanvas-exit-background: rgba($white, 0.25);
$maincontent-class: 'off-canvas-content';
// 26. Orbit
// ---------
$orbit-bullet-background: $medium-gray;
$orbit-bullet-background-active: $dark-gray;
$orbit-bullet-diameter: 1.2rem;
$orbit-bullet-margin: 0.1rem;
$orbit-bullet-margin-top: 0.8rem;
$orbit-bullet-margin-bottom: 0.8rem;
$orbit-caption-background: rgba($black, 0.5);
$orbit-caption-padding: 1rem;
$orbit-control-background-hover: rgba($black, 0.5);
$orbit-control-padding: 1rem;
$orbit-control-zindex: 10;
// 27. Pagination
// --------------
$pagination-font-size: rem-calc(14);
$pagination-margin-bottom: $global-margin;
$pagination-item-color: $black;
$pagination-item-padding: rem-calc(3 10);
$pagination-item-spacing: rem-calc(1);
$pagination-radius: $global-radius;
$pagination-item-background-hover: $light-gray;
$pagination-item-background-current: $primary-color;
$pagination-item-color-current: $white;
$pagination-item-color-disabled: $medium-gray;
$pagination-ellipsis-color: $black;
$pagination-mobile-items: false;
$pagination-mobile-current-item: false;
$pagination-arrows: true;
$pagination-arrow-previous: '\00AB';
$pagination-arrow-next: '\00BB';
// 28. Progress Bar
// ----------------
$progress-height: 1rem;
$progress-background: $medium-gray;
$progress-margin-bottom: $global-margin;
$progress-meter-background: $primary-color;
$progress-radius: $global-radius;
// 29. Prototype Arrow
// -------------------
$prototype-arrow-directions: (
down,
up,
right,
left
);
$prototype-arrow-size: 0.4375rem;
$prototype-arrow-color: $black;
// 30. Prototype Border-Box
// ------------------------
$prototype-border-box-breakpoints: $global-prototype-breakpoints;
// 31. Prototype Border-None
// -------------------------
$prototype-border-none-breakpoints: $global-prototype-breakpoints;
// 32. Prototype Bordered
// ----------------------
$prototype-bordered-breakpoints: $global-prototype-breakpoints;
$prototype-border-width: rem-calc(1);
$prototype-border-type: solid;
$prototype-border-color: $medium-gray;
// 33. Prototype Display
// ---------------------
$prototype-display-breakpoints: $global-prototype-breakpoints;
$prototype-display: (
inline,
inline-block,
block,
table,
table-cell
);
// 34. Prototype Font-Styling
// --------------------------
$prototype-font-breakpoints: $global-prototype-breakpoints;
$prototype-wide-letter-spacing: rem-calc(4);
$prototype-font-normal: $global-weight-normal;
$prototype-font-bold: $global-weight-bold;
// 35. Prototype List-Style-Type
// -----------------------------
$prototype-list-breakpoints: $global-prototype-breakpoints;
$prototype-style-type-unordered: (
disc,
circle,
square
);
$prototype-style-type-ordered: (
decimal,
lower-alpha,
lower-latin,
lower-roman,
upper-alpha,
upper-latin,
upper-roman
);
// 36. Prototype Overflow
// ----------------------
$prototype-overflow-breakpoints: $global-prototype-breakpoints;
$prototype-overflow: (
visible,
hidden,
scroll
);
// 37. Prototype Position
// ----------------------
$prototype-position-breakpoints: $global-prototype-breakpoints;
$prototype-position: (
static,
relative,
absolute,
fixed
);
$prototype-position-z-index: 975;
// 38. Prototype Rounded
// ---------------------
$prototype-rounded-breakpoints: $global-prototype-breakpoints;
$prototype-border-radius: rem-calc(3);
// 39. Prototype Separator
// -----------------------
$prototype-separator-breakpoints: $global-prototype-breakpoints;
$prototype-separator-align: center;
$prototype-separator-height: rem-calc(2);
$prototype-separator-width: 3rem;
$prototype-separator-background: $primary-color;
$prototype-separator-margin-top: $global-margin;
// 40. Prototype Shadow
// --------------------
$prototype-shadow-breakpoints: $global-prototype-breakpoints;
$prototype-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),
0 2px 10px 0 rgba(0,0,0,.12);
// 41. Prototype Sizing
// --------------------
$prototype-sizing-breakpoints: $global-prototype-breakpoints;
$prototype-sizing: (
width,
height
);
$prototype-sizes: (
25: 25%,
50: 50%,
75: 75%,
100: 100%
);
// 42. Prototype Spacing
// ---------------------
$prototype-spacing-breakpoints: $global-prototype-breakpoints;
$prototype-spacers-count: 3;
// 43. Prototype Text-Decoration
// -----------------------------
$prototype-decoration-breakpoints: $global-prototype-breakpoints;
$prototype-text-decoration: (
overline,
underline,
line-through,
);
// 44. Prototype Text-Transformation
// ---------------------------------
$prototype-transformation-breakpoints: $global-prototype-breakpoints;
$prototype-text-transformation: (
lowercase,
uppercase,
capitalize
);
// 45. Prototype Text-Utilities
// ----------------------------
$prototype-utilities-breakpoints: $global-prototype-breakpoints;
$prototype-text-overflow: ellipsis;
// 46. Responsive Embed
// --------------------
$responsive-embed-margin-bottom: rem-calc(16);
$responsive-embed-ratios: (
default: 16 by 9,
standard: 4 by 3,
widescreen: 16 by 9,
classicfilm: 3 by 2,
);
// 47. Reveal
// ----------
$reveal-background: $white;
$reveal-width: 600px;
$reveal-max-width: $global-width;
$reveal-padding: $global-padding;
$reveal-border: 1px solid $medium-gray;
$reveal-radius: $global-radius;
$reveal-zindex: 1005;
$reveal-overlay-background: rgba($black, 0.45);
// 48. Slider
// ----------
$slider-width-vertical: 0.5rem;
$slider-transition: all 0.2s ease-in-out;
$slider-height: 0.5rem;
$slider-background: $light-gray;
$slider-fill-background: $medium-gray;
$slider-handle-height: 1.4rem;
$slider-handle-width: 1.4rem;
$slider-handle-background: $primary-color;
$slider-opacity-disabled: 0.25;
$slider-radius: $global-radius;
// 49. Switch
// ----------
$switch-background: $medium-gray;
$switch-background-active: $primary-color;
$switch-height: 2rem;
$switch-height-tiny: 1.5rem;
$switch-height-small: 1.75rem;
$switch-height-large: 2.5rem;
$switch-radius: $global-radius;
$switch-margin: $global-margin;
$switch-paddle-background: $white;
$switch-paddle-offset: 0.25rem;
$switch-paddle-radius: $global-radius;
$switch-paddle-transition: all 0.25s ease-out;
$switch-opacity-disabled: .5;
$switch-cursor-disabled: not-allowed;
// 50. Table
// ---------
$table-background: $white;
$table-color-scale: 5%;
$table-border: 1px solid smart-scale($table-background, $table-color-scale);
$table-padding: rem-calc(8 10 10);
$table-hover-scale: 2%;
$table-row-hover: darken($table-background, $table-hover-scale);
$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
$table-is-striped: true;
$table-striped-background: smart-scale($table-background, $table-color-scale);
$table-stripe: even;
$table-head-background: smart-scale($table-background, $table-color-scale / 2);
$table-head-row-hover: darken($table-head-background, $table-hover-scale);
$table-foot-background: smart-scale($table-background, $table-color-scale);
$table-foot-row-hover: darken($table-foot-background, $table-hover-scale);
$table-head-font-color: $body-font-color;
$table-foot-font-color: $body-font-color;
$show-header-for-stacked: false;
$table-stack-breakpoint: medium;
// 51. Tabs
// --------
$tab-margin: 0;
$tab-background: $white;
$tab-color: $primary-color;
$tab-background-active: $light-gray;
$tab-active-color: $primary-color;
$tab-item-font-size: rem-calc(12);
$tab-item-background-hover: $white;
$tab-item-padding: 1.25rem 1.5rem;
$tab-content-background: $white;
$tab-content-border: $light-gray;
$tab-content-color: $body-font-color;
$tab-content-padding: 1rem;
// 52. Thumbnail
// -------------
$thumbnail-border: 4px solid $white;
$thumbnail-margin-bottom: $global-margin;
$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
$thumbnail-transition: box-shadow 200ms ease-out;
$thumbnail-radius: $global-radius;
// 53. Title Bar
// -------------
$titlebar-background: $white;
$titlebar-color: $black;
$titlebar-padding: 0.5rem;
$titlebar-text-font-weight: bold;
$titlebar-icon-color: $black;
$titlebar-icon-color-hover: $medium-gray;
$titlebar-icon-spacing: 0.25rem;
// 54. Tooltip
// -----------
$has-tip-cursor: help;
$has-tip-font-weight: $global-weight-bold;
$has-tip-border-bottom: dotted 1px $dark-gray;
$tooltip-background-color: $black;
$tooltip-color: $white;
$tooltip-padding: 0.75rem;
$tooltip-max-width: 10rem;
$tooltip-font-size: $small-font-size;
$tooltip-pip-width: 0.75rem;
$tooltip-pip-height: $tooltip-pip-width * 0.866;
$tooltip-radius: $global-radius;
// 55. Top Bar
// -----------
$topbar-padding: 0.5rem;
$topbar-background: $light-gray;
$topbar-submenu-background: $topbar-background;
$topbar-title-spacing: 0.5rem 1rem 0.5rem 0;
$topbar-input-width: 200px;
$topbar-unstack-breakpoint: medium;
// 56. Xy Grid
// -----------
$xy-grid: true;
$grid-container: $global-width;
$grid-columns: 12;
$grid-margin-gutters: (
small: 20px,
medium: 30px
);
$grid-padding-gutters: $grid-margin-gutters;
$grid-container-padding: $grid-padding-gutters;
$grid-container-max: $global-width;
$xy-block-grid-max: 8;

114
assets/scss/app.scss Normal file
View File

@ -0,0 +1,114 @@
@charset 'utf-8';
// foundation styles
@import 'settings';
@import 'foundation';
@import 'motion-ui';
// Global styles
@include foundation-global-styles;
@include foundation-forms;
@include foundation-typography;
// Grids (choose one)
@include foundation-xy-grid-classes;
// @include foundation-grid;
// @include foundation-flex-grid;
// Generic components
@include foundation-button;
@include foundation-button-group;
@include foundation-close-button;
@include foundation-label;
//@include foundation-progress-bar;
//@include foundation-slider;
//@include foundation-switch;
@include foundation-table;
// Basic components
@include foundation-badge;
@include foundation-breadcrumbs;
@include foundation-callout;
@include foundation-card;
@include foundation-dropdown;
@include foundation-pagination;
@include foundation-tooltip;
// Containers
@include foundation-accordion;
@include foundation-media-object;
//@include foundation-orbit;
@include foundation-responsive-embed;
@include foundation-tabs;
@include foundation-thumbnail;
// Menu-based containers
@include foundation-menu;
@include foundation-menu-icon;
@include foundation-accordion-menu;
@include foundation-drilldown-menu;
@include foundation-dropdown-menu;
// Layout components
@include foundation-off-canvas;
@include foundation-reveal;
@include foundation-sticky;
@include foundation-title-bar;
@include foundation-top-bar;
// Helpers
@include foundation-float-classes;
@include foundation-flex-classes;
@include foundation-visibility-classes;
// @include foundation-prototype-classes;
// Motion UI
@include motion-ui-transitions;
@include motion-ui-animations;
// arcHIVE styles
// global project styles
@import "global/wp-overrides"; //errors
@import "global/wp-admin"; //errors
@import "global/typography";
@import "global/gutenberg";
@import "global/colors";
@import "global/branding";
@import "global/accessibility";
// Modules
@import "modules/navigation";
@import "modules/header";
@import "modules/footer";
//@import "modules/editor-syle";
@import "modules/content";
// Componentes
@import "components/links";
@import "components/featured-image";
@import "components/dividers";
@import "components/cards";
@import "components/buttons";
@import "components/accordion";
// Templates
//@import "templates/front";
// Vendors
//
// fontawesome as shown here:
// https://stackoverflow.com/questions/49195144/add-font-awesome-to-gulp-project-correctly#51491927
// 1. install fortawesome
// npm install --save-dev @fortawesome/fontawesome-free
// 2. uncomment these lines
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/fontawesome";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/brands";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/regular";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/solid";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/v4-shims";
// 3. add this to gulp
// gulp.task('icons', function() {
// return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/*')
// .pipe(gulp.dest(dist+'/assets/webfonts/'));
// });

View File

@ -0,0 +1,14 @@
.accordion-item {
border-bottom: 1px solid $body-font-color;
}
.accordion-title {
ul,ol {
list-style: none;
@include xy-grid;
}
li {
display:inline;
@include xy-cell(3);
text-align:left;
}
}

View File

@ -0,0 +1,25 @@
button,.button {
min-width: 20rem;
}
.hero {
button,.button {
min-width: 20vw;
color: $button-color-alt;
font-size: $global-font-size*1.3;
border-color: $button-color-alt;
border-radius: 4rem;
&:hover{
color: $anchor-color;
border-color: $anchor-color;
}
}
}
//.dropdown.menu{
// .button{
// min-width: unset;
// a {
// padding: 0.5rem;
// }
// }
//}

View File

@ -0,0 +1,3 @@
.card {
padding: $global-padding;
}

View File

@ -0,0 +1,4 @@
.dotted {
border-style: dashed;
margin: 2rem 0;
}

View File

@ -0,0 +1,14 @@
.featured-hero {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: rem-calc(100);
@include breakpoint(medium) {
height: rem-calc(200);
}
@include breakpoint(xlarge) {
height: rem-calc(400);
}
}

View File

@ -0,0 +1,89 @@
// search elements
.search{
.input-group {
position: relative;
border-radius: 4rem;
overflow: hidden;
padding: 0;
margin: 0;
.appear {
right: 0;
position: absolute;
height: 100%;
padding: 0.3rem 1rem;
}
}
.input-group * {
margin: 0;
}
.button{
border-color: $primary-color;
}
.appear{
display:none;
}
input{
&:active{
border-color: $primary-color;
background-color: $input-background-focus;
}
&:focus,&:focus-within{
border-color: $primary-color;
background-color: $input-background;
}
&:not(:placeholder-shown) {
border:none;
background-color: $input-background-focus;
position: relative;
padding-right: $global-padding * 9;
+ .appear {
display: block;
background-color: scale-color($input-background-focus, $lightness: -20%);
z-index: 2;
&:hover {
color: $white;
background-color: $primary-color;
}
}
}
}
.hollow {
border-color: $primary-color;
color: $primary-color;
&::after {
}
&::placeholder {
color: scale-color($primary-color, $lightness: -20%);
}
&:hover {
background-color: scale-color($primary-color, $lightness: 95%);
}
&:active {
background-color: scale-color($primary-color, $lightness: 85%);
}
}
}
//search block size in content
article,.omekas-entry-content {
.search{
@include xy-grid();
.input-group {
@include breakpoint(small){
@include xy-cell (12);
margin-left: auto;
margin-right: auto;
}
@include breakpoint(medium){
@include xy-cell (6);
margin-left: auto;
margin-right: auto;
}
@include breakpoint(large){
@include xy-cell (4);
margin-left: auto;
margin-right: auto;
}
}
}
}

View File

@ -0,0 +1,8 @@
// Apply outline styles only when input method is keyboard
// remove :focus style via What Input using progressive enhancement
// so :focus isn't left broken if JavaScript fails
[data-whatinput="mouse"] a:focus, button:focus
[data-whatinput="touch"] a:focus, button:focus {
outline: none;
}

86
assets/scss/editor.scss Normal file
View File

@ -0,0 +1,86 @@
/*!
* Gutenberg Editor Styles
*/
/** === Includes === */
@charset 'utf-8';
@import 'settings';
@import 'foundation';
@include foundation-typography;
@include foundation-button;
@include foundation-table;
/** === Content Width === */
.wp-block {
width: calc(100vw - (2 * 10));
@each $breakpoint, $size in $grid-margin-gutters {
@include breakpoint($breakpoint) {
width: calc(100vw - ($size));
}
}
}
/** === Base Typography === */
body {
font-size: $global-font-size;
font-family: $body-font-family;
color: $body-font-color;
}
/** === Post Title === */
.editor-post-title__block .editor-post-title__input{
@extend h1;
}
/** === Button === */
.wp-block-button {
// add general foundation button styling to button in editor
.wp-block-button__link {
@extend .button;
}
// add special styling for squared buttons
&.is-style-squared .wp-block-button__link {
border-radius: 0;
}
// add outline styles
&.is-style-outline .wp-block-button__link{
@extend .hollow;
}
// set transparent background to block for outline button
&.is-style-outline,
&.is-style-outline:hover,
&.is-style-outline:focus,
&.is-style-outline:active {
background: transparent;
}
}
/** === File === */
.wp-block-file__button{
@include button();
}
/** === Pullquote === */
.wp-block-paragraph.has-background{
padding: rem-calc(20px 30px);
}
/** === Table === */
.wp-block-table td{
border: none;
}
/** === Latest Posts grid view === */
.wp-block-latest-posts.is-grid{
list-style: none;
}

View File

@ -0,0 +1,29 @@
// Text meant only for screen readers. Addresses part of theme-check issue #840.
// https://github.com/Automattic/_s/blob/master/style.css
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; // Above WP toolbar.
}

View File

@ -0,0 +1,29 @@
.brand-logo,.site-brand {
.site-name,.site-description {
display: none;
}
&::before {
content: '';
display:inline-block;
margin-top:-$global-padding;
width: 100%;
height: $global-padding*5;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
&.archive{
&::before {
max-width: 10rem;
background-image: url('../img/ARC-HIVE-logo.svg');
}
}
&.eu{
&::before {
max-width: 15rem;
//background-image: url('../img/eu_flag_creative_europe_co_funded_black_right.svg');
background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg');
//background-image: url('../img/rechts_co-funded-by-the-creative-europe-media-programme-of-the-european-union-flag.png');
}
}
}

View File

@ -0,0 +1,12 @@
$stone-grey: #CCCCCC;
$acid-green: #69E344;
$bubblegum-pink: #F096F9;
$desert-red: #D75930;
$mustard-yellow: #F5C042;
$beach-blue: #5CC8D1;
$hyperlink-blue: #0000DD;
$bloody-red: #D32D1F;
$mid-grey: #808080;
$antracite-grey: #333333;
$forest-green: #1E6041;
$raspberry-purple: #54367B;

View File

@ -0,0 +1,65 @@
/*
Frontend styles for gutenberg blocks
*/
/** === Base Color Palatte === */
@each $color, $code in $foundation-palette {
.has-#{$color}-background-color {
background-color: $code;
}
.has-#{$color}-color {
color: $code;
}
}
/** === Button === */
.wp-block-button {
// add general foundation button styling
.wp-block-button__link {
@extend .button;
@each $color, $code in $foundation-palette {
&.has-#{$color}-background-color {
background-color: $code;
}
&.has-#{$color}-color {
color: $code;
}
}
}
// add special styling for squared buttons
&.is-style-squared .wp-block-button__link {
border-radius: 0;
}
// add outline styles
&.is-style-outline .wp-block-button__link{
@extend .hollow;
}
// set transparent background to block for outline button
&.is-style-outline,
&.is-style-outline:hover,
&.is-style-outline:focus,
&.is-style-outline:active {
// background: transparent;
.wp-block-button__link{
// background: transparent;
}
}
}
/** === File === */
.wp-block-file .wp-block-file__button{
@include button();
}
/** === Image === */
.wp-block-image {
margin: 0;
}

View File

@ -0,0 +1,44 @@
@font-face {
font-family: 'worksans-medium';
src: url('../fonts/WorkSans-Medium.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'worksans-mediumitalic';
src: url('../fonts/WorkSans-MediumItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@mixin font-worksans-medium {
font-face: worksans-medium, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: normal;
}
@mixin font-worksans-mediumitalic {
font-face: worksans-mediumitalic, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: normal;
}
//
// mods on fonts and typography
// not in foundation variables
// -----------------------------
//h1,h2,h3,h4,h5,h6,
//.h1,.h2,.h3,.h4,.h4,.h5,.h6,
//button,.button,
//header nav,
//.hero .claim
//{
// font-variant:all-small-caps;
//}
//
//
//h1,h2,h3,h4,h5,h6,
//.h1,.h2,.h3,.h4,.h4,.h5,.h6 {
// a {
// color: $black;
// }
//}

View File

@ -0,0 +1,23 @@
// Fix the issue where the WP admin-bar overlaps the mobile menu
#wpadminbar {
position: fixed !important;
}
// Make sure that the WP admin-bar does not overlap Foundation components
body.admin-bar {
// Offset sticky top bar
&.f-topbar-fixed {
.sticky.fixed {
margin-top: rem-calc(32);
}
}
// Offset mobile off-canvas menu
&.offcanvas {
.off-canvas.is-open {
top: rem-calc(46);
@include breakpoint(small) {
top: rem-calc(32);
}
}
}
}

View File

@ -0,0 +1,57 @@
//.wp-caption > figcaption {
// max-width: 100%;
// font-size: 0.8rem;
// color: #999;
// padding: 0.25rem 0;
//}
//
//p.wp-caption-text{
// font-size:90%;
// color: #666;
// padding:rem-calc(10) 0;
//}
//
//.alignleft {
// float: left;
// padding-right: 1rem;
// margin: 0;
//}
//
//.alignright {
// float: right;
// padding-left: 1rem;
// margin: 0;
//}
//
//.aligncenter {
// display: block;
// margin-left: auto;
// margin-right: auto;
//}
//
//.gallery {
// @include xy-grid;
// @include xy-gutters($negative: true);
// @for $i from 1 through 9 {
// &.gallery-columns-#{$i} {
// @include xy-grid-layout(2, '.gallery-item', true);
// }
// @include breakpoint(medium){
// &.gallery-columns-#{$i} {
// @include xy-grid-layout(4, '.gallery-item', true, (small: 30px));
// }
// }
// @include breakpoint(large) {
// &.gallery-columns-#{$i} {
// @include xy-grid-layout($i, '.gallery-item', true, (small: 30px));
// }
// }
// }
// .gallery-icon > a {
// @include thumbnail;
// @include thumbnail-link;
// }
// .gallery-icon > img {
// @include thumbnail;
// }
//}

View File

@ -0,0 +1,360 @@
//content {
// general styles
//----------------
//
// mods on fonts and typography
// not in foundation variables
// -----------------------------
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h4,.h5,.h6,
button,.button,
header nav,
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h4,.h5,.h6 {
font-variant:all-small-caps;
a {
color: $body-font-color;
}
}
.excerpt,.post-excerpt{
a {
color: $body-font-color;
&:hover {
p {
color: $anchor-color;
}
}
}
}
//
// main block
//--------------
main {
article {
@include xy-grid;
header {
@include xy-cell(12);
.entry-title {
width: 100%;
text-align: center;
}
}
.entry-content {
@include breakpoint(small){
@include xy-cell(12);
padding: $global-padding*2 ;
margin:0 auto;
}
@include breakpoint(medium){
@include xy-cell(12);
padding: $global-padding*2 $global-padding*3;
max-width: 50rem;
margin:0 auto;
}
@include breakpoint(xlarge){
@include xy-cell(12);
max-width: 50rem;
padding: $global-padding*2 $global-padding*3;
font-size: $global-font-size*1.2;
margin: 0 auto;
}
}
}
}
//
// category view and news
//--------------
.category-posts {
@include xy-grid;
header,main,aside {
@include breakpoint(small){
@include xy-cell(12);
@include flex;
@include flex-align(center,top);
padding-top: $global-padding*3;
}
@include breakpoint(medium){
}
}
main {
//@include xy-cell(12);
@include xy-grid;
article{
text-align:center;
@include card-container();
@include breakpoint(small){
@include xy-cell(12);
}
@include breakpoint(medium){
@include xy-cell(6);
}
@include breakpoint(large){
@include xy-cell(4);
}
figure {
@include breakpoint(small){
@include xy-cell(12);
height: 58vw;
max-width: 100%;
overflow: hidden;
background-image: url('../img/ARC-HIVE-logo.svg');
background-color: rgb(240,240,240);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@include breakpoint(medium){
height: 28vw;
}
@include breakpoint(large){
height: 20vw;
}
}
.date {
height: 1rem;
padding-top: $global-padding*2;
}
.entry-title {
padding-top: $global-padding*2;
line-height: 0.7;
font-size: $global-font-size*1.5;
}
}
}
aside {
@include breakpoint(small){
padding-top:0;
padding-bottom: $global-padding*3;
}
@include breakpoint(medium){
padding-top: $global-padding*3;
padding-bottom: 0;
}
}
&.resources {
@include xy-grid;
header,main,aside {
}
main {
article{
@include breakpoint(small){
@include xy-cell(12);
}
@include breakpoint(medium){
@include xy-cell(1 of 3);
}
@include breakpoint(large){
@include xy-cell(1 of 5);
}
}
figure {
@include breakpoint(small){
}
@include breakpoint(medium){
height: 18vw;
}
@include breakpoint(large){
height: 10vw;
}
}
}
}
}
// end category-posts
//
// collections category
//--------------
.collections-list {
@include xy-grid;
header,main,aside {
@include xy-cell(12);
@include flex;
@include flex-align(center,top);
padding: $global-padding*3 0;
}
header {
border-top: 1px solid $body-font-color;
padding: $global-padding*4 0;
}
main {
@include xy-grid;
article{
text-align:center;
@include card-container();
@include breakpoint(small){
@include xy-cell();
}
@include breakpoint(medium){
}
@include breakpoint(large){
}
}
}
aside {
}
}
// end news & resources category
//
// partners
// for big announcemnts
//---------------------
.partners {
.entry-content {
max-width: unset;
p {
padding-left: 30vw;
padding-bottom: 2rem;
margin-bottom: 2rem;
&:after {
content: '';
display: inline-block;
border-bottom: 1px solid $body-font-color;
width: 100vw;
position: absolute;
left: 0;
padding-top: 2rem;
}
}
.alignleft {
margin: 0;
padding: 0;
}
.wp-block-image {
margin: 0;
}
}
}
//
// hero
// for big announcemnts
//---------------------
.hero {
.slides {
@include xy-grid();
border-top: 2px solid $primary-color;
.slide {
@include xy-grid;
&.widget {
display: flex;
align-content: center;
justify-content: center;
}
// &.widget_media_image {
// justify-content: unset;
// align-content: stretch;
// }
@include breakpoint(small){
width: 100vw;
margin: 0;
&.widget_text p,.textwidget {
padding: $global-padding * 2;
}
}
@include breakpoint(medium){
&.widget_text p,.textwidget {
max-width: 50rem;
margin:auto;
padding: $global-padding * 2;
font-size: $global-font-size*1.3;
}
}
@include breakpoint(large){
width: 50%;
height: calc((50vw*9)/16);
padding: 0;
margin: 0;
overflow:hidden;
a {
@include flex;
@include flex-align (center,middle);
}
img {
// max-width: unset !important;
height: 100% !important;
}
&.widget_text p,.textwidget {
font-size: $global-font-size*1.2;
padding: $global-padding * 2;
}
}
@include breakpoint(xlarge){
&.widget_text p,.textwidget {
font-size: $global-font-size*1.3;
padding: $global-padding*3;
}
}
@include breakpoint(xxlarge){
&.widget_text p,.textwidget {
font-size: $global-font-size*1.6;
padding: $global-padding*3;
}
}
&:nth-child(odd) {
background-color: $primary-color;
font-variant:all-small-caps;
* {
color: $white;
}
}
color: $white;
.logo {
@include breakpoint(medium){
max-width: 80%;
}
}
}
}
aside {
@include xy-grid();
background-color: $secondary-color;
nav {
@include xy-cell(auto);
@include flex;
@include flex-align(spaced,middle);
min-height: 6rem;
padding: $global-padding 0 ;
a {
color: $body-font-color;
}
.button {
justify-content:center;
}
}
}
//hero secondary
&.secondary {
border-top: none;
background-color: $secondary-color;
.slide{
figure {
background-color: unset;
}
}
}
}
//end hero
//}
// end content

View File

@ -0,0 +1,5 @@
body#tinymce{
height: auto; // Fix editor style bug
max-width: $grid-row-width; // Give the editor a max-width
padding: rem-calc(20) !important;
}

View File

@ -0,0 +1,79 @@
footer {
background-color: $secondary-color;
a {
color: $body-font-color;
&:hover {
color: $primary-color;
}
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6,
p,ul,ol,li {
margin: 0;
}
ul,ol {
list-style: none;
li {
float:left;
padding-right: $global-padding;
}
}
.clear.clearfix {
width: 100%;
}
.logo {
}
.site-brand,.brand-logo {
&.archive{
&::before {
margin-top:unset;
}
}
&.eu {
&::before {
margin-top:unset;
max-width:100%;
max-height: 4rem;
}
}
}
.copyright,.legal-credits {
font-size: $global-font-size*0.8;
}
.subsection {
@include breakpoint(small) {
@include xy-grid;
@include flex;
@include flex-align(left,bottom);
border-top: 1px solid black;
padding: $global-padding;
font-size: $global-font-size * 0.8;
&:first-child {
//padding-top: $global-padding*3;
}
.co-founded {
text-align:right;
}
}
@include breakpoint(medium) {
font-size: $global-font-size;
}
aside {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(3);
}
&.double {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(6);
}
}
}
}
}

View File

@ -0,0 +1,48 @@
header {
@include xy-grid();
@include xy-gutters(0);
main {
@include breakpoint(small){
@include xy-cell(12);
@include flex-align(center, middle);
padding: $global-padding*2 $global-padding;
min-width: 14rem;
text-align: center;
}
@include breakpoint(medium){
@include xy-cell(shrink);
@include flex-align(left, middle);
text-align: unset;
}
}
nav {
@include breakpoint(small){
@include xy-cell(12);
@include flex;
@include flex-align(center, middle);
a, button {
color: $black;
&:hover {
color: $anchor-color;
}
}
menu {
margin: 0;
padding: 0;
font-size: 0.8rem;
}
}
@include breakpoint(medium){
@include xy-cell(auto);
@include flex;
@include flex-align(right, middle);
menu {
margin: inherit;
padding: inherit;
font-size: $global-font-size*1.5;
}
}
}
}

View File

@ -0,0 +1,29 @@
// navigation scss
//.menu {
// background-color: rgba(100,250,100,1);
// li {
// background-color: rgba(250,250,100,1);
// padding: 0.7rem 1rem;
// a {
// background-color: rgba(250,100,250,1);
// }
// }
//}
.dropdown.menu {
li,.button {
min-width: unset;
margin:0;
padding:0;
}
.button {
background-color:$input-background;
}
}
.is-dropdown-submenu {
font-size: $dropdown-font-size * 0.95;
min-width: 10rem;
box-shadow: 0 3px 5px 3px rgba(200, 200, 200, 0.1);
}

View File

@ -0,0 +1,201 @@
// Page header
.front-hero {
.marketing {
@include xy-grid-container(55rem);
@include xy-grid;
}
@include breakpoint(small) {
background: url('../images/demo/hero-bg-foundation-6-small.svg') bottom center;
background-size: cover;
background-position: bottom;
padding: rem-calc(65%) 0;
margin: 0 0 rem-calc(32);
height: auto;
position: relative;
text-align: left;
}
@include breakpoint(medium) {
background: url('../images/demo/hero-bg-foundation-6-large.svg') bottom center;
background-size: cover;
background-position: center;
height: rem-calc(685);
margin: 0 0 rem-calc(72);
}
.watch {
@include breakpoint(small) {
@include xy-cell(7);
}
@include breakpoint(medium) {
@include xy-cell(12);
}
a {
color: #B4C9D1;
cursor: pointer;
font-weight: 400;
margin-right: rem-calc(20);
}
a:hover {
color: #fff;
}
#stargazers {
:before {
content: "\f09b";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #B4C9D1;
margin-right: rem-calc(8);
}
}
#twitter {
:before {
content: "\f099";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #B4C9D1;
margin-right: rem-calc(8);
}
}
}
.tagline {
@include breakpoint(small) {
@include xy-cell(8);
}
@include breakpoint(medium) {
@include xy-cell(5);
padding-top: 6rem;
}
}
h1 {
color: #fff;
font-weight: 500;
@include breakpoint(small) {
font-size: 2.2rem;
}
@include breakpoint(medium) {
font-size: 2.875rem;
}
}
h4 {
color: #fefefe;
font-weight: 300;
font-size: 1.3125rem;
}
.download {
margin-top: rem-calc(20);
}
}
// Intro
.intro {
@include xy-grid-container;
@include xy-grid;
.fp-intro {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(10);
@include xy-cell-offset(1);
h2 {
font-weight: 300;
margin-bottom: 1.5rem;
}
h4 {
font-size: 1.125rem;
line-height: 1.6;
color: #777;
margin-bottom: 2rem;
}
}
}
}
// Section divider
.section-divider {
@include xy-grid-container;
@include xy-grid;
hr {
@include xy-cell(12);
@extend .dotted;
box-sizing: border-box;
}
}
// Benefits
.benefits {
@include xy-grid-container;
@include xy-grid;
text-align: center;
header {
@include xy-cell(12);
h2 {
font-weight: 300;
}
h4 {
font-size: 1.125rem;
line-height: 1.6;
color: #777;
}
}
.semantic,
.responsive,
.customizable,
.professional {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(3);
}
img {
padding: 1.25rem;
margin: 1rem auto 0 auto;
}
h3 {
color: #0a0a0a;
font-weight: 300;
font-size: 1.75rem;
}
p {
font-size: 0.9375rem;
}
}
.why-foundation {
@include xy-cell(12);
margin-top: 4rem;
}
}

View File

@ -0,0 +1,84 @@
.kitchen-sink-header {
@include xy-cell(12);
}
.kitchen-sink-components {
hr {
margin: 3rem 0;
}
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(large) {
@include xy-cell(9);
}
}
.kitchen-sink-nav {
@include breakpoint(small) {
display: none;
}
@include breakpoint(large) {
@include xy-cell(3);
display: block;
float: right;
.docs-sub-menu {
font-size: 0.85rem;
margin-top: 1rem;
}
.docs-menu-title {
text-transform: uppercase;
font-size: 0.75rem;
color: $dark-gray;
font-weight: bold;
line-height: 1;
padding-left: 0.9rem;
margin-bottom: 0.5rem;
border-top: 1px solid $medium-gray;
margin-top: 1rem;
padding-top: 1.5rem;
}
.docs-toc {
width: 100%;
padding-left: 4rem;
padding-right: 1rem;
}
.docs-toc .active {
background: #2199e8;
color: white;
}
.docs-toc .docs-sub-menu:first-child .docs-menu-title {
margin-top: 0;
border-top: 0;
padding-top: 0;
}
}
}
.kitchen-sink-grid {
.grid-x {
background: #d6ecfa;
font-size: 12px;
line-height: 2rem;
margin-bottom: 1.5rem;
.cell,:nth-child(odd) {
background: #7bc1ef;
color: #0a0a0a;
}
.cell:nth-child(even) {
background: #1779ba;
color: #fefefe;
}
}
}

6
babelrc.bkp Normal file
View File

@ -0,0 +1,6 @@
// delete this lines
// rename file as .babelrc
{
"presets": ["@babel/preset-env"],
"compact": false
}

21
composer.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "olefredrik/foundationpress",
"description": "FoundationPress is a WordPress starter theme based on Foundation 6 by Zurb",
"type": "wordpress-theme",
"minimum-stability" : "dev",
"license": "MIT",
"authors": [
{
"name": "Ole Fredrik Lie",
"email": "mail@olefredrik.com"
}
],
"require": {
"composer/installers": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"wimg/php-compatibility": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4"
}
}

317
composer.lock generated Normal file
View File

@ -0,0 +1,317 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "ebb80c6b0e6f29e301b37472dcc8d524",
"packages": [
{
"name": "composer/installers",
"version": "v1.6.0",
"source": {
"type": "git",
"url": "https://github.com/composer/installers.git",
"reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
"reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0"
},
"replace": {
"roundcube/plugin-installer": "*",
"shama/baton": "*"
},
"require-dev": {
"composer/composer": "1.0.*@dev",
"phpunit/phpunit": "^4.8.36"
},
"type": "composer-plugin",
"extra": {
"class": "Composer\\Installers\\Plugin",
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"Composer\\Installers\\": "src/Composer/Installers"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Kyle Robinson Young",
"email": "kyle@dontkry.com",
"homepage": "https://github.com/shama"
}
],
"description": "A multi-framework Composer library installer",
"homepage": "https://composer.github.io/installers/",
"keywords": [
"Craft",
"Dolibarr",
"Eliasis",
"Hurad",
"ImageCMS",
"Kanboard",
"Lan Management System",
"MODX Evo",
"Mautic",
"Maya",
"OXID",
"Plentymarkets",
"Porto",
"RadPHP",
"SMF",
"Thelia",
"WolfCMS",
"agl",
"aimeos",
"annotatecms",
"attogram",
"bitrix",
"cakephp",
"chef",
"cockpit",
"codeigniter",
"concrete5",
"croogo",
"dokuwiki",
"drupal",
"eZ Platform",
"elgg",
"expressionengine",
"fuelphp",
"grav",
"installer",
"itop",
"joomla",
"kohana",
"laravel",
"lavalite",
"lithium",
"magento",
"majima",
"mako",
"mediawiki",
"modulework",
"modx",
"moodle",
"osclass",
"phpbb",
"piwik",
"ppi",
"puppet",
"pxcms",
"reindex",
"roundcube",
"shopware",
"silverstripe",
"sydes",
"symfony",
"typo3",
"wordpress",
"yawik",
"zend",
"zikula"
],
"time": "2018-08-27T06:10:37+00:00"
}
],
"packages-dev": [
{
"name": "dealerdirect/phpcodesniffer-composer-installer",
"version": "v0.4.4",
"source": {
"type": "git",
"url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
"reference": "2e41850d5f7797cbb1af7b030d245b3b24e63a08"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/2e41850d5f7797cbb1af7b030d245b3b24e63a08",
"reference": "2e41850d5f7797cbb1af7b030d245b3b24e63a08",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0",
"php": "^5.3|^7",
"squizlabs/php_codesniffer": "*"
},
"require-dev": {
"composer/composer": "*",
"wimg/php-compatibility": "^8.0"
},
"suggest": {
"dealerdirect/qa-tools": "All the PHP QA tools you'll need"
},
"type": "composer-plugin",
"extra": {
"class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
},
"autoload": {
"psr-4": {
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Franck Nijhof",
"email": "f.nijhof@dealerdirect.nl",
"homepage": "http://workingatdealerdirect.eu",
"role": "Developer"
}
],
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
"homepage": "http://workingatdealerdirect.eu",
"keywords": [
"PHPCodeSniffer",
"PHP_CodeSniffer",
"code quality",
"codesniffer",
"composer",
"installer",
"phpcs",
"plugin",
"qa",
"quality",
"standard",
"standards",
"style guide",
"stylecheck",
"tests"
],
"time": "2017-12-06T16:27:17+00:00"
},
{
"name": "squizlabs/php_codesniffer",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"reference": "d86ad3c3d8a6cb40f45a377695d8f35b592ca821"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d86ad3c3d8a6cb40f45a377695d8f35b592ca821",
"reference": "d86ad3c3d8a6cb40f45a377695d8f35b592ca821",
"shasum": ""
},
"require": {
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"bin": [
"bin/phpcs",
"bin/phpcbf"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Greg Sherwood",
"role": "lead"
}
],
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
"homepage": "http://www.squizlabs.com/php-codesniffer",
"keywords": [
"phpcs",
"standards"
],
"time": "2019-01-14T05:30:36+00:00"
},
{
"name": "wimg/php-compatibility",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
"reference": "cac8ef629aa14a8d5148b1b56d09b657904604bb"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/cac8ef629aa14a8d5148b1b56d09b657904604bb",
"reference": "cac8ef629aa14a8d5148b1b56d09b657904604bb",
"shasum": ""
},
"require": {
"php": ">=5.3",
"squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
},
"conflict": {
"squizlabs/php_codesniffer": "2.6.2"
},
"require-dev": {
"phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
},
"suggest": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
},
"type": "phpcodesniffer-standard",
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL-3.0-or-later"
],
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
},
{
"name": "Wim Godden",
"homepage": "https://github.com/wimg",
"role": "lead"
},
{
"name": "Juliette Reinders Folmer",
"homepage": "https://github.com/jrfnl",
"role": "lead"
}
],
"description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
"homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
"keywords": [
"compatibility",
"phpcs",
"standards"
],
"abandoned": "phpcompatibility/php-compatibility",
"time": "2019-01-13T22:26:44+00:00"
}
],
"aliases": [],
"minimum-stability": "dev",
"stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": [],
"platform-dev": []
}

View File

@ -10,7 +10,7 @@ PORT: 8000
UNCSS_OPTIONS: UNCSS_OPTIONS:
html: html:
# Search for used CSS classes in generated HTML files # Search for used CSS classes in generated HTML files
- "dist/**/*.html" #- "dist/**/*.html"
ignore: ignore:
- !!js/regexp .foundation-mq - !!js/regexp .foundation-mq
- !!js/regexp ^\.is-.* - !!js/regexp ^\.is-.*
@ -29,7 +29,8 @@ REVISIONING: false
# Gulp will reference these paths when it copies files # Gulp will reference these paths when it copies files
PATHS: PATHS:
# Path to dist folder # Path to dist folder
dist: "dist" #dist: "dist"
dist: "assets"
# Paths to static assets that aren't images, CSS, or JavaScript # Paths to static assets that aren't images, CSS, or JavaScript
assets: assets:
- "src/assets/**/*" - "src/assets/**/*"

13888
dist/assets/css/app.css vendored Normal file

File diff suppressed because one or more lines are too long

657
dist/assets/css/editor.css vendored Normal file

File diff suppressed because one or more lines are too long

BIN
dist/assets/fonts/WorkSans-Medium.woff vendored Executable file

Binary file not shown.

BIN
dist/assets/fonts/WorkSans-MediumItalic.woff vendored Executable file

Binary file not shown.

View File

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5069;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
.st6{fill:url(#SVGID_4_);}
</style>
<g class="st0">
<polyline class="st1" points="15.4,124.2 133.9,248.4 208.8,34.2 15.4,124.2 "/>
<polyline class="st1" points="220.2,158.5 137.4,17.4 248.8,115.6 219.4,161.2 "/>
<polyline class="st1" points="248.8,115.6 15.4,124.2 52.4,55.6 137.4,17.4 "/>
<g>
<circle class="st2" cx="248.8" cy="115.6" r="4.1"/>
<circle class="st2" cx="15.4" cy="124.2" r="4.6"/>
<circle class="st2" cx="137.4" cy="17.4" r="4.1"/>
<circle class="st2" cx="52.4" cy="55.6" r="3.3"/>
<circle class="st2" cx="133.9" cy="248.4" r="3.8"/>
<circle class="st2" cx="208.8" cy="34.2" r="4.7"/>
<circle class="st2" cx="219.4" cy="161.2" r="5.3"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="126.3543" y1="93.2575" x2="138.7467" y2="93.2575">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="126.4" y="80.3" class="st3" width="12.4" height="26"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="96.7949" y1="187.5047" x2="114.2522" y2="97.1009">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<rect x="97.4" y="97.1" class="st4" width="16.2" height="90.6"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="80.9993" y1="93.2569" x2="126.3543" y2="93.2569">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="81" y="85.4" class="st5" width="45.4" height="15.7"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="145.8713" y1="185.0645" x2="190.5812" y2="87.2338">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<path class="st6" d="M181.1,81.2l-2,0.9v10.7l-8.6,5.7l-7.6-5.7V82.2l-1.4-0.7l-8.1,11.6v12.3l9.5,8.5v73.8h16.3v-74.2l9.8-8.9
V93.2L181.1,81.2z M171.2,182.4c-1.7,0-3-1.4-3-3c0-1.7,1.4-3,3-3c1.7,0,3,1.4,3,3C174.2,181,172.9,182.4,171.2,182.4z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 88 KiB

139
dist/assets/images/demo/professional.svg vendored Normal file
View File

@ -0,0 +1,139 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.16;}
.st1{fill:none;stroke:#26373E;stroke-width:0.6356;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
.st6{fill:url(#SVGID_4_);}
.st7{fill:url(#SVGID_5_);}
.st8{fill:url(#SVGID_6_);}
.st9{fill:#FFFFFF;}
.st10{fill:url(#SVGID_7_);}
.st11{fill:url(#SVGID_8_);}
.st12{fill:url(#SVGID_9_);}
.st13{fill:url(#SVGID_10_);}
.st14{fill:url(#SVGID_11_);}
.st15{fill:url(#SVGID_12_);}
.st16{fill:url(#SVGID_13_);}
.st17{fill:url(#SVGID_14_);}
.st18{fill:url(#SVGID_15_);}
.st19{fill:url(#SVGID_16_);}
</style>
<g class="st0">
<polyline class="st1" points="14.5,191.2 237.4,214.9 156.5,11.6 14.5,187.7 49.4,38.9 263.3,173.2 109.7,255.8 8.7,77.7 "/>
<polyline class="st1" points="49.4,38.9 156.5,11.6 263.3,173.2 "/>
<g>
<circle class="st2" cx="49.4" cy="38.9" r="5.1"/>
<circle class="st2" cx="156.5" cy="11.6" r="5.1"/>
<circle class="st2" cx="263.3" cy="173.2" r="5.7"/>
<circle class="st2" cx="237.4" cy="214.9" r="5.1"/>
<circle class="st2" cx="109.7" cy="255.8" r="4.8"/>
<circle class="st2" cx="8.7" cy="77.7" r="5.9"/>
<circle class="st2" cx="14.5" cy="187.7" r="6.7"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="89.8471" y1="134.6955" x2="163.2465" y2="134.6955">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="89.8" y="81.4" class="st3" width="73.4" height="106.6"/>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="90.6335" y1="179.444" x2="156.1698" y2="81.7949">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.4956" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<rect x="89.8" y="81.4" class="st4" width="66.6" height="99.2"/>
</g>
<g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="172.3255" y1="178.4396" x2="190.0203" y2="114.214">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<polygon class="st5" points="186.2,180.6 175.7,180.6 175.7,113.7 180.9,100.8 186.2,113.7 "/>
</g>
<g>
<path class="st9" d="M111.3,132.4v-17.8h12.6v3.3h-8.8v3.7h8.6v3.3h-8.6v7.4H111.3z"/>
<path class="st9" d="M125.7,123.6c0-5.4,3-9.2,8.3-9.2c2.2,0,4,0.7,5.3,1.8l-1.7,2.9c-1-0.9-2-1.4-3.5-1.4c-2.6,0-4.5,2.2-4.5,5
c0,0.1,0,0.2,0,0.4c0.8-1.2,2.6-2.3,4.6-2.3c3.2,0,6.1,2,6.1,5.8c0,3.5-2.8,6.1-6.8,6.1C128,132.8,125.7,128.6,125.7,123.6z
M136.4,126.8c0-1.9-1.6-2.7-3.3-2.7c-1.3,0-2.6,0.6-3.5,1.7c0.2,1.7,1.1,3.6,3.6,3.6C135.2,129.4,136.4,128,136.4,126.8z"/>
</g>
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="91.6015" x2="95.586" y2="91.6015">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="89.4" class="st6" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="100.4609" x2="95.586" y2="100.4609">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="98.2" class="st7" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="127.0393" x2="95.586" y2="127.0393">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="124.8" class="st8" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="135.8988" x2="95.586" y2="135.8988">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="133.7" class="st10" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="162.4771" x2="95.586" y2="162.4771">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="160.3" class="st11" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="171.3366" x2="95.586" y2="171.3366">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="169.1" class="st12" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="109.3204" x2="95.586" y2="109.3204">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="107.1" class="st13" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="118.1799" x2="95.586" y2="118.1799">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="116" class="st14" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="144.7582" x2="95.586" y2="144.7582">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="142.5" class="st15" width="12" height="4.4"/>
</g>
<g>
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="83.6214" y1="153.6177" x2="95.586" y2="153.6177">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="83.6" y="151.4" class="st16" width="12" height="4.4"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

75
dist/assets/images/demo/responsive.svg vendored Normal file
View File

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5134;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
.st6{fill:url(#SVGID_4_);}
.st7{fill:url(#SVGID_5_);}
.st8{fill:url(#SVGID_6_);}
.st9{fill:url(#SVGID_7_);}
</style>
<g class="st0">
<polyline class="st1" points="91.2,27.9 250.6,116.3 13.7,117.1 208.2,54.1 "/>
<polyline class="st1" points="181.5,227.2 258.7,182.9 7.3,179.2 179.2,228.8 "/>
<polyline class="st1" points="7.3,179.2 91.2,27.9 208.2,54.1 258.7,182.9 "/>
<g>
<circle class="st2" cx="7.3" cy="179.2" r="4.1"/>
<circle class="st2" cx="91.2" cy="27.9" r="4.6"/>
<circle class="st2" cx="258.7" cy="182.9" r="4.1"/>
<circle class="st2" cx="208.2" cy="54.1" r="3.3"/>
<circle class="st2" cx="250.6" cy="116.3" r="3.9"/>
<circle class="st2" cx="13.7" cy="117.1" r="4.7"/>
<circle class="st2" cx="179.2" cy="228.8" r="5.4"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="127.1718" y1="187.3774" x2="152.0181" y2="156.8904">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<polygon class="st3" points="145.4,169.2 145.4,154.5 133.9,154.5 133.9,169.2 112.5,169.2 112.5,174.9 166.9,174.9 166.9,169.2
"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="85.0996" y1="118.4856" x2="194.2902" y2="118.4856">
<stop offset="0" style="stop-color:#D0D1D3"/>
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
<stop offset="0.994" style="stop-color:#F2F2F2"/>
</linearGradient>
<rect x="85.1" y="80.7" class="st4" width="109.2" height="75.6"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="91.1375" y1="149.8817" x2="188.7937" y2="86.7396">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="89.9" y="86.4" class="st5" width="99.6" height="64.1"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="58.8981" y1="153.359" x2="119.2881" y2="153.359">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="58.9" y="114.3" class="st6" width="60.4" height="78"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="63.3368" y1="184.134" x2="114.438" y2="121.4314">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="63.9" y="121.7" class="st7" width="50.4" height="61.6"/>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="180.4045" y1="159.832" x2="210.4102" y2="159.832">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<rect x="180.4" y="137.3" class="st8" width="30" height="45.1"/>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="184.9704" y1="174.5269" x2="206.6195" y2="142.2015">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<rect x="184.9" y="143.5" class="st9" width="21" height="30.9"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

47
dist/assets/images/demo/semantic.svg vendored Normal file
View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.2;}
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5162;stroke-miterlimit:10;}
.st2{fill:#4F5764;}
.st3{fill:url(#SVGID_1_);}
.st4{fill:url(#SVGID_2_);}
.st5{fill:url(#SVGID_3_);}
</style>
<g class="st0">
<polyline class="st1" points="171,16.5 8.5,102.5 160.1,236.6 173.5,17.8 264.4,151.9 79.7,241.1 248,86.7 90.2,25.6 19.2,186.2
"/>
<polyline class="st1" points="264.4,151.9 160.1,236.6 79.7,241.1 19.2,186.2 8.5,102.5 "/>
<g>
<circle class="st2" cx="264.4" cy="151.9" r="4.1"/>
<circle class="st2" cx="160.1" cy="236.6" r="4.1"/>
<circle class="st2" cx="79.7" cy="241.1" r="4.6"/>
<circle class="st2" cx="8.5" cy="102.5" r="4.1"/>
<circle class="st2" cx="19.2" cy="186.2" r="3.4"/>
<circle class="st2" cx="248" cy="86.7" r="3.9"/>
<circle class="st2" cx="90.2" cy="25.6" r="4.8"/>
<circle class="st2" cx="173.5" cy="17.8" r="5.4"/>
</g>
</g>
<g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="50.9584" y1="135.1361" x2="104.5381" y2="135.1361">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<path class="st3" d="M51,140.7v-11.1l53.6-23.9V117l-42.6,18.3l42.6,18v11.3L51,140.7z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="112.5123" y1="135" x2="156.683" y2="135">
<stop offset="0" style="stop-color:#3D96D2"/>
<stop offset="1" style="stop-color:#069FB0"/>
</linearGradient>
<path class="st4" d="M112.5,185.8l33.1-101.5h11.1l-33.1,101.5H112.5z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="165.4619" y1="135.1361" x2="219.0416" y2="135.1361">
<stop offset="0" style="stop-color:#4F5764"/>
<stop offset="0.6682" style="stop-color:#293942"/>
<stop offset="1" style="stop-color:#111C21"/>
</linearGradient>
<path class="st5" d="M165.5,164.6v-11.3l42.6-18L165.5,117v-11.3l53.6,23.9v11.1L165.5,164.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
dist/assets/img/ARC-HIVE-logo.jpg vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

45
dist/assets/img/ARC-HIVE-logo.svg vendored Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
xml:space="preserve"
width="865.62665"
height="355.04001"
viewBox="0 0 865.62665 355.04001"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
id="g10"
transform="matrix(1.3333333,0,0,-1.3333333,0,355.04)"><g
id="g12"
transform="scale(0.1)"><path
d="M 75,1331.41 C 79.5977,1005.45 208.422,696.109 437.77,460.301 667.211,224.398 972.246,87.8789 1296.67,75.8906 1570.9,65.8984 1834.82,142.141 2060.1,296.77 l 3.56,2.16 c 14.78,7.89 26.85,14.961 37.88,22.179 l 450.53,340.071 c 190.26,125.41 423.77,189 694.03,189 270.27,0 503.77,-63.59 694.04,-189 l 1.96,-1.371 448.57,-338.7 c 11.12,-7.277 23.38,-14.449 38.49,-22.5 l 3.57,-2.16 c 225.26,-154.41 489.16,-230.6677 763.23,-220.4099 324.33,12.0898 629.26,148.6409 858.61,384.5119 229.24,235.738 358.02,545.009 362.65,870.859 -4.63,325.85 -133.41,635.11 -362.65,870.86 -229.35,235.87 -534.28,372.43 -858.61,384.51 -274.03,10.21 -537.98,-66.01 -763.23,-220.4 l -3.56,-2.17 c -15.1,-8.04 -27.37,-15.21 -38.5,-22.5 l -450.53,-340.07 c -190.26,-125.41 -423.76,-189 -694.04,-189 -270.27,0 -503.77,63.59 -694.03,189 l -1.95,1.38 -448.59,338.69 c -10.99,7.2 -23.06,14.27 -37.87,22.17 l -3.56,2.17 c -225.26,154.62 -489.23,230.99 -763.43,220.87 -324.424,-11.98 -629.459,-148.5 -858.9,-384.4 C 208.422,1966.72 79.5977,1657.37 75,1331.41 Z M 1344.92,0 c -16.97,0 -33.96,0.308594 -51.01,0.949219 C 950.105,13.6406 626.961,158.211 384.004,408.012 141.137,657.719 4.76172,985.43 0,1330.8 l 44.3984,0.61 L 0,1332.02 c 4.76172,345.37 141.137,673.09 384.004,922.79 242.957,249.8 566.101,394.36 909.906,407.06 289.68,10.66 568.66,-69.79 806.92,-232.81 16.5,-8.87 30.2,-16.96 42.97,-25.38 l 1.95,-1.38 448.59,-338.69 c 177.62,-116.77 396.88,-175.97 651.76,-175.97 254.87,0 474.15,59.21 651.77,175.96 l 450.54,340.08 c 12.91,8.52 26.82,16.72 43.64,25.74 238.25,162.78 517.22,243.13 806.7,232.31 343.7,-12.81 666.74,-157.41 909.6,-407.17 242.76,-249.67 379.08,-577.31 383.87,-922.59 l -40.85,-0.56 40.85,-0.56 C 6487.43,985.57 6351.11,657.922 6108.35,408.262 5865.49,158.512 5542.45,13.8984 5198.75,1.10156 4909.03,-9.73828 4630.29,70.6289 4392.05,233.41 c -16.83,9.012 -30.73,17.219 -43.64,25.719 l -1.96,1.383 -448.59,338.707 C 3720.23,715.98 3500.96,775.18 3246.1,775.18 c -254.87,0 -474.13,-59.2 -651.76,-175.969 L 2143.79,259.129 C 2131,250.691 2117.3,242.609 2100.83,233.762 1876.58,80.332 1616.26,0 1344.92,0"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path14" /><path
d="m 823.75,1266.44 -64.387,179.6 -25.41,80.48 h -2.543 l -23.719,-78.79 -66.082,-181.29 z m 27.109,-73.7 H 615.352 l -53.375,-146.57 h -93.188 l 210.945,559.13 h 108.438 l 210.945,-559.13 h -95.73 l -52.528,146.57"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path16" /><path
d="m 1233.8,1345.23 h 130.47 c 73.7,0 109.28,29.64 109.28,91.49 0,61.85 -35.58,91.49 -109.28,91.49 H 1233.8 Z m 120.3,-75.4 H 1233.8 V 1046.17 H 1144 v 559.13 h 227.89 c 120.3,0 195.7,-62.69 195.7,-167.73 0,-80.49 -44.06,-135.55 -118.61,-157.58 l 151.64,-233.82 h -104.19 l -142.33,223.66"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path18" /><path
d="m 1986.12,1037.71 c -161.81,0 -263.47,110.12 -263.47,288.02 0,177.91 102.51,288.05 262.62,288.05 110.98,0 189.77,-46.6 223.66,-137.25 l -85.57,-38.12 c -22.03,66.08 -63.54,96.58 -133.01,96.58 -104.2,0 -172.82,-76.25 -172.82,-209.26 0,-132.14 63.54,-209.24 169.43,-209.24 71.16,0 122.84,35.58 144.03,106.74 l 86.4,-28.8 c -34.73,-102.5 -121.99,-156.72 -231.27,-156.72"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20" /><path
d="m 4559.9,1605.3 v -559.13 h -91.49 v 243.99 h -276.17 v -243.99 h -90.66 v 559.13 h 90.66 v -237.2 h 276.17 v 237.2 h 91.49"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path22" /><path
d="m 4836.95,1046.17 h -90.64 v 559.13 h 90.64 v -559.13"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" /><path
d="m 5273.25,1046.17 h -105.9 L 4959.8,1605.3 h 96.58 l 130.46,-371.9 33.88,-110.99 33.89,110.14 130.47,372.75 h 95.73 l -207.56,-559.13"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path26" /><path
d="m 6019.63,1124.11 v -77.94 h -416.8 v 559.13 h 404.94 v -77.94 H 5693.48 V 1366.4 h 245.67 v -76.24 h -245.67 v -166.05 h 326.15"
style="fill:#231f20;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" /></g></g></svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@ -0,0 +1,146 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 908.7 167" style="enable-background:new 0 0 908.7 167;" xml:space="preserve">
<g id="Layer_1">
<path d="M660.8,0v167h247.8V0H660.8z M825.4,53.8l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0l-2.1,1.5l-3,2.2l1.1,3.4
l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5L825.4,53.8z M725.4,90.2l0.7-2.3l1.1-3.4l-3-2.2
l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1l-2.1,1.5l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.1-2.1
l-3.2,2.1L725.4,90.2z M744.1,109l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5
l2.6-0.1l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1L744.1,109z M744.2,55.2l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1
l-3.2,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0L744.2,55.2z
M763.6,128.5l-3,2.2l1.1,3.4l0.8,2.3l-2-1.3l-3.1-2.1l-3.2,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4
l0.8-2.2l0.8,2.2l1.2,3.4l3.8,0.1l2.6,0.1L763.6,128.5z M763.9,35.8l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.1-2.1l-3.2,2.1l-2,1.3
l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L763.9,35.8z M790.9,135.8l-3,2.2
l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2
l1.2,3.4l3.8,0.1l2.6,0.1L790.9,135.8z M790.9,28.6l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4
l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L790.9,28.6z M817.9,128.7l-3,2.2l1.1,3.4l0.7,2.3
l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0
L817.9,128.7z M818.1,35.8l-3,2.2l1.1,3.4l0.8,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1
l3.8-0.1l1.2-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0.1L818.1,35.8z M837.5,109.2l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1
l-3.2,2.1l-2,1.3l0.7-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6,0l3.8-0.1l1.3-3.4l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0L837.5,109.2z
M844.8,82.3l-3,2.2l1.1,3.4l0.7,2.3l-2-1.3l-3.2-2.1l-3.1,2.1l-2,1.3l0.8-2.3l1.1-3.4l-3-2.2l-2.1-1.5l2.6-0.1l3.8-0.1l1.2-3.4
l0.8-2.2l0.8,2.2l1.3,3.4l3.8,0.1l2.6,0.1L844.8,82.3z"/>
</g>
<g id="Layer_4">
<g>
<path d="M273.6,28.5c-1.5,7.7-7.3,12-15,12c-10.1,0-15.9-7.4-15.9-18.1c0-10.9,6.3-18,16.3-18c7.4,0,13.1,4.3,14.5,12h-5.3
c-1.1-4.5-4.4-7.4-9.5-7.4c-5.9,0-10.4,4.7-10.4,13.4c0,8.6,4.4,13.5,10.5,13.5c5.1,0,8.5-2.8,9.6-7.4H273.6z"/>
<path d="M302.1,27c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C295.7,13.5,302.1,17.7,302.1,27z
M289.5,36.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C282.3,33.4,285.8,36.2,289.5,36.2z"/>
<path d="M306.9,29.1v-4.6h15.5v4.6H306.9z"/>
<path d="M328.8,12.3c0-5.7,1.7-7.2,7.7-7.2h2.3v4h-1.9c-2.5,0-3.1,0.5-3.1,3.2V14h5v3.8h-5v22h-5v-22h-3.6V14h3.6V12.3z"/>
<path d="M359.1,36.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V14h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2V14h5
v25.8h-5V36.2z"/>
<path d="M375.8,17.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5V24.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3v13.9
h-5V14h5V17.8z"/>
<path d="M416.2,5h5v34.8h-5v-3.6c-1.6,2.6-4.3,4.3-8.1,4.3c-6,0-11.1-5-11.1-13.5c0-8.4,5.1-13.4,11.1-13.4c3.8,0,6.5,1.6,8.1,4.3
V5z M409.3,17.7c-4.1,0-7,3.5-7,9.3s2.8,9.3,7,9.3c3.8,0,7.1-2.9,7.1-9.3C416.4,20.6,413.1,17.7,409.3,17.7z"/>
<path d="M445.6,32.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C442.4,36.2,444.5,34.7,445.6,32.3z M431.4,24.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C434.9,17.6,432,19.6,431.4,24.5z"/>
<path d="M473.5,5h5v34.8h-5v-3.6c-1.6,2.6-4.3,4.3-8.1,4.3c-6,0-11.1-5-11.1-13.5c0-8.4,5.1-13.4,11.1-13.4c3.8,0,6.5,1.6,8.1,4.3
V5z M466.6,17.7c-4.1,0-7,3.5-7,9.3s2.8,9.3,7,9.3c3.8,0,7.1-2.9,7.1-9.3C473.7,20.6,470.4,17.7,466.6,17.7z"/>
<path d="M501.5,5v12.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v3.6h-5V5
H501.5z M508.4,36.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3C501.3,33.4,504.5,36.3,508.4,36.3z"/>
<path d="M523.8,48.2v-4h2c2.7,0,3.8-0.2,5.1-3.9l0.2-0.6L521.8,14h5.5l6.2,19.2l6.1-19.2h5.2l-9.1,26.4c-2.1,6.1-3.6,7.8-9.5,7.8
H523.8z"/>
<path d="M560.4,7.4h5V14h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4h-3.6c-5.2,0-6.4-1.3-6.4-6.6V17.8h-3.9V14h3.9V7.4z"/>
<path d="M580.3,17.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5V24.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3v13.9
h-5V5h5V17.8z"/>
<path d="M621,32.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C617.8,36.2,619.9,34.7,621,32.3z M606.8,24.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C610.3,17.6,607.4,19.6,606.8,24.5z"/>
<path d="M31,84.5c-1.5,7.7-7.3,12-15,12C5.9,96.5,0,89.1,0,78.4c0-10.9,6.3-18,16.3-18c7.4,0,13.1,4.3,14.5,12h-5.3
C24.5,67.8,21.1,65,16,65c-5.9,0-10.4,4.7-10.4,13.4c0,8.6,4.4,13.5,10.5,13.5c5.1,0,8.5-2.8,9.6-7.4H31z"/>
<path d="M49.3,75.1C48.4,75,47.6,75,46.8,75c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7c0.4,0,1,0,1.4,0
V75.1z"/>
<path d="M70.5,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9H56.2
c0.5,4.8,3.5,7.7,7.5,7.7C67.3,92.2,69.4,90.7,70.5,88.3z M56.3,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9C59.8,73.6,56.9,75.6,56.3,80.5z
"/>
<path d="M79,88.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C82.9,96.5,79,93.6,79,88.9z M96.6,83.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V83.5z"/>
<path d="M108.6,63.4h5V70h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4H115c-5.2,0-6.4-1.3-6.4-6.6V73.8h-3.9V70h3.9V63.4z"/>
<path d="M128.5,61v5.5h-5V61H128.5z M128.5,70v25.8h-5V70H128.5z"/>
<path d="M143.9,89.2l6.5-19.2h5.2L146,95.8h-4.6L131.9,70h5.5L143.9,89.2z"/>
<path d="M176.1,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C172.9,92.2,175.1,90.7,176.1,88.3z M161.9,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C165.5,73.6,162.6,75.6,161.9,80.5z"/>
<path d="M198.1,61h24.1v4.7h-18.6v9.9h17.6v4.6h-17.6v10.9h18.6v4.7h-24.1V61z"/>
<path d="M243,92.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V70h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2V70h5
v25.8h-5V92.2z"/>
<path d="M268.2,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M295,83c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C288.6,69.5,295,73.7,295,83z
M282.4,92.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C275.2,89.4,278.7,92.2,282.4,92.2z"/>
<path d="M305,70v3.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v12h-5V70H305
z M311.9,92.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3C304.8,89.4,308.1,92.3,311.9,92.3z"/>
<path d="M347.2,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C344,92.2,346.1,90.7,347.2,88.3z M333,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9C336.5,73.6,333.6,75.6,333,80.5
z"/>
<path d="M380.3,61c8.1,0,14.6,1.6,14.6,10.7c0,8.7-6.2,10.6-14.6,10.6h-5.7v13.5h-5.5V61H380.3z M374.6,65.5v12.2h6
c4.8,0,8.6-0.6,8.6-6c0-5.7-4-6.2-8.7-6.2H374.6z"/>
<path d="M412.1,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M438.9,83c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5C432.5,69.5,438.9,73.7,438.9,83z
M426.3,92.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3C419.1,89.4,422.6,92.2,426.3,92.2z"/>
<path d="M461.5,70h5v22.8c0,4.8-1,7.3-2.8,9.1c-2,2.1-5.1,3.1-9,3.1c-5.8,0-10-2.5-10.8-7.9h5.1c0.5,2.4,2,3.7,5.8,3.7
c2.4,0,4.1-0.7,5.2-1.9c1-1.1,1.5-2.4,1.5-5.1v-2.7c-1.6,2.6-4.2,4.3-8,4.3c-6,0-11-4.8-11-13c0-8.2,5-12.9,11-12.9
c3.8,0,6.4,1.6,8,4.3V70z M454.6,73.7c-4.1,0-6.8,3.3-6.8,8.8c0,5.6,2.7,8.9,6.8,8.9c3.8,0,7-2.7,7-8.9
C461.7,76.3,458.5,73.7,454.6,73.7z"/>
<path d="M486.6,75.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V70h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V75.1z"/>
<path d="M488,88.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C492,96.5,488,93.6,488,88.9z M505.7,83.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V83.5z"/>
<path d="M521.6,95.8h-5V70h5v3.7c1.5-2.5,3.9-4.2,7.6-4.2c4,0,6.3,1.7,7.5,4.6c2.2-3.2,5.2-4.6,8.5-4.6c6,0,8.4,4,8.4,10v16.3h-5
V80.9c0-3.7-0.6-7.2-5.1-7.2c-3.9,0-6,3.1-6,8.3v13.9h-5V80.9c0-3.7-0.6-7.2-5.1-7.2c-4,0-6,3.1-6,8.3V95.8z"/>
<path d="M565,95.8h-5V70h5v3.7c1.5-2.5,3.9-4.2,7.6-4.2c4,0,6.3,1.7,7.5,4.6c2.2-3.2,5.2-4.6,8.5-4.6c6,0,8.4,4,8.4,10v16.3h-5
V80.9c0-3.7-0.6-7.2-5.1-7.2c-3.9,0-6,3.1-6,8.3v13.9h-5V80.9c0-3.7-0.6-7.2-5.1-7.2c-4,0-6,3.1-6,8.3V95.8z"/>
<path d="M621,88.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C617.8,92.2,619.9,90.7,621,88.3z M606.8,80.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C610.3,73.6,607.4,75.6,606.8,80.5z"/>
<path d="M159.7,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C153.2,125.5,159.7,129.7,159.7,139z M147.1,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C139.8,145.4,143.3,148.2,147.1,148.2z"/>
<path d="M166,124.3c0-5.7,1.7-7.2,7.7-7.2h2.3v4h-1.9c-2.5,0-3.1,0.5-3.1,3.2v1.8h5v3.8h-5v22h-5v-22h-3.6V126h3.6V124.3z"/>
<path d="M192.6,119.4h5v6.6h5.1v3.8h-5.1v14.7c0,2.6,0.4,3.3,2.9,3.3h2.1v4H199c-5.2,0-6.4-1.3-6.4-6.6v-15.4h-3.9V126h3.9V119.4z
"/>
<path d="M212.5,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V117h5V129.8z"/>
<path d="M253.2,144.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9h-19.7
c0.5,4.8,3.5,7.7,7.5,7.7C250,148.2,252.1,146.7,253.2,144.3z M239,136.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C242.5,129.6,239.7,131.6,239,136.5z"/>
<path d="M275.2,117h24.1v4.7h-18.6v9.9h17.6v4.6h-17.6v10.9h18.6v4.7h-24.1V117z"/>
<path d="M320.1,148.2c-1.5,2.6-4,4.3-7.9,4.3c-6.1,0-8.4-3.8-8.4-10V126h5v15.1c0,3.7,0.6,7.2,5.1,7.2c4.2,0,6.2-3.1,6.2-8.2v-14
h5v25.8h-5V148.2z"/>
<path d="M345.3,131.1c-0.9-0.1-1.8-0.1-2.6-0.1c-3.8,0-5.9,1.9-5.9,7.3v13.5h-5V126h4.9v4.6c1.3-2.9,3.9-4.6,7.2-4.7
c0.4,0,1,0,1.4,0V131.1z"/>
<path d="M372.1,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C365.7,125.5,372.1,129.7,372.1,139z M359.5,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C352.3,145.4,355.8,148.2,359.5,148.2z"/>
<path d="M382.1,126v3.8c1.6-2.6,4.3-4.3,8.1-4.3c6,0,11.1,5,11.1,13.4c0,8.4-5.1,13.5-11.1,13.5c-3.8,0-6.5-1.6-8.1-4.3v12h-5V126
H382.1z M389,148.3c4.1,0,7-3.5,7-9.3s-2.8-9.3-7-9.3c-3.8,0-7.1,2.9-7.1,9.3S385.1,148.3,389,148.3z"/>
<path d="M424.3,144.3h5c-1.2,4.3-5,8.2-11.6,8.2c-8.4,0-12.9-6.1-12.9-13.6c0-8,5.4-13.3,12.7-13.3c8,0,12.6,6.5,12.1,14.9H410
c0.5,4.8,3.5,7.7,7.5,7.7C421.1,148.2,423.2,146.7,424.3,144.3z M410.1,136.5h14.4c-0.1-3.8-2.8-6.9-7-6.9
C413.6,129.6,410.7,131.6,410.1,136.5z"/>
<path d="M432.8,144.9c0-6.3,7.4-8,17.4-9v-0.5c0-4.6-2.4-6.1-5.6-6.1c-3.5,0-5.4,1.8-5.6,4.9h-5c0.4-5.5,4.9-8.8,10.8-8.8
c6.7,0,10.5,3.2,10.4,10.9c0,0.6-0.1,5.1-0.1,6.2c0,3.8,0.2,7,0.7,9.3h-4.8c-0.2-1-0.3-1.8-0.4-3.4c-1.5,2.6-4.5,4-8.6,4
C436.7,152.5,432.8,149.6,432.8,144.9z M450.4,139.5c-8,0.8-12.2,1.9-12.2,5.2c0,2.4,1.9,3.8,4.9,3.8c4.1,0,7.3-2.1,7.3-7.2V139.5
z"/>
<path d="M466.4,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
<path d="M506,117v20.9c0,6.6,2.1,9.9,8.6,9.9c6.5,0,8.6-3.7,8.6-10.3V117h5.5v20.2c0,10.6-4,15.2-14.1,15.2
c-9.8,0-14.1-3.9-14.1-14.9V117H506z"/>
<path d="M540.2,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
<path d="M568.2,117v5.5h-5V117H568.2z M568.2,126v25.8h-5V126H568.2z"/>
<path d="M598.3,139c0,9.3-6.4,13.4-12.6,13.4c-6.1,0-12.5-4.1-12.5-13.4c0-9.4,6.4-13.5,12.5-13.5
C591.8,125.5,598.3,129.7,598.3,139z M585.7,148.2c3.8,0,7.3-2.9,7.3-9.2c0-6.4-3.5-9.3-7.3-9.3c-3.7,0-7.2,2.7-7.2,9.3
C578.4,145.4,581.9,148.2,585.7,148.2z"/>
<path d="M608.2,129.8c1.5-2.5,4.1-4.2,8.1-4.2c6.2,0,8.6,4,8.6,10v16.3h-5v-14.9c0-3.7-0.6-7.2-5.3-7.2c-4.3,0-6.4,3.1-6.4,8.3
v13.9h-5V126h5V129.8z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,261 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg2"
xml:space="preserve"
width="1219.5468"
height="222.60001"
viewBox="0 0 1219.5468 222.60001"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
id="g10"
transform="matrix(1.3333333,0,0,-1.3333333,0,222.6)"><g
id="g12"
transform="scale(0.1)"><path
d="M 9146.57,0 V 1669.52 H 6668.36 V 0 h 2478.21"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path14" /><path
d="m 8528.84,861.59 -25.86,0.527 -38.24,0.723 -12.52,34.094 -8.11,21.785 -7.97,-21.785 -12.42,-34.094 -38.24,-0.723 -25.84,-0.527 21.09,-15.195 30.14,-21.629 -10.96,-34.133 -7.52,-23.242 20.39,13.457 31.33,20.742 31.7,-20.742 20.14,-13.457 -7.39,23.242 -10.85,34.133 30.03,21.629 21.1,15.195"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path16" /><path
d="m 8528.84,861.59 -25.86,0.527 -38.24,0.723 -12.52,34.094 -8.11,21.785 -7.97,-21.785 -12.42,-34.094 -38.24,-0.723 -25.84,-0.527 21.09,-15.195 30.14,-21.629 -10.96,-34.133 -7.52,-23.242 20.39,13.457 31.33,20.742 31.7,-20.742 20.14,-13.457 -7.39,23.242 -10.85,34.133 30.03,21.629 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path18" /><path
d="m 8339.01,1093.95 -10.84,-34.18 -7.38,-23.18 20.25,13.28 31.47,21.04 31.7,-21.04 20,-13.28 -7.27,23.18 -10.95,34.18 30.04,21.64 21.19,15.2 -25.84,0.47 -38.38,0.6 -12.38,34.18 -8.11,22 -8.01,-22 -12.36,-34.18 -38.26,-0.6 -25.86,-0.47 20.97,-15.2 30.02,-21.64"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20" /><path
d="m 8339.01,1093.95 -10.84,-34.18 -7.38,-23.18 20.25,13.28 31.47,21.04 31.7,-21.04 20,-13.28 -7.27,23.18 -10.95,34.18 30.04,21.64 21.19,15.2 -25.84,0.47 -38.38,0.6 -12.38,34.18 -8.11,22 -8.01,-22 -12.36,-34.18 -38.26,-0.6 -25.86,-0.47 20.97,-15.2 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path22" /><path
d="m 8198.29,1327.64 -12.52,34.13 -8.1,21.93 -7.97,-21.93 -12.41,-34.13 -38.24,-0.66 -25.99,-0.59 21.21,-15.13 30.15,-21.69 -10.95,-34.14 -7.52,-23.19 20.37,13.24 31.35,20.91 31.58,-20.91 20.27,-13.24 -7.52,23.19 -10.74,34.14 30.04,21.69 21.07,15.13 -25.72,0.59 -38.36,0.66"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24" /><path
d="m 8198.29,1327.64 -12.52,34.13 -8.1,21.93 -7.97,-21.93 -12.41,-34.13 -38.24,-0.66 -25.99,-0.59 21.21,-15.13 30.15,-21.69 -10.95,-34.14 -7.52,-23.19 20.37,13.24 31.35,20.91 31.58,-20.91 20.27,-13.24 -7.52,23.19 -10.74,34.14 30.04,21.69 21.07,15.13 -25.72,0.59 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path26" /><path
d="m 7925.89,1399.85 -12.52,34.03 -8.13,21.92 -7.85,-21.92 -12.52,-34.03 -38.24,-0.84 -25.98,-0.41 21.22,-15.19 30.03,-21.75 -10.86,-34.2 -7.5,-23.12 20.26,13.23 31.44,20.97 31.7,-20.97 20.14,-13.23 -7.36,23.12 -10.86,34.2 30.04,21.75 20.95,15.19 -25.72,0.41 -38.24,0.84"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28" /><path
d="m 7925.89,1399.85 -12.52,34.03 -8.13,21.92 -7.85,-21.92 -12.52,-34.03 -38.24,-0.84 -25.98,-0.41 21.22,-15.19 30.03,-21.75 -10.86,-34.2 -7.5,-23.12 20.26,13.23 31.44,20.97 31.7,-20.97 20.14,-13.23 -7.36,23.12 -10.86,34.2 30.04,21.75 20.95,15.19 -25.72,0.41 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path30" /><path
d="m 7655.85,1327.64 -12.52,34.13 -7.85,21.93 -7.99,-21.93 -12.5,-34.13 -38.26,-0.66 -25.98,-0.41 21.1,-15.25 30.15,-21.63 -10.86,-34.14 -7.48,-23.31 20.24,13.47 31.58,20.8 31.35,-20.8 20.25,-13.47 -7.38,23.31 -10.86,34.14 30.04,21.63 21.21,15.25 -25.98,0.41 -38.26,0.66"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32" /><path
d="m 7655.85,1327.64 -12.52,34.13 -7.85,21.93 -7.99,-21.93 -12.5,-34.13 -38.26,-0.66 -25.98,-0.41 21.1,-15.25 30.15,-21.63 -10.86,-34.14 -7.48,-23.31 20.24,13.47 31.58,20.8 31.35,-20.8 20.25,-13.47 -7.38,23.31 -10.86,34.14 30.04,21.63 21.21,15.25 -25.98,0.41 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path34" /><path
d="m 7459.25,1133.93 -12.31,34.04 -7.97,21.85 -8.08,-21.85 -12.4,-34.04 -38.27,-0.7 -25.85,-0.49 21.09,-15.25 30.04,-21.68 -10.96,-34.08 -7.28,-23.25 20.02,13.34 31.58,20.86 31.58,-20.86 20.14,-13.34 -7.41,23.25 -10.84,34.08 30.16,21.68 20.98,15.25 -25.88,0.49 -38.34,0.7"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path36" /><path
d="m 7459.25,1133.93 -12.31,34.04 -7.97,21.85 -8.08,-21.85 -12.4,-34.04 -38.27,-0.7 -25.85,-0.49 21.09,-15.25 30.04,-21.68 -10.96,-34.08 -7.28,-23.25 20.02,13.34 31.58,20.86 31.58,-20.86 20.14,-13.34 -7.41,23.25 -10.84,34.08 30.16,21.68 20.98,15.25 -25.88,0.49 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path38" /><path
d="m 7396.9,781.336 20.26,-13.457 -7.37,23.351 -10.85,34.083 30.02,21.675 21.09,15.129 -25.84,0.547 -38.26,0.652 -12.5,34.036 -7.99,21.855 -8.01,-21.855 -12.5,-34.036 -38.24,-0.652 -25.86,-0.547 20.96,-15.129 30.15,-21.675 -10.84,-34.083 -7.38,-23.351 20.12,13.457 31.6,20.852 31.44,-20.852"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path40" /><path
d="m 7396.9,781.336 20.26,-13.457 -7.37,23.351 -10.85,34.083 30.02,21.675 21.09,15.129 -25.84,0.547 -38.26,0.652 -12.5,34.036 -7.99,21.855 -8.01,-21.855 -12.5,-34.036 -38.24,-0.652 -25.86,-0.547 20.96,-15.129 30.15,-21.675 -10.84,-34.083 -7.38,-23.351 20.12,13.457 31.6,20.852 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path42" /><path
d="m 7458.39,596.27 -12.5,33.96 -7.87,21.879 -8.11,-21.879 -12.5,-33.96 -38.24,-0.829 -25.86,-0.582 21.07,-15.019 30.04,-21.809 -10.86,-34.09 -7.5,-23.043 20.26,13.161 31.46,20.839 31.59,-20.839 20.13,-13.278 -7.38,23.16 -10.72,34.09 30.02,21.809 20.97,15.019 -25.86,0.582 -38.14,0.829"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path44" /><path
d="m 7458.39,596.27 -12.5,33.96 -7.87,21.879 -8.11,-21.879 -12.5,-33.96 -38.24,-0.829 -25.86,-0.582 21.07,-15.019 30.04,-21.809 -10.86,-34.09 -7.5,-23.043 20.26,13.161 31.46,20.839 31.59,-20.839 20.13,-13.278 -7.38,23.16 -10.72,34.09 30.02,21.809 20.97,15.019 -25.86,0.582 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path46" /><path
d="m 7653.47,400.73 -12.39,34.2 -7.98,21.859 -8.11,-21.859 -12.38,-34.2 -38.38,-0.601 -25.86,-0.59 21.21,-15.141 29.9,-21.687 -10.72,-34.063 -7.5,-23.25 20.12,13.231 31.72,20.922 31.32,-20.922 20.39,-13.231 -7.52,23.25 -10.82,34.063 30.02,21.687 21.22,15.141 -25.98,0.59 -38.26,0.601"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path48" /><path
d="m 7653.47,400.73 -12.39,34.2 -7.98,21.859 -8.11,-21.859 -12.38,-34.2 -38.38,-0.601 -25.86,-0.59 21.21,-15.141 29.9,-21.687 -10.72,-34.063 -7.5,-23.25 20.12,13.231 31.72,20.922 31.32,-20.922 20.39,-13.231 -7.52,23.25 -10.82,34.063 30.02,21.687 21.22,15.141 -25.98,0.59 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path50" /><path
d="m 7925.63,328.582 -12.38,33.898 -8.12,21.989 -7.85,-21.989 -12.52,-33.898 -38.25,-0.781 -25.99,-0.602 21.09,-15.25 30.18,-21.551 -10.98,-34.089 -7.27,-23.297 20.14,13.386 31.45,20.922 31.6,-20.922 20.14,-13.386 -7.27,23.297 -10.98,34.089 30.04,21.551 21.08,15.25 -25.73,0.602 -38.38,0.781"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path52" /><path
d="m 7925.63,328.582 -12.38,33.898 -8.12,21.989 -7.85,-21.989 -12.52,-33.898 -38.25,-0.781 -25.99,-0.602 21.09,-15.25 30.18,-21.551 -10.98,-34.089 -7.27,-23.297 20.14,13.386 31.45,20.922 31.6,-20.922 20.14,-13.386 -7.27,23.297 -10.98,34.089 30.04,21.551 21.08,15.25 -25.73,0.602 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path54" /><path
d="m 8195.79,399.422 -12.52,34.078 -7.99,21.871 -7.99,-21.871 -12.4,-34.078 -38.24,-0.844 -25.98,-0.476 21.23,-15.122 30.02,-21.679 -10.86,-34.102 -7.38,-23.23 20.14,13.242 31.46,20.898 31.59,-20.898 20.01,-13.242 -7.14,23.23 -10.86,34.102 29.9,21.679 21.11,15.122 -25.86,0.476 -38.24,0.844"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path56" /><path
d="m 8195.79,399.422 -12.52,34.078 -7.99,21.871 -7.99,-21.871 -12.4,-34.078 -38.24,-0.844 -25.98,-0.476 21.23,-15.122 30.02,-21.679 -10.86,-34.102 -7.38,-23.23 20.14,13.242 31.46,20.898 31.59,-20.898 20.01,-13.242 -7.14,23.23 -10.86,34.102 29.9,21.679 21.11,15.122 -25.86,0.476 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path58" /><path
d="m 8392.04,593.879 -12.52,34.109 -7.97,21.782 -7.99,-21.782 -12.52,-34.109 -38.26,-0.699 -25.84,-0.489 21.19,-15.25 29.95,-21.621 -10.84,-34.199 -7.29,-23.172 20.04,13.34 31.56,20.852 31.57,-20.852 20.03,-13.34 -7.4,23.172 -10.72,34.199 30.04,21.621 21.09,15.25 -25.88,0.489 -38.24,0.699"
style="fill:#f3f020;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path60" /><path
d="m 8392.04,593.879 -12.52,34.109 -7.97,21.782 -7.99,-21.782 -12.52,-34.109 -38.26,-0.699 -25.84,-0.489 21.19,-15.25 29.95,-21.621 -10.84,-34.199 -7.29,-23.172 20.04,13.34 31.56,20.852 31.57,-20.852 20.03,-13.34 -7.4,23.172 -10.72,34.199 30.04,21.621 21.09,15.25 -25.88,0.489 z"
style="fill:none;stroke:#f3f020;stroke-width:11.064;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path62" /><path
d="m 2796.88,1386.67 47.36,-11.97 c -9.93,-38.9 -27.79,-68.56 -53.6,-88.99 -25.79,-20.43 -57.33,-30.64 -94.6,-30.64 -38.57,0 -69.95,7.85 -94.11,23.56 -24.18,15.71 -42.56,38.45 -55.17,68.23 -12.62,29.79 -18.93,61.78 -18.93,95.96 0,37.27 7.12,69.78 21.37,97.53 14.24,27.74 34.5,48.83 60.78,63.23 26.29,14.41 55.22,21.6 86.8,21.6 35.8,0 65.92,-9.11 90.33,-27.34 24.41,-18.22 41.42,-43.87 51.02,-76.89 l -46.63,-11 c -8.3,26.04 -20.35,45 -36.13,56.89 -15.79,11.88 -35.64,17.82 -59.57,17.82 -27.51,0 -50.5,-6.59 -68.96,-19.77 -18.48,-13.18 -31.47,-30.89 -38.95,-53.1 -7.49,-22.22 -11.23,-45.13 -11.23,-68.74 0,-30.42 4.43,-57 13.3,-79.7 8.88,-22.71 22.67,-39.67 41.39,-50.9 18.71,-11.23 38.97,-16.86 60.79,-16.86 26.52,0 48.98,7.66 67.38,22.95 18.39,15.31 30.84,38.01 37.36,68.13"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path64" /><path
d="m 2925.78,1390.81 c 0,-33.2 7.24,-58.07 21.73,-74.58 14.48,-16.52 32.71,-24.78 54.69,-24.78 21.8,0 39.95,8.3 54.44,24.91 14.48,16.6 21.73,41.9 21.73,75.91 0,32.07 -7.29,56.36 -21.86,72.88 -14.56,16.52 -32.67,24.78 -54.31,24.78 -21.98,0 -40.21,-8.22 -54.69,-24.65 -14.49,-16.44 -21.73,-41.27 -21.73,-74.47 z m -45.16,0 c 0,48.01 13.34,83.57 40.03,106.7 22.3,19.2 49.48,28.81 81.55,28.81 35.64,0 64.77,-11.68 87.4,-35.04 22.62,-23.36 33.94,-55.63 33.94,-96.8 0,-33.38 -5.01,-59.62 -15.01,-78.74 -10.02,-19.13 -24.58,-33.97 -43.72,-44.56 -19.12,-10.57 -40,-15.86 -62.61,-15.86 -36.3,0 -65.64,11.63 -88.01,34.9 -22.38,23.28 -33.57,56.81 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path66" /><path
d="m 3157.96,1368.6 v 44.18 h 135.01 v -44.18 h -135.01"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path68" /><path
d="m 3352.05,1261.18 v 225.1 h -38.82 v 34.18 h 38.82 v 27.58 c 0,17.42 1.54,30.35 4.64,38.82 4.23,11.39 11.68,20.63 22.33,27.71 10.67,7.08 25.6,10.61 44.81,10.61 12.36,0 26.03,-1.46 41.01,-4.39 l -6.59,-38.32 c -9.12,1.62 -17.74,2.44 -25.88,2.44 -13.35,0 -22.79,-2.85 -28.32,-8.55 -5.53,-5.7 -8.3,-16.35 -8.3,-31.98 v -23.92 h 50.54 v -34.18 h -50.54 v -225.1 h -43.7"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path70" /><path
d="m 3650.39,1261.18 v 38.09 c -20.18,-29.3 -47.61,-43.95 -82.27,-43.95 -15.31,0 -29.58,2.93 -42.86,8.79 -13.26,5.86 -23.1,13.22 -29.53,22.09 -6.43,8.87 -10.95,19.73 -13.55,32.6 -1.8,8.61 -2.69,22.28 -2.69,41.01 v 160.65 h 43.95 v -143.81 c 0,-22.95 0.89,-38.41 2.68,-46.39 2.77,-11.55 8.63,-20.62 17.58,-27.21 8.95,-6.6 20.02,-9.9 33.2,-9.9 13.19,0 25.55,3.38 37.11,10.14 11.56,6.76 19.74,15.94 24.53,27.59 4.81,11.63 7.21,28.52 7.21,50.65 v 138.93 h 43.95 v -259.28 h -39.31"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path72" /><path
d="m 3758.54,1261.18 v 259.28 h 39.56 v -36.88 c 19.04,28.49 46.54,42.74 82.52,42.74 15.62,0 29.99,-2.82 43.09,-8.43 13.1,-5.62 22.9,-12.98 29.42,-22.1 6.5,-9.11 11.06,-19.94 13.67,-32.46 1.62,-8.15 2.44,-22.38 2.44,-42.74 v -159.41 h -43.95 v 157.71 c 0,17.9 -1.71,31.29 -5.12,40.16 -3.42,8.87 -9.49,15.95 -18.2,21.24 -8.7,5.28 -18.91,7.94 -30.63,7.94 -18.72,0 -34.88,-5.95 -48.47,-17.83 -13.58,-11.88 -20.38,-34.42 -20.38,-67.62 v -141.6 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path74" /><path
d="m 4065.92,1390.57 c 0,-33.2 6.99,-58.02 20.99,-74.47 14,-16.43 30.52,-24.65 49.56,-24.65 19.2,0 35.53,7.85 48.95,23.56 13.44,15.7 20.15,39.67 20.15,71.89 0,35.49 -6.84,61.53 -20.51,78.13 -13.67,16.6 -30.52,24.9 -50.54,24.9 -19.53,0 -35.85,-7.97 -48.94,-23.93 -13.11,-15.94 -19.66,-41.09 -19.66,-75.43 z m 138.91,-129.39 v 32.71 c -16.44,-25.72 -40.61,-38.57 -72.51,-38.57 -20.67,0 -39.67,5.7 -57,17.09 -17.34,11.39 -30.76,27.3 -40.29,47.73 -9.51,20.41 -14.28,43.89 -14.28,70.43 0,25.88 4.31,49.36 12.94,70.43 8.62,21.08 21.56,37.23 38.82,48.46 17.25,11.23 36.53,16.86 57.86,16.86 15.63,0 29.54,-3.3 41.75,-9.89 12.21,-6.6 22.13,-15.19 29.78,-25.76 v 128.42 h 43.71 v -357.91 h -40.78"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path76" /><path
d="m 4347.9,1415.71 h 144.78 c -1.96,21.82 -7.49,38.17 -16.61,49.08 -14,16.92 -32.14,25.39 -54.44,25.39 -20.18,0 -37.15,-6.75 -50.91,-20.27 -13.75,-13.51 -21.35,-31.57 -22.82,-54.2 z m 144.29,-71.03 45.41,-5.63 c -7.17,-26.52 -20.43,-47.11 -39.8,-61.76 -19.37,-14.65 -44.11,-21.97 -74.22,-21.97 -37.93,0 -67.99,11.67 -90.2,35.03 -22.23,23.35 -33.33,56.1 -33.33,98.27 0,43.61 11.23,77.46 33.69,101.56 22.46,24.09 51.59,36.14 87.4,36.14 34.67,0 62.99,-11.81 84.96,-35.41 21.98,-23.6 32.96,-56.8 32.96,-99.61 0,-2.6 -0.09,-6.51 -0.24,-11.72 h -193.36 c 1.62,-28.48 9.68,-50.29 24.17,-65.43 14.48,-15.14 32.55,-22.7 54.2,-22.7 16.11,0 29.86,4.22 41.26,12.7 11.38,8.46 20.42,21.97 27.1,40.53"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path78" /><path
d="m 4622.07,1390.57 c 0,-33.2 6.99,-58.02 21,-74.47 13.99,-16.43 30.51,-24.65 49.56,-24.65 19.2,0 35.52,7.85 48.94,23.56 13.44,15.7 20.15,39.67 20.15,71.89 0,35.49 -6.84,61.53 -20.51,78.13 -13.67,16.6 -30.52,24.9 -50.54,24.9 -19.53,0 -35.85,-7.97 -48.94,-23.93 -13.11,-15.94 -19.66,-41.09 -19.66,-75.43 z m 138.92,-129.39 v 32.71 c -16.45,-25.72 -40.62,-38.57 -72.51,-38.57 -20.68,0 -39.68,5.7 -57.01,17.09 -17.34,11.39 -30.76,27.3 -40.29,47.73 -9.51,20.41 -14.28,43.89 -14.28,70.43 0,25.88 4.31,49.36 12.94,70.43 8.63,21.08 21.57,37.23 38.82,48.46 17.25,11.23 36.54,16.86 57.86,16.86 15.63,0 29.54,-3.3 41.75,-9.89 12.21,-6.6 22.13,-15.19 29.79,-25.76 v 128.42 h 43.7 v -357.91 h -40.77"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path80" /><path
d="m 5049.8,1392.76 c 0,-31.08 4.23,-53.54 12.7,-67.38 13.83,-22.62 32.55,-33.93 56.15,-33.93 19.2,0 35.8,8.34 49.81,25.02 13.99,16.68 20.99,41.55 20.99,74.59 0,33.85 -6.71,58.83 -20.14,74.94 -13.42,16.12 -29.66,24.18 -48.7,24.18 -19.21,0 -35.82,-8.34 -49.81,-25.03 -14,-16.69 -21,-40.81 -21,-72.39 z m 0.49,-131.58 h -40.77 v 357.91 h 43.95 v -127.7 c 18.55,23.29 42.23,34.93 71.04,34.93 15.95,0 31.05,-3.23 45.28,-9.65 14.25,-6.43 25.97,-15.47 35.16,-27.1 9.2,-11.64 16.4,-25.68 21.61,-42.12 5.21,-16.43 7.82,-34.01 7.82,-52.74 0,-44.43 -10.99,-78.76 -32.96,-103.02 -21.98,-24.25 -48.34,-36.37 -79.11,-36.37 -30.6,0 -54.6,12.77 -72.02,38.32 v -32.46"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path82" /><path
d="m 5285.89,1161.32 -4.88,41.27 c 9.6,-2.61 17.97,-3.91 25.14,-3.91 9.77,0 17.58,1.62 23.44,4.88 5.86,3.26 10.65,7.82 14.4,13.67 2.77,4.4 7.24,15.3 13.43,32.72 0.81,2.44 2.11,6.01 3.91,10.74 l -98.39,259.77 h 47.36 l 53.96,-150.16 c 6.99,-19.04 13.26,-39.06 18.8,-60.06 5.04,20.19 11.06,39.89 18.06,59.08 l 55.42,151.14 h 43.95 l -98.63,-263.67 c -10.59,-28.49 -18.8,-48.11 -24.66,-58.85 -7.82,-14.48 -16.77,-25.1 -26.86,-31.86 -10.1,-6.76 -22.14,-10.13 -36.13,-10.13 -8.47,0 -17.91,1.79 -28.32,5.37"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path84" /><path
d="m 5772.71,1300.48 6.34,-38.81 c -12.37,-2.61 -23.43,-3.91 -33.2,-3.91 -15.96,0 -28.32,2.52 -37.11,7.56 -8.79,5.05 -14.98,11.68 -18.55,19.9 -3.59,8.23 -5.38,25.51 -5.38,51.88 v 149.18 h -32.22 v 34.18 h 32.22 v 64.2 l 43.71,26.36 v -90.56 h 44.19 v -34.18 h -44.19 v -151.62 c 0,-12.53 0.77,-20.59 2.31,-24.16 1.55,-3.6 4.07,-6.44 7.58,-8.56 3.49,-2.11 8.49,-3.16 15.01,-3.16 4.88,0 11.31,0.56 19.29,1.7"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path86" /><path
d="m 5815.67,1261.18 v 357.91 h 43.95 v -128.42 c 20.51,23.75 46.39,35.65 77.64,35.65 19.2,0 35.88,-3.79 50.04,-11.36 14.16,-7.57 24.3,-18.03 30.4,-31.38 6.11,-13.34 9.16,-32.71 9.16,-58.1 v -164.3 h -43.95 v 164.3 c 0,21.97 -4.77,37.97 -14.28,47.98 -9.53,10 -23,15 -40.41,15 -13.02,0 -25.27,-3.37 -36.74,-10.12 -11.48,-6.76 -19.65,-15.91 -24.54,-27.47 -4.88,-11.56 -7.32,-27.5 -7.32,-47.85 v -141.84 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path88" /><path
d="m 6126.95,1415.71 h 144.78 c -1.95,21.82 -7.49,38.17 -16.6,49.08 -14.01,16.92 -32.15,25.39 -54.45,25.39 -20.18,0 -37.14,-6.75 -50.9,-20.27 -13.75,-13.51 -21.36,-31.57 -22.83,-54.2 z m 144.29,-71.03 45.41,-5.63 c -7.17,-26.52 -20.43,-47.11 -39.79,-61.76 -19.38,-14.65 -44.12,-21.97 -74.22,-21.97 -37.93,0 -68,11.67 -90.21,35.03 -22.22,23.35 -33.33,56.1 -33.33,98.27 0,43.61 11.23,77.46 33.69,101.56 22.46,24.09 51.59,36.14 87.41,36.14 34.66,0 62.98,-11.81 84.96,-35.41 21.97,-23.6 32.96,-56.8 32.96,-99.61 0,-2.6 -0.09,-6.51 -0.25,-11.72 h -193.36 c 1.62,-28.48 9.68,-50.29 24.17,-65.43 14.48,-15.14 32.55,-22.7 54.2,-22.7 16.11,0 29.86,4.22 41.26,12.7 11.39,8.46 20.42,21.97 27.1,40.53"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path90" /><path
d="m 269.043,826.656 47.363,-11.961 c -9.929,-38.906 -27.793,-68.562 -53.593,-88.996 -25.793,-20.418 -57.333,-30.633 -94.598,-30.633 -38.574,0 -69.9533,7.852 -94.1134,23.567 -24.1797,15.703 -42.5703,38.445 -55.1758,68.23 C 6.30859,816.648 0,848.633 0,882.813 c 0,37.273 7.11719,69.773 21.3672,97.527 14.2383,27.75 34.5,48.83 60.7812,63.24 26.2896,14.4 55.2146,21.6 86.7966,21.6 35.801,0 65.918,-9.12 90.332,-27.34 24.414,-18.23 41.414,-43.867 51.028,-76.902 l -46.633,-10.989 c -8.301,26.035 -20.352,45 -36.133,56.891 -15.793,11.88 -35.644,17.82 -59.57,17.82 -27.508,0 -50.496,-6.59 -68.9651,-19.78 -18.4766,-13.185 -31.4648,-30.888 -38.9453,-53.095 -7.4883,-22.226 -11.2305,-45.137 -11.2305,-68.73 0,-30.442 4.4336,-57.012 13.3008,-79.715 8.8789,-22.695 22.6641,-39.668 41.3871,-50.899 18.711,-11.23 38.972,-16.847 60.793,-16.847 26.519,0 48.98,7.644 67.379,22.949 18.39,15.293 30.839,38 37.355,68.113"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path92" /><path
d="m 368.652,701.172 v 259.273 h 39.551 v -39.304 c 10.09,18.386 19.402,30.515 27.957,36.379 8.535,5.859 17.942,8.789 28.195,8.789 14.805,0 29.864,-4.719 45.165,-14.161 l -15.133,-40.773 c -10.742,6.348 -21.489,9.523 -32.231,9.523 -9.605,0 -18.23,-2.89 -25.879,-8.664 -7.656,-5.781 -13.101,-13.796 -16.355,-24.05 -4.883,-15.625 -7.324,-32.715 -7.324,-51.274 V 701.172 h -43.946"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path94" /><path
d="m 568.848,855.711 h 144.773 c -1.949,21.809 -7.488,38.164 -16.601,49.07 -14,16.926 -32.149,25.395 -54.442,25.395 -20.183,0 -37.148,-6.758 -50.906,-20.266 -13.75,-13.515 -21.359,-31.582 -22.824,-54.199 z m 144.289,-71.043 45.41,-5.617 c -7.168,-26.531 -20.434,-47.117 -39.797,-61.77 -19.375,-14.644 -44.109,-21.968 -74.219,-21.968 -37.929,0 -68,11.675 -90.207,35.039 -22.222,23.347 -33.328,56.101 -33.328,98.257 0,43.625 11.231,77.473 33.692,101.567 22.46,24.09 51.589,36.133 87.402,36.133 34.668,0 62.988,-11.809 84.961,-35.403 21.972,-23.601 32.961,-56.804 32.961,-99.609 0,-2.606 -0.09,-6.516 -0.246,-11.719 h -193.36 c 1.621,-28.484 9.68,-50.293 24.168,-65.43 14.485,-15.136 32.551,-22.707 54.199,-22.707 16.118,0 29.868,4.231 41.262,12.7 11.387,8.457 20.418,21.968 27.102,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path96" /><path
d="m 979.246,831.297 c -15.953,-6.516 -39.883,-12.051 -71.773,-16.602 -18.071,-2.605 -30.852,-5.539 -38.332,-8.789 -7.493,-3.261 -13.274,-8.015 -17.332,-14.289 -4.075,-6.258 -6.106,-13.219 -6.106,-20.867 0,-11.719 4.434,-21.484 13.301,-29.297 8.879,-7.812 21.855,-11.719 38.945,-11.719 16.922,0 31.985,3.704 45.164,11.106 13.188,7.41 22.864,17.539 29.055,30.398 4.719,9.922 7.078,24.571 7.078,43.946 z m 3.664,-98.145 c -16.277,-13.836 -31.941,-23.601 -46.992,-29.297 -15.059,-5.695 -31.223,-8.542 -48.469,-8.542 -28.484,0 -50.379,6.953 -65.672,20.878 -15.3,13.907 -22.949,31.688 -22.949,53.336 0,12.7 2.891,24.297 8.672,34.789 5.77,10.504 13.34,18.922 22.695,25.274 9.368,6.348 19.903,11.14 31.621,14.402 8.622,2.278 21.641,4.473 39.063,6.594 35.476,4.227 61.601,9.273 78.367,15.137 0.156,6.023 0.246,9.843 0.246,11.472 0,17.903 -4.148,30.52 -12.449,37.84 -11.23,9.934 -27.922,14.895 -50.051,14.895 -20.676,0 -35.929,-3.621 -45.781,-10.86 -9.844,-7.246 -17.129,-20.066 -21.848,-38.457 l -42.968,5.86 c 3.91,18.386 10.335,33.242 19.289,44.55 8.945,11.309 21.882,20.02 38.82,26.133 16.922,6.094 36.531,9.153 58.836,9.153 22.129,0 40.117,-2.61 53.957,-7.817 13.824,-5.203 24.003,-11.765 30.513,-19.656 6.51,-7.891 11.07,-17.859 13.67,-29.902 1.47,-7.493 2.2,-20.996 2.2,-40.528 v -58.593 c 0,-40.86 0.94,-66.692 2.8,-77.508 1.88,-10.832 5.58,-21.211 11.12,-31.133 h -45.901 c -4.558,9.109 -7.488,19.773 -8.789,31.98"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path98" /><path
d="m 1187.74,740.477 6.35,-38.821 c -12.37,-2.593 -23.44,-3.902 -33.2,-3.902 -15.96,0 -28.32,2.527 -37.11,7.566 -8.79,5.039 -14.98,11.68 -18.56,19.895 -3.58,8.223 -5.37,25.515 -5.37,51.883 V 926.27 h -32.22 v 34.175 h 32.22 v 64.215 l 43.7,26.36 v -90.575 h 44.19 V 926.27 h -44.19 V 774.656 c 0,-12.539 0.78,-20.593 2.32,-24.172 1.55,-3.582 4.07,-6.433 7.58,-8.543 3.49,-2.121 8.49,-3.171 15.01,-3.171 4.88,0 11.31,0.566 19.28,1.707"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path100" /><path
d="m 1230.96,701.172 v 259.273 h 43.94 V 701.172 Z m 0,307.368 v 50.54 h 43.94 v -50.54 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path102" /><path
d="m 1413.82,701.172 -98.63,259.273 h 46.38 l 55.67,-155.269 c 6.01,-16.77 11.55,-34.184 16.6,-52.246 3.9,13.672 9.35,30.105 16.36,49.312 l 57.61,158.203 h 45.17 l -98.15,-259.273 h -41.01"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path104" /><path
d="m 1625,855.711 h 144.78 c -1.96,21.809 -7.49,38.164 -16.61,49.07 -14,16.926 -32.14,25.395 -54.44,25.395 -20.19,0 -37.15,-6.758 -50.91,-20.266 -13.75,-13.515 -21.36,-31.582 -22.82,-54.199 z m 144.29,-71.043 45.41,-5.617 c -7.17,-26.531 -20.43,-47.117 -39.8,-61.77 -19.37,-14.644 -44.11,-21.968 -74.22,-21.968 -37.93,0 -67.99,11.675 -90.2,35.039 -22.23,23.347 -33.33,56.101 -33.33,98.257 0,43.625 11.23,77.473 33.69,101.567 22.46,24.09 51.59,36.133 87.4,36.133 34.67,0 62.99,-11.809 84.96,-35.403 21.98,-23.601 32.96,-56.804 32.96,-99.609 0,-2.606 -0.09,-6.516 -0.24,-11.719 h -193.36 c 1.62,-28.484 9.68,-50.293 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.457 20.42,21.968 27.1,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path106" /><path
d="m 2015.38,701.172 v 357.908 h 258.79 v -42.24 H 2062.74 V 907.227 h 198 v -41.993 h -198 V 743.406 h 219.73 v -42.234 h -267.09"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path108" /><path
d="m 2512.21,701.172 v 38.086 c -20.19,-29.297 -47.61,-43.945 -82.28,-43.945 -15.3,0 -29.58,2.925 -42.85,8.789 -13.26,5.859 -23.11,13.218 -29.53,22.089 -6.44,8.875 -10.96,19.735 -13.56,32.594 -1.79,8.625 -2.68,22.297 -2.68,41.02 v 160.64 h 43.94 V 816.648 c 0,-22.949 0.89,-38.418 2.69,-46.386 2.76,-11.563 8.62,-20.633 17.58,-27.215 8.94,-6.606 20.02,-9.895 33.2,-9.895 13.18,0 25.55,3.379 37.11,10.125 11.55,6.758 19.74,15.957 24.53,27.602 4.81,11.629 7.21,28.516 7.21,50.652 v 138.914 h 43.94 V 701.172 h -39.3"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path110" /><path
d="m 2619.87,701.172 v 259.273 h 39.55 v -39.304 c 10.09,18.386 19.41,30.515 27.96,36.379 8.54,5.859 17.94,8.789 28.2,8.789 14.8,0 29.86,-4.719 45.16,-14.161 l -15.13,-40.773 c -10.75,6.348 -21.49,9.523 -32.23,9.523 -9.61,0 -18.23,-2.89 -25.88,-8.664 -7.66,-5.781 -13.11,-13.796 -16.36,-24.05 -4.88,-15.625 -7.32,-32.715 -7.32,-51.274 V 701.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path112" /><path
d="m 2815.67,830.809 c 0,-33.204 7.24,-58.067 21.73,-74.579 14.48,-16.527 32.72,-24.789 54.69,-24.789 21.81,0 39.95,8.301 54.44,24.907 14.49,16.597 21.73,41.902 21.73,75.925 0,32.063 -7.28,56.348 -21.85,72.872 -14.56,16.523 -32.68,24.785 -54.32,24.785 -21.97,0 -40.21,-8.223 -54.69,-24.657 -14.49,-16.437 -21.73,-41.261 -21.73,-74.464 z m -45.16,0 c 0,48.007 13.34,83.574 40.04,106.687 22.29,19.211 49.47,28.813 81.54,28.813 35.64,0 64.78,-11.68 87.4,-35.032 22.62,-23.359 33.94,-55.625 33.94,-96.804 0,-33.371 -5.01,-59.614 -15.01,-78.735 -10.02,-19.129 -24.58,-33.98 -43.71,-44.558 -19.12,-10.575 -40,-15.867 -62.62,-15.867 -36.3,0 -65.63,11.628 -88.01,34.91 -22.38,23.269 -33.57,56.797 -33.57,100.586"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path114" /><path
d="m 3104.74,829.344 c 0,-33.367 6.74,-58.028 20.26,-73.977 13.51,-15.957 29.86,-23.926 49.07,-23.926 19.53,0 36.25,8.262 50.18,24.789 13.9,16.512 20.87,42.11 20.87,76.778 0,33.035 -6.8,57.781 -20.38,74.219 -13.6,16.433 -29.84,24.656 -48.71,24.656 -18.73,0 -35.28,-8.75 -49.69,-26.25 -14.4,-17.5 -21.6,-42.93 -21.6,-76.289 z m -39.8,-227.543 v 358.644 h 40.04 v -33.687 c 9.43,13.183 20.1,23.074 31.98,29.656 11.88,6.602 26.28,9.895 43.22,9.895 22.12,0 41.66,-5.696 58.59,-17.09 16.92,-11.399 29.7,-27.473 38.33,-48.215 8.62,-20.762 12.94,-43.508 12.94,-68.242 0,-26.532 -4.76,-50.418 -14.29,-71.653 -9.51,-21.25 -23.35,-37.515 -41.5,-48.828 -18.15,-11.316 -37.23,-16.968 -57.25,-16.968 -14.65,0 -27.79,3.093 -39.43,9.277 -11.63,6.18 -21.2,13.992 -28.68,23.433 V 601.801 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path116" /><path
d="M 3376.22,855.711 H 3521 c -1.96,21.809 -7.49,38.164 -16.61,49.07 -14,16.926 -32.14,25.395 -54.44,25.395 -20.18,0 -37.15,-6.758 -50.91,-20.266 -13.75,-13.515 -21.35,-31.582 -22.82,-54.199 z m 144.29,-71.043 45.41,-5.617 c -7.17,-26.531 -20.43,-47.117 -39.8,-61.77 -19.37,-14.644 -44.11,-21.968 -74.22,-21.968 -37.93,0 -67.99,11.675 -90.2,35.039 -22.23,23.347 -33.33,56.101 -33.33,98.257 0,43.625 11.23,77.473 33.69,101.567 22.46,24.09 51.59,36.133 87.4,36.133 34.67,0 62.99,-11.809 84.96,-35.403 21.98,-23.601 32.96,-56.804 32.96,-99.609 0,-2.606 -0.09,-6.516 -0.24,-11.719 h -193.36 c 1.62,-28.484 9.68,-50.293 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.457 20.42,21.968 27.1,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path118" /><path
d="m 3812.99,888.914 h 92.53 c 30.59,0 52.32,5.695 65.18,17.09 12.85,11.387 19.29,27.422 19.29,48.098 0,14.968 -3.78,27.781 -11.36,38.445 -7.56,10.663 -17.54,17.703 -29.9,21.123 -7.98,2.12 -22.7,3.17 -44.19,3.17 h -91.55 z m -47.36,-187.742 v 357.908 h 135 c 23.76,0 41.91,-1.14 54.45,-3.42 17.58,-2.93 32.3,-8.5 44.19,-16.73 11.87,-8.22 21.44,-19.72 28.68,-34.54 7.25,-14.812 10.87,-31.081 10.87,-48.824 0,-30.441 -9.69,-56.203 -29.05,-77.277 -19.38,-21.074 -54.37,-31.609 -104.98,-31.609 h -91.8 V 701.172 h -47.36"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path120" /><path
d="m 4093.02,701.172 v 259.273 h 39.55 v -39.304 c 10.09,18.386 19.4,30.515 27.96,36.379 8.53,5.859 17.94,8.789 28.19,8.789 14.81,0 29.86,-4.719 45.17,-14.161 l -15.14,-40.773 c -10.74,6.348 -21.48,9.523 -32.23,9.523 -9.61,0 -18.23,-2.89 -25.88,-8.664 -7.65,-5.781 -13.1,-13.796 -16.35,-24.05 -4.89,-15.625 -7.33,-32.715 -7.33,-51.274 V 701.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path122" /><path
d="m 4288.82,830.809 c 0,-33.204 7.23,-58.067 21.73,-74.579 14.48,-16.527 32.71,-24.789 54.68,-24.789 21.81,0 39.96,8.301 54.45,24.907 14.48,16.597 21.73,41.902 21.73,75.925 0,32.063 -7.29,56.348 -21.86,72.872 -14.56,16.523 -32.67,24.785 -54.32,24.785 -21.97,0 -40.2,-8.223 -54.68,-24.657 -14.5,-16.437 -21.73,-41.261 -21.73,-74.464 z m -45.17,0 c 0,48.007 13.34,83.574 40.04,106.687 22.3,19.211 49.47,28.813 81.54,28.813 35.65,0 64.78,-11.68 87.41,-35.032 22.61,-23.359 33.93,-55.625 33.93,-96.804 0,-33.371 -5.01,-59.614 -15.01,-78.735 -10.02,-19.129 -24.58,-33.98 -43.71,-44.558 -19.12,-10.575 -40,-15.867 -62.62,-15.867 -36.29,0 -65.63,11.628 -88,34.91 -22.39,23.269 -33.58,56.797 -33.58,100.586"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path124" /><path
d="m 4566.41,835.445 c 0,-34.019 6.74,-58.836 20.26,-74.461 13.51,-15.625 30.43,-23.437 50.78,-23.437 20.18,0 37.11,7.773 50.78,23.312 13.67,15.543 20.51,39.918 20.51,73.125 0,31.739 -7.04,55.664 -21.11,71.778 -14.09,16.109 -31.06,24.168 -50.91,24.168 -19.53,0 -36.13,-7.93 -49.81,-23.809 -13.67,-15.859 -20.5,-39.426 -20.5,-70.676 z m -36.38,-155.757 42.72,-6.348 c 1.79,-13.192 6.75,-22.789 14.9,-28.809 10.89,-8.14 25.79,-12.211 44.67,-12.211 20.35,0 36.05,4.071 47.12,12.211 11.07,8.141 18.56,19.528 22.46,34.18 2.28,8.953 3.33,27.742 3.18,56.394 -19.21,-22.625 -43.14,-33.933 -71.78,-33.933 -35.64,0 -63.23,12.851 -82.76,38.57 -19.53,25.715 -29.3,56.555 -29.3,92.531 0,24.739 4.47,47.559 13.43,68.477 8.94,20.918 21.93,37.07 38.93,48.469 17.02,11.394 37,17.09 59.94,17.09 30.6,0 55.83,-12.375 75.69,-37.114 v 31.25 h 40.53 V 736.324 c 0,-40.359 -4.12,-68.965 -12.33,-85.812 -8.22,-16.84 -21.25,-30.153 -39.06,-39.922 -17.83,-9.762 -39.77,-14.641 -65.8,-14.641 -30.93,0 -55.91,6.961 -74.95,20.86 -19.05,13.929 -28.24,34.89 -27.59,62.879"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path126" /><path
d="m 4815.67,701.172 v 259.273 h 39.55 v -39.304 c 10.09,18.386 19.41,30.515 27.96,36.379 8.54,5.859 17.94,8.789 28.2,8.789 14.8,0 29.86,-4.719 45.16,-14.161 l -15.13,-40.773 c -10.75,6.348 -21.49,9.523 -32.23,9.523 -9.61,0 -18.23,-2.89 -25.88,-8.664 -7.66,-5.781 -13.1,-13.796 -16.36,-24.05 -4.88,-15.625 -7.32,-32.715 -7.32,-51.274 V 701.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path128" /><path
d="m 5148.19,831.297 c -15.95,-6.516 -39.88,-12.051 -71.77,-16.602 -18.07,-2.605 -30.85,-5.539 -38.33,-8.789 -7.49,-3.261 -13.28,-8.015 -17.34,-14.289 -4.07,-6.258 -6.1,-13.219 -6.1,-20.867 0,-11.719 4.43,-21.484 13.3,-29.297 8.88,-7.812 21.85,-11.719 38.94,-11.719 16.93,0 31.99,3.704 45.17,11.106 13.18,7.41 22.86,17.539 29.05,30.398 4.72,9.922 7.08,24.571 7.08,43.946 z m 3.67,-98.145 c -16.28,-13.836 -31.95,-23.601 -47,-29.297 -15.06,-5.695 -31.22,-8.542 -48.46,-8.542 -28.49,0 -50.38,6.953 -65.68,20.878 -15.3,13.907 -22.95,31.688 -22.95,53.336 0,12.7 2.89,24.297 8.68,34.789 5.77,10.504 13.34,18.922 22.69,25.274 9.37,6.348 19.9,11.14 31.62,14.402 8.62,2.278 21.64,4.473 39.06,6.594 35.48,4.227 61.61,9.273 78.37,15.137 0.16,6.023 0.25,9.843 0.25,11.472 0,17.903 -4.15,30.52 -12.45,37.84 -11.23,9.934 -27.92,14.895 -50.05,14.895 -20.68,0 -35.93,-3.621 -45.78,-10.86 -9.85,-7.246 -17.13,-20.066 -21.85,-38.457 l -42.97,5.86 c 3.91,18.386 10.33,33.242 19.29,44.55 8.94,11.309 21.88,20.02 38.82,26.133 16.92,6.094 36.53,9.153 58.84,9.153 22.12,0 40.11,-2.61 53.95,-7.817 13.83,-5.203 24,-11.765 30.52,-19.656 6.5,-7.891 11.06,-17.859 13.67,-29.902 1.46,-7.493 2.2,-20.996 2.2,-40.528 v -58.593 c 0,-40.86 0.93,-66.692 2.8,-77.508 1.87,-10.832 5.58,-21.211 11.11,-31.133 h -45.9 c -4.56,9.109 -7.49,19.773 -8.78,31.98"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path130" /><path
d="m 5260.74,701.172 v 259.273 h 39.31 V 924.07 c 8.13,12.696 18.95,22.91 32.47,30.645 13.51,7.726 28.89,11.594 46.14,11.594 19.2,0 34.95,-3.996 47.25,-11.965 12.28,-7.981 20.95,-19.121 25.99,-33.446 20.51,30.274 47.2,45.411 80.08,45.411 25.72,0 45.49,-7.121 59.33,-21.36 13.83,-14.25 20.75,-36.179 20.75,-65.801 V 701.172 h -43.7 V 864.5 c 0,17.578 -1.43,30.234 -4.27,37.969 -2.85,7.722 -8.03,13.945 -15.51,18.672 -7.49,4.718 -16.28,7.082 -26.36,7.082 -18.24,0 -33.37,-6.067 -45.41,-18.196 -12.05,-12.129 -18.07,-31.535 -18.07,-58.222 V 701.172 h -43.95 v 168.457 c 0,19.527 -3.58,34.18 -10.74,43.941 -7.17,9.77 -18.88,14.653 -35.15,14.653 -12.38,0 -23.81,-3.254 -34.3,-9.77 -10.51,-6.512 -18.12,-16.031 -22.83,-28.562 -4.73,-12.539 -7.08,-30.606 -7.08,-54.2 V 701.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path132" /><path
d="m 5677.25,701.172 v 259.273 h 39.3 V 924.07 c 8.14,12.696 18.96,22.91 32.47,30.645 13.51,7.726 28.89,11.594 46.15,11.594 19.2,0 34.95,-3.996 47.24,-11.965 12.29,-7.981 20.95,-19.121 26,-33.446 20.51,30.274 47.2,45.411 80.08,45.411 25.71,0 45.48,-7.121 59.32,-21.36 13.83,-14.25 20.75,-36.179 20.75,-65.801 V 701.172 h -43.7 V 864.5 c 0,17.578 -1.42,30.234 -4.26,37.969 -2.86,7.722 -8.03,13.945 -15.51,18.672 -7.49,4.718 -16.28,7.082 -26.37,7.082 -18.23,0 -33.37,-6.067 -45.41,-18.196 -12.05,-12.129 -18.07,-31.535 -18.07,-58.222 V 701.172 h -43.94 v 168.457 c 0,19.527 -3.59,34.18 -10.74,43.941 -7.17,9.77 -18.89,14.653 -35.16,14.653 -12.37,0 -23.81,-3.254 -34.3,-9.77 -10.5,-6.512 -18.11,-16.031 -22.83,-28.562 -4.73,-12.539 -7.08,-30.606 -7.08,-54.2 V 701.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path134" /><path
d="m 6126.95,855.711 h 144.78 c -1.95,21.809 -7.49,38.164 -16.6,49.07 -14.01,16.926 -32.15,25.395 -54.45,25.395 -20.18,0 -37.14,-6.758 -50.9,-20.266 -13.75,-13.515 -21.36,-31.582 -22.83,-54.199 z m 144.29,-71.043 45.41,-5.617 c -7.17,-26.531 -20.43,-47.117 -39.79,-61.77 -19.38,-14.644 -44.12,-21.968 -74.22,-21.968 -37.93,0 -68,11.675 -90.21,35.039 -22.22,23.347 -33.33,56.101 -33.33,98.257 0,43.625 11.23,77.473 33.69,101.567 22.46,24.09 51.59,36.133 87.41,36.133 34.66,0 62.98,-11.809 84.96,-35.403 21.97,-23.601 32.96,-56.804 32.96,-99.609 0,-2.606 -0.09,-6.516 -0.25,-11.719 h -193.36 c 1.62,-28.484 9.68,-50.293 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.39,8.457 20.42,21.968 27.1,40.527"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path136" /><path
d="m 1396.97,270.809 c 0,-33.2 7.24,-58.071 21.73,-74.579 14.48,-16.519 32.72,-24.789 54.69,-24.789 21.81,0 39.95,8.297 54.44,24.911 14.48,16.597 21.73,41.898 21.73,75.918 0,32.062 -7.28,56.359 -21.85,72.878 -14.57,16.524 -32.68,24.782 -54.32,24.782 -21.97,0 -40.21,-8.219 -54.69,-24.66 -14.49,-16.438 -21.73,-41.258 -21.73,-74.461 z m -45.16,0 c 0,48.011 13.34,83.57 40.04,106.691 22.29,19.199 49.47,28.809 81.54,28.809 35.64,0 64.77,-11.68 87.4,-35.039 22.62,-23.348 33.94,-55.629 33.94,-96.801 0,-33.367 -5.01,-59.61 -15.01,-78.731 -10.02,-19.129 -24.58,-33.976 -43.71,-44.558 -19.13,-10.578 -40,-15.871 -62.62,-15.871 -36.3,0 -65.64,11.632 -88.01,34.91 -22.38,23.269 -33.57,56.801 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path138" /><path
d="M 1656.74,141.172 V 366.27 h -38.82 v 34.179 h 38.82 v 27.59 c 0,17.41 1.54,30.352 4.64,38.813 4.23,11.386 11.68,20.628 22.33,27.718 10.67,7.071 25.6,10.61 44.81,10.61 12.36,0 26.03,-1.461 41.01,-4.391 l -6.59,-38.328 c -9.12,1.621 -17.74,2.437 -25.88,2.437 -13.35,0 -22.79,-2.847 -28.32,-8.539 -5.54,-5.711 -8.3,-16.359 -8.3,-31.988 v -23.922 h 50.54 V 366.27 h -50.54 V 141.172 h -43.7"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path140" /><path
d="m 2020.02,180.48 6.35,-38.82 c -12.38,-2.601 -23.44,-3.91 -33.21,-3.91 -15.95,0 -28.32,2.531 -37.11,7.57 -8.78,5.039 -14.98,11.68 -18.55,19.891 -3.58,8.23 -5.37,25.519 -5.37,51.891 V 366.27 h -32.23 v 34.179 h 32.23 v 64.211 l 43.7,26.36 v -90.571 h 44.19 V 366.27 h -44.19 V 214.66 c 0,-12.539 0.77,-20.601 2.31,-24.172 1.56,-3.59 4.08,-6.437 7.58,-8.547 3.5,-2.121 8.5,-3.171 15.01,-3.171 4.89,0 11.31,0.562 19.29,1.71"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path142" /><path
d="m 2062.99,141.172 v 357.91 h 43.94 V 370.66 c 20.51,23.762 46.39,35.649 77.64,35.649 19.2,0 35.89,-3.789 50.05,-11.348 14.16,-7.582 24.3,-18.039 30.39,-31.379 6.11,-13.352 9.16,-32.711 9.16,-58.102 V 141.172 h -43.95 V 305.48 c 0,21.969 -4.76,37.961 -14.27,47.981 -9.53,10 -23,15.008 -40.41,15.008 -13.03,0 -25.28,-3.379 -36.74,-10.129 -11.49,-6.762 -19.66,-15.918 -24.54,-27.469 -4.88,-11.57 -7.33,-27.512 -7.33,-47.851 V 141.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path144" /><path
d="m 2374.27,295.711 h 144.77 c -1.95,21.809 -7.49,38.168 -16.6,49.07 -14,16.93 -32.15,25.391 -54.44,25.391 -20.19,0 -37.15,-6.75 -50.91,-20.262 -13.75,-13.519 -21.36,-31.582 -22.82,-54.199 z m 144.28,-71.039 45.41,-5.621 c -7.16,-26.531 -20.42,-47.121 -39.79,-61.77 -19.38,-14.652 -44.11,-21.972 -74.22,-21.972 -37.93,0 -68,11.679 -90.2,35.043 -22.23,23.347 -33.33,56.097 -33.33,98.257 0,43.61 11.23,77.473 33.69,101.563 22.46,24.09 51.59,36.137 87.4,36.137 34.67,0 62.99,-11.809 84.96,-35.399 21.97,-23.609 32.96,-56.808 32.96,-99.609 0,-2.61 -0.09,-6.52 -0.24,-11.723 h -193.36 c 1.62,-28.488 9.67,-50.289 24.17,-65.43 14.48,-15.136 32.54,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.461 20.42,21.968 27.09,40.531"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path146" /><path
d="m 2764.65,141.172 v 357.91 h 258.79 V 456.84 H 2812.01 V 347.219 h 198 V 305.23 h -198 V 183.41 h 219.73 v -42.238 h -267.09"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path148" /><path
d="m 3261.47,141.172 v 38.09 c -20.18,-29.301 -47.6,-43.953 -82.27,-43.953 -15.3,0 -29.58,2.929 -42.85,8.793 -13.26,5.859 -23.11,13.218 -29.53,22.089 -6.44,8.879 -10.96,19.739 -13.56,32.598 -1.8,8.621 -2.68,22.293 -2.68,41.012 v 160.648 h 43.94 V 256.648 c 0,-22.949 0.89,-38.418 2.69,-46.386 2.76,-11.563 8.62,-20.633 17.58,-27.211 8.94,-6.61 20.01,-9.903 33.2,-9.903 13.18,0 25.55,3.383 37.11,10.133 11.55,6.758 19.73,15.957 24.53,27.598 4.8,11.633 7.21,28.512 7.21,50.652 v 138.918 h 43.94 V 141.172 h -39.31"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path150" /><path
d="m 3369.14,141.172 v 259.277 h 39.55 v -39.308 c 10.09,18.39 19.41,30.519 27.96,36.379 8.54,5.859 17.94,8.789 28.19,8.789 14.81,0 29.87,-4.727 45.17,-14.161 l -15.14,-40.769 c -10.74,6.34 -21.48,9.519 -32.22,9.519 -9.61,0 -18.24,-2.886 -25.88,-8.679 -7.66,-5.77 -13.11,-13.778 -16.36,-24.039 -4.88,-15.621 -7.32,-32.711 -7.32,-51.27 V 141.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path152" /><path
d="m 3564.94,270.809 c 0,-33.2 7.24,-58.071 21.73,-74.579 14.48,-16.519 32.71,-24.789 54.69,-24.789 21.8,0 39.95,8.297 54.44,24.911 14.48,16.597 21.73,41.898 21.73,75.918 0,32.062 -7.29,56.359 -21.86,72.878 -14.56,16.524 -32.67,24.782 -54.31,24.782 -21.98,0 -40.21,-8.219 -54.69,-24.66 -14.49,-16.438 -21.73,-41.258 -21.73,-74.461 z m -45.16,0 c 0,48.011 13.34,83.57 40.03,106.691 22.3,19.199 49.48,28.809 81.55,28.809 35.64,0 64.77,-11.68 87.4,-35.039 22.62,-23.348 33.94,-55.629 33.94,-96.801 0,-33.367 -5.01,-59.61 -15.01,-78.731 -10.02,-19.129 -24.58,-33.976 -43.72,-44.558 -19.12,-10.578 -40,-15.871 -62.61,-15.871 -36.3,0 -65.64,11.632 -88.01,34.91 -22.38,23.269 -33.57,56.801 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path154" /><path
d="m 3854,269.34 c 0,-33.371 6.75,-58.02 20.27,-73.969 13.5,-15.961 29.86,-23.93 49.07,-23.93 19.53,0 36.25,8.27 50.18,24.789 13.9,16.508 20.86,42.11 20.86,76.782 0,33.027 -6.79,57.769 -20.38,74.207 -13.59,16.441 -29.83,24.66 -48.71,24.66 -18.72,0 -35.27,-8.75 -49.68,-26.238 -14.4,-17.5 -21.61,-42.942 -21.61,-76.301 z M 3814.21,41.8008 V 400.449 h 40.04 v -33.687 c 9.43,13.179 20.1,23.058 31.98,29.66 11.88,6.59 26.28,9.887 43.21,9.887 22.13,0 41.66,-5.707 58.6,-17.09 16.92,-11.399 29.69,-27.457 38.33,-48.231 8.62,-20.738 12.94,-43.488 12.94,-68.226 0,-26.532 -4.76,-50.422 -14.29,-71.653 -9.51,-21.25 -23.35,-37.519 -41.5,-48.828 -18.15,-11.312 -37.23,-16.972 -57.25,-16.972 -14.65,0 -27.79,3.101 -39.43,9.281 -11.63,6.18 -21.21,13.992 -28.69,23.441 V 41.8008 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path156" /><path
d="m 4125.49,295.711 h 144.77 c -1.95,21.809 -7.49,38.168 -16.6,49.07 -14,16.93 -32.15,25.391 -54.44,25.391 -20.19,0 -37.15,-6.75 -50.91,-20.262 -13.75,-13.519 -21.36,-31.582 -22.82,-54.199 z m 144.29,-71.039 45.41,-5.621 c -7.17,-26.531 -20.43,-47.121 -39.8,-61.77 -19.37,-14.652 -44.11,-21.972 -74.22,-21.972 -37.93,0 -68,11.679 -90.2,35.043 -22.23,23.347 -33.33,56.097 -33.33,98.257 0,43.61 11.23,77.473 33.69,101.563 22.46,24.09 51.59,36.137 87.4,36.137 34.67,0 62.99,-11.809 84.96,-35.399 21.97,-23.609 32.96,-56.808 32.96,-99.609 0,-2.61 -0.09,-6.52 -0.24,-11.723 h -193.36 c 1.62,-28.488 9.67,-50.289 24.17,-65.43 14.48,-15.136 32.55,-22.707 54.2,-22.707 16.11,0 29.86,4.231 41.26,12.7 11.38,8.461 20.42,21.968 27.1,40.531"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path158" /><path
d="m 4535.89,271.301 c -15.96,-6.52 -39.88,-12.051 -71.78,-16.602 -18.07,-2.609 -30.85,-5.539 -38.33,-8.789 -7.49,-3.269 -13.27,-8.019 -17.33,-14.289 -4.07,-6.262 -6.11,-13.223 -6.11,-20.871 0,-11.719 4.44,-21.48 13.3,-29.301 8.88,-7.808 21.86,-11.719 38.95,-11.719 16.92,0 31.98,3.711 45.17,11.11 13.18,7.41 22.86,17.539 29.05,30.398 4.72,9.922 7.08,24.571 7.08,43.942 z m 3.66,-98.153 c -16.28,-13.839 -31.94,-23.597 -46.99,-29.289 -15.06,-5.699 -31.22,-8.55 -48.47,-8.55 -28.48,0 -50.38,6.953 -65.67,20.882 -15.3,13.911 -22.95,31.688 -22.95,53.34 0,12.688 2.89,24.301 8.67,34.778 5.77,10.511 13.34,18.929 22.7,25.281 9.36,6.351 19.9,11.14 31.62,14.398 8.62,2.282 21.64,4.481 39.06,6.594 35.48,4.227 61.6,9.277 78.37,15.137 0.15,6.019 0.24,9.84 0.24,11.48 0,17.903 -4.15,30.512 -12.45,37.84 -11.23,9.922 -27.92,14.891 -50.05,14.891 -20.67,0 -35.92,-3.621 -45.78,-10.871 -9.84,-7.239 -17.13,-20.059 -21.84,-38.45 l -42.97,5.86 c 3.9,18.39 10.33,33.25 19.28,44.562 8.95,11.309 21.89,20.02 38.82,26.117 16.93,6.114 36.54,9.161 58.84,9.161 22.13,0 40.12,-2.61 53.96,-7.821 13.82,-5.207 24,-11.75 30.51,-19.636 6.51,-7.903 11.07,-17.883 13.68,-29.922 1.46,-7.489 2.19,-20.989 2.19,-40.52 v -58.601 c 0,-40.86 0.94,-66.688 2.81,-77.508 1.87,-10.832 5.57,-21.211 11.11,-31.129 h -45.9 c -4.56,9.109 -7.49,19.777 -8.79,31.976"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path160" /><path
d="m 4648.44,141.172 v 259.277 h 39.55 v -36.867 c 19.04,28.477 46.54,42.727 82.52,42.727 15.62,0 29.99,-2.821 43.09,-8.418 13.1,-5.629 22.9,-12.993 29.42,-22.102 6.5,-9.117 11.06,-19.937 13.67,-32.469 1.62,-8.148 2.44,-22.379 2.44,-42.73 V 141.172 h -43.94 v 157.707 c 0,17.91 -1.71,31.293 -5.13,40.16 -3.42,8.883 -9.48,15.961 -18.19,21.25 -8.71,5.281 -18.92,7.93 -30.64,7.93 -18.72,0 -34.87,-5.949 -48.47,-17.821 -13.58,-11.886 -20.38,-34.429 -20.38,-67.628 V 141.172 h -43.94"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path162" /><path
d="m 5305.91,499.082 h 47.36 V 292.289 c 0,-35.969 -4.07,-64.539 -12.21,-85.687 -8.14,-21.161 -22.83,-38.372 -44.06,-51.641 -21.25,-13.262 -49.12,-19.891 -83.62,-19.891 -33.54,0 -60.96,5.782 -82.28,17.328 -21.32,11.551 -36.54,28.282 -45.65,50.184 -9.12,21.879 -13.67,51.777 -13.67,89.707 v 206.793 h 47.36 V 292.539 c 0,-31.098 2.89,-54 8.66,-68.73 5.78,-14.731 15.72,-26.09 29.79,-34.059 14.08,-7.969 31.29,-11.961 51.64,-11.961 34.82,0 59.65,7.891 74.46,23.68 14.81,15.781 22.22,46.152 22.22,91.07 v 206.543"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path164" /><path
d="m 5426.51,141.172 v 259.277 h 39.55 v -36.867 c 19.05,28.477 46.55,42.727 82.52,42.727 15.63,0 29.99,-2.821 43.1,-8.418 13.1,-5.629 22.9,-12.993 29.41,-22.102 6.51,-9.117 11.07,-19.937 13.68,-32.469 1.62,-8.148 2.44,-22.379 2.44,-42.73 V 141.172 h -43.95 v 157.707 c 0,17.91 -1.71,31.293 -5.13,40.16 -3.41,8.883 -9.48,15.961 -18.19,21.25 -8.7,5.281 -18.91,7.93 -30.63,7.93 -18.72,0 -34.88,-5.949 -48.47,-17.821 -13.58,-11.886 -20.38,-34.429 -20.38,-67.628 V 141.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path166" /><path
d="m 5704.83,141.172 v 259.277 h 43.95 V 141.172 Z m 0,307.367 v 50.543 h 43.95 v -50.543 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path168" /><path
d="m 5844.48,270.809 c 0,-33.2 7.24,-58.071 21.73,-74.579 14.48,-16.519 32.72,-24.789 54.69,-24.789 21.81,0 39.95,8.297 54.44,24.911 14.48,16.597 21.73,41.898 21.73,75.918 0,32.062 -7.28,56.359 -21.86,72.878 -14.56,16.524 -32.67,24.782 -54.31,24.782 -21.97,0 -40.21,-8.219 -54.69,-24.66 -14.49,-16.438 -21.73,-41.258 -21.73,-74.461 z m -45.16,0 c 0,48.011 13.34,83.57 40.04,106.691 22.29,19.199 49.47,28.809 81.54,28.809 35.64,0 64.77,-11.68 87.4,-35.039 22.62,-23.348 33.94,-55.629 33.94,-96.801 0,-33.367 -5.01,-59.61 -15.01,-78.731 -10.02,-19.129 -24.58,-33.976 -43.71,-44.558 -19.13,-10.578 -40,-15.871 -62.62,-15.871 -36.3,0 -65.64,11.632 -88.01,34.91 -22.38,23.269 -33.57,56.801 -33.57,100.59"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path170" /><path
d="m 6093.75,141.172 v 259.277 h 39.55 v -36.867 c 19.04,28.477 46.54,42.727 82.52,42.727 15.63,0 29.99,-2.821 43.1,-8.418 13.09,-5.629 22.9,-12.993 29.41,-22.102 6.5,-9.117 11.06,-19.937 13.67,-32.469 1.62,-8.148 2.44,-22.379 2.44,-42.73 V 141.172 h -43.94 v 157.707 c 0,17.91 -1.71,31.293 -5.13,40.16 -3.42,8.883 -9.48,15.961 -18.19,21.25 -8.7,5.281 -18.92,7.93 -30.64,7.93 -18.72,0 -34.87,-5.949 -48.46,-17.821 -13.59,-11.886 -20.38,-34.429 -20.38,-67.628 V 141.172 h -43.95"
style="fill:#2d49a3;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path172" /></g></g></svg>

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

17
dist/assets/js/app.js vendored Normal file
View File

@ -0,0 +1,17 @@
import $ from 'jquery';
import 'what-input';
// Foundation JS relies on a global variable. In ES6, all imports are hoisted
// to the top of the file so if we used `import` to import Foundation,
// it would execute earlier than we have assigned the global variable.
// This is why we have to use CommonJS require() here since it doesn't
// have the hoisting behavior.
window.jQuery = $;
require('foundation-sites');
// If you want to pick and choose which modules to include, comment out the above and uncomment
// the line below
//import './lib/foundation-explicit-pieces';
$(document).foundation();

1
dist/assets/js/app.js.map vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,83 @@
import $ from 'jquery';
import { Foundation } from 'foundation-sites/js/foundation.core';
import * as CoreUtils from 'foundation-sites/js/foundation.core.utils';
import { Box } from 'foundation-sites/js/foundation.util.box'
import { onImagesLoaded } from 'foundation-sites/js/foundation.util.imageLoader';
import { Keyboard } from 'foundation-sites/js/foundation.util.keyboard';
import { MediaQuery } from 'foundation-sites/js/foundation.util.mediaQuery';
import { Motion, Move } from 'foundation-sites/js/foundation.util.motion';
import { Nest } from 'foundation-sites/js/foundation.util.nest';
import { Timer } from 'foundation-sites/js/foundation.util.timer';
import { Touch } from 'foundation-sites/js/foundation.util.touch';
import { Triggers } from 'foundation-sites/js/foundation.util.triggers';
import { Abide } from 'foundation-sites/js/foundation.abide';
import { Accordion } from 'foundation-sites/js/foundation.accordion';
import { AccordionMenu } from 'foundation-sites/js/foundation.accordionMenu';
import { Drilldown } from 'foundation-sites/js/foundation.drilldown';
import { Dropdown } from 'foundation-sites/js/foundation.dropdown';
import { DropdownMenu } from 'foundation-sites/js/foundation.dropdownMenu';
import { Equalizer } from 'foundation-sites/js/foundation.equalizer';
import { Interchange } from 'foundation-sites/js/foundation.interchange';
import { Magellan } from 'foundation-sites/js/foundation.magellan';
import { OffCanvas } from 'foundation-sites/js/foundation.offcanvas';
import { Orbit } from 'foundation-sites/js/foundation.orbit';
import { ResponsiveMenu } from 'foundation-sites/js/foundation.responsiveMenu';
import { ResponsiveToggle } from 'foundation-sites/js/foundation.responsiveToggle';
import { Reveal } from 'foundation-sites/js/foundation.reveal';
import { Slider } from 'foundation-sites/js/foundation.slider';
import { SmoothScroll } from 'foundation-sites/js/foundation.smoothScroll';
import { Sticky } from 'foundation-sites/js/foundation.sticky';
import { Tabs } from 'foundation-sites/js/foundation.tabs';
import { Toggler } from 'foundation-sites/js/foundation.toggler';
import { Tooltip } from 'foundation-sites/js/foundation.tooltip';
import { ResponsiveAccordionTabs } from 'foundation-sites/js/foundation.responsiveAccordionTabs';
Foundation.addToJquery($);
// Add Foundation Utils to Foundation global namespace for backwards
// compatibility.
Foundation.rtl = CoreUtils.rtl;
Foundation.GetYoDigits = CoreUtils.GetYoDigits;
Foundation.transitionend = CoreUtils.transitionend;
Foundation.RegExpEscape = CoreUtils.RegExpEscape;
Foundation.onLoad = CoreUtils.onLoad;
Foundation.Box = Box;
Foundation.onImagesLoaded = onImagesLoaded;
Foundation.Keyboard = Keyboard;
Foundation.MediaQuery = MediaQuery;
Foundation.Motion = Motion;
Foundation.Move = Move;
Foundation.Nest = Nest;
Foundation.Timer = Timer;
// Touch and Triggers previously were almost purely sede effect driven,
// so no need to add it to Foundation, just init them.
Touch.init($);
Triggers.init($, Foundation);
MediaQuery._init();
Foundation.plugin(Abide, 'Abide');
Foundation.plugin(Accordion, 'Accordion');
Foundation.plugin(AccordionMenu, 'AccordionMenu');
Foundation.plugin(Drilldown, 'Drilldown');
Foundation.plugin(Dropdown, 'Dropdown');
Foundation.plugin(DropdownMenu, 'DropdownMenu');
Foundation.plugin(Equalizer, 'Equalizer');
Foundation.plugin(Interchange, 'Interchange');
Foundation.plugin(Magellan, 'Magellan');
Foundation.plugin(OffCanvas, 'OffCanvas');
Foundation.plugin(Orbit, 'Orbit');
Foundation.plugin(ResponsiveMenu, 'ResponsiveMenu');
Foundation.plugin(ResponsiveToggle, 'ResponsiveToggle');
Foundation.plugin(Reveal, 'Reveal');
Foundation.plugin(Slider, 'Slider');
Foundation.plugin(SmoothScroll, 'SmoothScroll');
Foundation.plugin(Sticky, 'Sticky');
Foundation.plugin(Tabs, 'Tabs');
Foundation.plugin(Toggler, 'Toggler');
Foundation.plugin(Tooltip, 'Tooltip');
Foundation.plugin(ResponsiveAccordionTabs, 'ResponsiveAccordionTabs');
export { Foundation };

911
dist/assets/scss/_settings.scss vendored Normal file
View File

@ -0,0 +1,911 @@
// Foundation for Sites Settings
// -----------------------------
//
// Table of Contents:
//
// 1. Global
// 2. Breakpoints
// 3. The Grid
// 4. Base Typography
// 5. Typography Helpers
// 6. Abide
// 7. Accordion
// 8. Accordion Menu
// 9. Badge
// 10. Breadcrumbs
// 11. Button
// 12. Button Group
// 13. Callout
// 14. Card
// 15. Close Button
// 16. Drilldown
// 17. Dropdown
// 18. Dropdown Menu
// 19. Flexbox Utilities
// 20. Forms
// 21. Label
// 22. Media Object
// 23. Menu
// 24. Meter
// 25. Off-canvas
// 26. Orbit
// 27. Pagination
// 28. Progress Bar
// 29. Prototype Arrow
// 30. Prototype Border-Box
// 31. Prototype Border-None
// 32. Prototype Bordered
// 33. Prototype Display
// 34. Prototype Font-Styling
// 35. Prototype List-Style-Type
// 36. Prototype Overflow
// 37. Prototype Position
// 38. Prototype Rounded
// 39. Prototype Separator
// 40. Prototype Shadow
// 41. Prototype Sizing
// 42. Prototype Spacing
// 43. Prototype Text-Decoration
// 44. Prototype Text-Transformation
// 45. Prototype Text-Utilities
// 46. Responsive Embed
// 47. Reveal
// 48. Slider
// 49. Switch
// 50. Table
// 51. Tabs
// 52. Thumbnail
// 53. Title Bar
// 54. Tooltip
// 55. Top Bar
// 56. Xy Grid
@import 'util/util';
// 0. arcHIVE specific styles
// ---------
// global project styles
@import "global/colors";
@import "global/typography";
// 1. Global
// ---------
$global-font-size:100%;
$global-width: 100vw;
$global-lineheight: 1.5;
$foundation-palette: (
primary: $hyperlink-blue,
secondary: $desert-red,
success: $acid-green,
warning: $bloody-red,
alert: $bloody-red,
);
$light-gray: #e6e6e6;
$medium-gray: #cacaca;
$dark-gray: #8a8a8a;
$black: #0a0a0a;
$white: #fefefe;
$body-background: $white;
$body-font-color: $black;
$body-font-family: worksans-medium, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
$body-antialiased: true;
$global-margin: 2rem;
$global-padding: 1rem;
$global-position: 1rem;
$global-weight-normal: normal;
$global-weight-bold: bold;
$global-radius: 0;
$global-radius-archive: 2rem;
$global-menu-padding: 0.7rem 1rem;
$global-menu-nested-margin: 1rem;
$global-text-direction: ltr;
$global-flexbox: true;
$global-prototype-breakpoints: false;
$global-button-cursor: auto;
$global-color-pick-contrast-tolerance: 0;
$print-transparent-backgrounds: true;
$print-hrefs: true;
@include add-foundation-colors;
// 2. Breakpoints
// --------------
$breakpoints: (
small: 0,
medium: 640px,
large: 1024px,
xlarge: 1200px,
xxlarge: 1440px,
);
$breakpoints-hidpi: (
hidpi-1: 1,
hidpi-1-5: 1.5,
hidpi-2: 2,
retina: 2,
hidpi-3: 3
);
$print-breakpoint: large;
$breakpoint-classes: (small medium large);
// 3. The Grid
// -----------
$grid-row-width: $global-width;
$grid-column-count: 12;
$grid-column-gutter: (
small: 20px,
medium: 30px,
);
$grid-column-align-edge: true;
$grid-column-alias: 'columns';
$block-grid-max: 8;
// 4. Base Typography
// ------------------
$header-font-family: $body-font-family;
$header-font-weight: $global-weight-normal;
$header-font-style: normal;
$font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace;
$header-color: inherit;
$header-lineheight: 1.4;
$header-margin-bottom: 0.5rem;
$header-styles: (
small: (
'h1': ('font-size': 36),
'h2': ('font-size': 30),
'h3': ('font-size': 23),
'h4': ('font-size': 18),
'h5': ('font-size': 17),
'h6': ('font-size': 16),
),
medium: (
'h1': ('font-size': 58),
'h2': ('font-size': 52),
'h3': ('font-size': 40),
'h4': ('font-size': 25),
'h5': ('font-size': 20),
'h6': ('font-size': 16),
),
);
$header-text-rendering: optimizeLegibility;
$small-font-size: 80%;
$header-small-font-color: $dark-gray;
$paragraph-lineheight: 1.6;
$paragraph-margin-bottom: 1rem;
$paragraph-text-rendering: optimizeLegibility;
$enable-code-inline: true;
$anchor-color: $primary-color;
$anchor-color-hover: $primary-color;//scale-color($anchor-color, $lightness: -14%);
$anchor-text-decoration: none;
$anchor-text-decoration-hover: none;
$hr-width: $global-width;
$hr-border: 1px solid $medium-gray;
$hr-margin: rem-calc(20) auto;
$list-lineheight: $paragraph-lineheight;
$list-margin-bottom: $paragraph-margin-bottom;
$list-style-type: disc;
$list-style-position: outside;
$list-side-margin: 1.25rem;
$list-nested-side-margin: 1.25rem;
$defnlist-margin-bottom: 1rem;
$defnlist-term-weight: $global-weight-bold;
$defnlist-term-margin-bottom: 0.3rem;
$blockquote-color: $dark-gray;
$blockquote-padding: rem-calc(9 20 0 19);
$blockquote-border: 1px solid $medium-gray;
$enable-cite-block: true;
$keystroke-font: $font-family-monospace;
$keystroke-color: $black;
$keystroke-background: $light-gray;
$keystroke-padding: rem-calc(2 4 0);
$keystroke-radius: $global-radius;
$abbr-underline: 1px dotted $black;
// 5. Typography Helpers
// ---------------------
$lead-font-size: $global-font-size * 1.25;
$lead-lineheight: 1.6;
$subheader-lineheight: 1.4;
$subheader-color: $dark-gray;
$subheader-font-weight: $global-weight-normal;
$subheader-margin-top: 0.2rem;
$subheader-margin-bottom: 0.5rem;
$stat-font-size: 2.5rem;
$cite-color: $dark-gray;
$cite-font-size: rem-calc(13);
$cite-pseudo-content: '\2014 \0020';
$code-color: $black;
$code-font-family: $font-family-monospace;
$code-font-weight: $global-weight-normal;
$code-background: $light-gray;
$code-border: 1px solid $medium-gray;
$code-padding: rem-calc(2 5 1);
$code-block-padding: 1rem;
$code-block-margin-bottom: 1.5rem;
// 6. Abide
// --------
$abide-inputs: true;
$abide-labels: true;
$input-background-invalid: get-color(alert);
$form-label-color-invalid: get-color(alert);
$input-error-color: get-color(alert);
$input-error-font-size: rem-calc(12);
$input-error-font-weight: $global-weight-bold;
// 7. Accordion
// ------------
$accordion-background: $white;
$accordion-plusminus: true;
$accordion-plus-content: '\002B';
$accordion-minus-content: '\2013';
$accordion-title-font-size: rem-calc(12);
$accordion-item-color: $body-font-color;
$accordion-item-background-hover: none;
$accordion-item-padding: $global-padding*1.5 0;
$accordion-content-background: $white;
$accordion-content-border: none;
$accordion-content-color: $body-font-color;
$accordion-content-padding: $global-padding*1.5 0;
// 8. Accordion Menu
// -----------------
$accordionmenu-padding: $global-menu-padding;
$accordionmenu-nested-margin: $global-menu-nested-margin;
$accordionmenu-submenu-padding: $accordionmenu-padding;
$accordionmenu-arrows: true;
$accordionmenu-arrow-color: $primary-color;
$accordionmenu-item-background: null;
$accordionmenu-border: null;
$accordionmenu-submenu-toggle-background: null;
$accordion-submenu-toggle-border: $accordionmenu-border;
$accordionmenu-submenu-toggle-width: 40px;
$accordionmenu-submenu-toggle-height: $accordionmenu-submenu-toggle-width;
$accordionmenu-arrow-size: 6px;
// 9. Badge
// --------
$badge-background: $primary-color;
$badge-color: $white;
$badge-color-alt: $black;
$badge-palette: $foundation-palette;
$badge-padding: 0.3em;
$badge-minwidth: 2.1em;
$badge-font-size: 0.6rem;
// 10. Breadcrumbs
// ---------------
$breadcrumbs-margin: 0 0 $global-margin 0;
$breadcrumbs-item-font-size: rem-calc(11);
$breadcrumbs-item-color: $primary-color;
$breadcrumbs-item-color-current: $black;
$breadcrumbs-item-color-disabled: $medium-gray;
$breadcrumbs-item-margin: 0.75rem;
$breadcrumbs-item-uppercase: true;
$breadcrumbs-item-separator: true;
$breadcrumbs-item-separator-item: '/';
$breadcrumbs-item-separator-item-rtl: '\\';
$breadcrumbs-item-separator-color: $medium-gray;
// 11. Button
// ----------
$button-font-family: inherit;
$button-font-weight: null;
$button-font-variant: all-petite-caps;
$button-padding: $global-padding $global-padding*3;
$button-margin: 0;
$button-fill: solid;
$button-background: $primary-color;
$button-background-hover: scale-color($button-background, $lightness: -15%);
$button-color: $white;
$button-color-alt: $black;
$button-radius: $global-radius-archive;
$button-border: 1px solid transparent;
$button-hollow-border-width: 2px;
$button-sizes: (
tiny: 0.6rem,
small: 0.75rem,
default: 1.2rem,
large: 1.5rem,
);
$button-palette: $foundation-palette;
$button-opacity-disabled: 0.25;
$button-background-hover-lightness: -20%;
$button-hollow-hover-lightness: -50%;
$button-transition: background-color 0.25s ease-out, color 0.25s ease-out;
$button-responsive-expanded: false;
// 12. Button Group
// ----------------
$buttongroup-margin: 1rem;
$buttongroup-spacing: 1px;
$buttongroup-child-selector: '.button';
$buttongroup-expand-max: 6;
$buttongroup-radius-on-each: true;
// 13. Callout
// -----------
$callout-background: $white;
$callout-background-fade: 85%;
$callout-border: 1px solid rgba($black, 0.25);
$callout-margin: 0 0 1rem 0;
$callout-sizes: (
small: 0.5rem,
default: 1rem,
large: 3rem,
);
$callout-font-color: $body-font-color;
$callout-font-color-alt: $body-background;
$callout-radius: $global-radius;
$callout-link-tint: 30%;
// 14. Card
// --------
$card-background: unset;
$card-font-color: $body-font-color;
$card-divider-background: $light-gray;
$card-border: none;
$card-shadow: none;
$card-border-radius: $global-radius;
$card-padding: $global-padding*4;
$card-margin-bottom: $global-margin*2;
// 15. Close Button
// ----------------
$closebutton-position: right top;
$closebutton-z-index: 10;
$closebutton-default-size: medium;
$closebutton-offset-horizontal: (
small: 0.66rem,
medium: 1rem,
);
$closebutton-offset-vertical: (
small: 0.33em,
medium: 0.5rem,
);
$closebutton-size: (
small: 1.5em,
medium: 2em,
);
$closebutton-lineheight: 1;
$closebutton-color: $dark-gray;
$closebutton-color-hover: $black;
// 16. Drilldown
// -------------
$drilldown-transition: transform 0.15s linear;
$drilldown-arrows: true;
$drilldown-padding: $global-menu-padding;
$drilldown-nested-margin: 0;
$drilldown-background: $white;
$drilldown-submenu-padding: $drilldown-padding;
$drilldown-submenu-background: $white;
$drilldown-arrow-color: $primary-color;
$drilldown-arrow-size: 6px;
// 17. Dropdown
// ------------
$dropdown-padding: 1rem;
$dropdown-background: $body-background;
$dropdown-border: none;//1px solid $medium-gray;
$dropdown-font-size: 1rem;
$dropdown-width: 100%;
$dropdown-radius: $global-radius;
$dropdown-sizes: (
tiny: 100px,
small: 200px,
large: 400px,
);
// 18. Dropdown Menu
// -----------------
$dropdownmenu-arrows: true;
$dropdownmenu-arrow-color: $body-font-color;//$anchor-color;
$dropdownmenu-arrow-size: 6px;
$dropdownmenu-arrow-padding: 1.5rem;
$dropdownmenu-min-width: 100%;//200px;
$dropdownmenu-background: null;
$dropdownmenu-submenu-background: $dropdown-background;
$dropdownmenu-padding: $global-menu-padding;
$dropdownmenu-nested-margin: 0;
$dropdownmenu-submenu-padding: $dropdownmenu-padding;
$dropdownmenu-border: none; //1px solid $medium-gray;
$dropdown-menu-item-color-active: get-color(primary);
$dropdown-menu-item-background-active: transparent;
// 19. Flexbox Utilities
// ---------------------
$flex-source-ordering-count: 6;
$flexbox-responsive-breakpoints: true;
// 20. Forms
// ---------
$fieldset-border: 1px solid $medium-gray;
$fieldset-padding: rem-calc(20);
$fieldset-margin: rem-calc(18 0);
$legend-padding: rem-calc(0 3);
$form-spacing: rem-calc(16);
$helptext-color: $black;
$helptext-font-size: rem-calc(13);
$helptext-font-style: italic;
$input-prefix-color: $black;
$input-prefix-background: $light-gray;
$input-prefix-border: 1px solid $medium-gray;
$input-prefix-padding: 1rem;
$form-label-color: $black;
$form-label-font-size: rem-calc(14);
$form-label-font-weight: $global-weight-normal;
$form-label-line-height: 1.8;
$select-background: $white;
$select-triangle-color: $dark-gray;
$select-radius: $global-radius;
$input-color: $black;
$input-placeholder-color: $medium-gray;
$input-font-family: inherit;
$input-font-size: rem-calc(16);
$input-font-weight: $global-weight-normal;
$input-line-height: $global-lineheight;
//$input-background: $white;
//$input-background-focus: $white;
$input-background: scale-color($primary-color, $lightness: 95%);
$input-background-focus: scale-color($primary-color, $lightness: 85%);
$input-background-disabled: $light-gray;
$input-border: 1px solid $medium-gray;
$input-border-focus: 1px solid $dark-gray;
$input-padding: $form-spacing / 2;
$input-shadow: inset 0 1px 2px rgba($black, 0.1);
$input-shadow-focus: 0 0 5px $medium-gray;
$input-cursor-disabled: not-allowed;
$input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
$input-number-spinners: true;
$input-radius: $global-radius;
$form-button-radius: $global-radius;
// 21. Label
// ---------
$label-background: $primary-color;
$label-color: $white;
$label-color-alt: $black;
$label-palette: $foundation-palette;
$label-font-size: 0.8rem;
$label-padding: 0.33333rem 0.5rem;
$label-radius: $global-radius;
// 22. Media Object
// ----------------
$mediaobject-margin-bottom: $global-margin;
$mediaobject-section-padding: $global-padding;
$mediaobject-image-width-stacked: 100%;
// 23. Menu
// --------
$menu-margin: 0;
$menu-nested-margin: $global-menu-nested-margin;
$menu-items-padding: $global-menu-padding;
$menu-simple-margin: 1rem;
$menu-item-color: $black;
$menu-item-color-active: $anchor-color;
$menu-item-color-alt-active: $black;
$menu-item-background-active: $white;
$menu-icon-spacing: 0.25rem;
$menu-state-back-compat: true;
$menu-centered-back-compat: true;
$menu-icons-back-compat: true;
$menu-anchor-color: $black;
$menu-anchor-color-hover: $anchor-color;
// 24. Meter
// ---------
$meter-height: 1rem;
$meter-radius: $global-radius;
$meter-background: $medium-gray;
$meter-fill-good: $success-color;
$meter-fill-medium: $warning-color;
$meter-fill-bad: $alert-color;
// 25. Off-canvas
// --------------
$offcanvas-sizes: (
small: 250px,
);
$offcanvas-vertical-sizes: (
small: 250px,
);
$offcanvas-background: $light-gray;
$offcanvas-shadow: 0 0 10px rgba($black, 0.7);
$offcanvas-inner-shadow-size: 20px;
$offcanvas-inner-shadow-color: rgba($black, 0.25);
$offcanvas-overlay-zindex: 11;
$offcanvas-push-zindex: 12;
$offcanvas-overlap-zindex: 13;
$offcanvas-reveal-zindex: 12;
$offcanvas-transition-length: 0.5s;
$offcanvas-transition-timing: ease;
$offcanvas-fixed-reveal: true;
$offcanvas-exit-background: rgba($white, 0.25);
$maincontent-class: 'off-canvas-content';
// 26. Orbit
// ---------
$orbit-bullet-background: $medium-gray;
$orbit-bullet-background-active: $dark-gray;
$orbit-bullet-diameter: 1.2rem;
$orbit-bullet-margin: 0.1rem;
$orbit-bullet-margin-top: 0.8rem;
$orbit-bullet-margin-bottom: 0.8rem;
$orbit-caption-background: rgba($black, 0.5);
$orbit-caption-padding: 1rem;
$orbit-control-background-hover: rgba($black, 0.5);
$orbit-control-padding: 1rem;
$orbit-control-zindex: 10;
// 27. Pagination
// --------------
$pagination-font-size: rem-calc(14);
$pagination-margin-bottom: $global-margin;
$pagination-item-color: $black;
$pagination-item-padding: rem-calc(3 10);
$pagination-item-spacing: rem-calc(1);
$pagination-radius: $global-radius;
$pagination-item-background-hover: $light-gray;
$pagination-item-background-current: $primary-color;
$pagination-item-color-current: $white;
$pagination-item-color-disabled: $medium-gray;
$pagination-ellipsis-color: $black;
$pagination-mobile-items: false;
$pagination-mobile-current-item: false;
$pagination-arrows: true;
$pagination-arrow-previous: '\00AB';
$pagination-arrow-next: '\00BB';
// 28. Progress Bar
// ----------------
$progress-height: 1rem;
$progress-background: $medium-gray;
$progress-margin-bottom: $global-margin;
$progress-meter-background: $primary-color;
$progress-radius: $global-radius;
// 29. Prototype Arrow
// -------------------
$prototype-arrow-directions: (
down,
up,
right,
left
);
$prototype-arrow-size: 0.4375rem;
$prototype-arrow-color: $black;
// 30. Prototype Border-Box
// ------------------------
$prototype-border-box-breakpoints: $global-prototype-breakpoints;
// 31. Prototype Border-None
// -------------------------
$prototype-border-none-breakpoints: $global-prototype-breakpoints;
// 32. Prototype Bordered
// ----------------------
$prototype-bordered-breakpoints: $global-prototype-breakpoints;
$prototype-border-width: rem-calc(1);
$prototype-border-type: solid;
$prototype-border-color: $medium-gray;
// 33. Prototype Display
// ---------------------
$prototype-display-breakpoints: $global-prototype-breakpoints;
$prototype-display: (
inline,
inline-block,
block,
table,
table-cell
);
// 34. Prototype Font-Styling
// --------------------------
$prototype-font-breakpoints: $global-prototype-breakpoints;
$prototype-wide-letter-spacing: rem-calc(4);
$prototype-font-normal: $global-weight-normal;
$prototype-font-bold: $global-weight-bold;
// 35. Prototype List-Style-Type
// -----------------------------
$prototype-list-breakpoints: $global-prototype-breakpoints;
$prototype-style-type-unordered: (
disc,
circle,
square
);
$prototype-style-type-ordered: (
decimal,
lower-alpha,
lower-latin,
lower-roman,
upper-alpha,
upper-latin,
upper-roman
);
// 36. Prototype Overflow
// ----------------------
$prototype-overflow-breakpoints: $global-prototype-breakpoints;
$prototype-overflow: (
visible,
hidden,
scroll
);
// 37. Prototype Position
// ----------------------
$prototype-position-breakpoints: $global-prototype-breakpoints;
$prototype-position: (
static,
relative,
absolute,
fixed
);
$prototype-position-z-index: 975;
// 38. Prototype Rounded
// ---------------------
$prototype-rounded-breakpoints: $global-prototype-breakpoints;
$prototype-border-radius: rem-calc(3);
// 39. Prototype Separator
// -----------------------
$prototype-separator-breakpoints: $global-prototype-breakpoints;
$prototype-separator-align: center;
$prototype-separator-height: rem-calc(2);
$prototype-separator-width: 3rem;
$prototype-separator-background: $primary-color;
$prototype-separator-margin-top: $global-margin;
// 40. Prototype Shadow
// --------------------
$prototype-shadow-breakpoints: $global-prototype-breakpoints;
$prototype-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),
0 2px 10px 0 rgba(0,0,0,.12);
// 41. Prototype Sizing
// --------------------
$prototype-sizing-breakpoints: $global-prototype-breakpoints;
$prototype-sizing: (
width,
height
);
$prototype-sizes: (
25: 25%,
50: 50%,
75: 75%,
100: 100%
);
// 42. Prototype Spacing
// ---------------------
$prototype-spacing-breakpoints: $global-prototype-breakpoints;
$prototype-spacers-count: 3;
// 43. Prototype Text-Decoration
// -----------------------------
$prototype-decoration-breakpoints: $global-prototype-breakpoints;
$prototype-text-decoration: (
overline,
underline,
line-through,
);
// 44. Prototype Text-Transformation
// ---------------------------------
$prototype-transformation-breakpoints: $global-prototype-breakpoints;
$prototype-text-transformation: (
lowercase,
uppercase,
capitalize
);
// 45. Prototype Text-Utilities
// ----------------------------
$prototype-utilities-breakpoints: $global-prototype-breakpoints;
$prototype-text-overflow: ellipsis;
// 46. Responsive Embed
// --------------------
$responsive-embed-margin-bottom: rem-calc(16);
$responsive-embed-ratios: (
default: 16 by 9,
standard: 4 by 3,
widescreen: 16 by 9,
classicfilm: 3 by 2,
);
// 47. Reveal
// ----------
$reveal-background: $white;
$reveal-width: 600px;
$reveal-max-width: $global-width;
$reveal-padding: $global-padding;
$reveal-border: 1px solid $medium-gray;
$reveal-radius: $global-radius;
$reveal-zindex: 1005;
$reveal-overlay-background: rgba($black, 0.45);
// 48. Slider
// ----------
$slider-width-vertical: 0.5rem;
$slider-transition: all 0.2s ease-in-out;
$slider-height: 0.5rem;
$slider-background: $light-gray;
$slider-fill-background: $medium-gray;
$slider-handle-height: 1.4rem;
$slider-handle-width: 1.4rem;
$slider-handle-background: $primary-color;
$slider-opacity-disabled: 0.25;
$slider-radius: $global-radius;
// 49. Switch
// ----------
$switch-background: $medium-gray;
$switch-background-active: $primary-color;
$switch-height: 2rem;
$switch-height-tiny: 1.5rem;
$switch-height-small: 1.75rem;
$switch-height-large: 2.5rem;
$switch-radius: $global-radius;
$switch-margin: $global-margin;
$switch-paddle-background: $white;
$switch-paddle-offset: 0.25rem;
$switch-paddle-radius: $global-radius;
$switch-paddle-transition: all 0.25s ease-out;
$switch-opacity-disabled: .5;
$switch-cursor-disabled: not-allowed;
// 50. Table
// ---------
$table-background: $white;
$table-color-scale: 5%;
$table-border: 1px solid smart-scale($table-background, $table-color-scale);
$table-padding: rem-calc(8 10 10);
$table-hover-scale: 2%;
$table-row-hover: darken($table-background, $table-hover-scale);
$table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
$table-is-striped: true;
$table-striped-background: smart-scale($table-background, $table-color-scale);
$table-stripe: even;
$table-head-background: smart-scale($table-background, $table-color-scale / 2);
$table-head-row-hover: darken($table-head-background, $table-hover-scale);
$table-foot-background: smart-scale($table-background, $table-color-scale);
$table-foot-row-hover: darken($table-foot-background, $table-hover-scale);
$table-head-font-color: $body-font-color;
$table-foot-font-color: $body-font-color;
$show-header-for-stacked: false;
$table-stack-breakpoint: medium;
// 51. Tabs
// --------
$tab-margin: 0;
$tab-background: $white;
$tab-color: $primary-color;
$tab-background-active: $light-gray;
$tab-active-color: $primary-color;
$tab-item-font-size: rem-calc(12);
$tab-item-background-hover: $white;
$tab-item-padding: 1.25rem 1.5rem;
$tab-content-background: $white;
$tab-content-border: $light-gray;
$tab-content-color: $body-font-color;
$tab-content-padding: 1rem;
// 52. Thumbnail
// -------------
$thumbnail-border: 4px solid $white;
$thumbnail-margin-bottom: $global-margin;
$thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
$thumbnail-transition: box-shadow 200ms ease-out;
$thumbnail-radius: $global-radius;
// 53. Title Bar
// -------------
$titlebar-background: $white;
$titlebar-color: $black;
$titlebar-padding: 0.5rem;
$titlebar-text-font-weight: bold;
$titlebar-icon-color: $black;
$titlebar-icon-color-hover: $medium-gray;
$titlebar-icon-spacing: 0.25rem;
// 54. Tooltip
// -----------
$has-tip-cursor: help;
$has-tip-font-weight: $global-weight-bold;
$has-tip-border-bottom: dotted 1px $dark-gray;
$tooltip-background-color: $black;
$tooltip-color: $white;
$tooltip-padding: 0.75rem;
$tooltip-max-width: 10rem;
$tooltip-font-size: $small-font-size;
$tooltip-pip-width: 0.75rem;
$tooltip-pip-height: $tooltip-pip-width * 0.866;
$tooltip-radius: $global-radius;
// 55. Top Bar
// -----------
$topbar-padding: 0.5rem;
$topbar-background: $light-gray;
$topbar-submenu-background: $topbar-background;
$topbar-title-spacing: 0.5rem 1rem 0.5rem 0;
$topbar-input-width: 200px;
$topbar-unstack-breakpoint: medium;
// 56. Xy Grid
// -----------
$xy-grid: true;
$grid-container: $global-width;
$grid-columns: 12;
$grid-margin-gutters: (
small: 20px,
medium: 30px
);
$grid-padding-gutters: $grid-margin-gutters;
$grid-container-padding: $grid-padding-gutters;
$grid-container-max: $global-width;
$xy-block-grid-max: 8;

114
dist/assets/scss/app.scss vendored Normal file
View File

@ -0,0 +1,114 @@
@charset 'utf-8';
// foundation styles
@import 'settings';
@import 'foundation';
@import 'motion-ui';
// Global styles
@include foundation-global-styles;
@include foundation-forms;
@include foundation-typography;
// Grids (choose one)
@include foundation-xy-grid-classes;
// @include foundation-grid;
// @include foundation-flex-grid;
// Generic components
@include foundation-button;
@include foundation-button-group;
@include foundation-close-button;
@include foundation-label;
//@include foundation-progress-bar;
//@include foundation-slider;
//@include foundation-switch;
@include foundation-table;
// Basic components
@include foundation-badge;
@include foundation-breadcrumbs;
@include foundation-callout;
@include foundation-card;
@include foundation-dropdown;
@include foundation-pagination;
@include foundation-tooltip;
// Containers
@include foundation-accordion;
@include foundation-media-object;
//@include foundation-orbit;
@include foundation-responsive-embed;
@include foundation-tabs;
@include foundation-thumbnail;
// Menu-based containers
@include foundation-menu;
@include foundation-menu-icon;
@include foundation-accordion-menu;
@include foundation-drilldown-menu;
@include foundation-dropdown-menu;
// Layout components
@include foundation-off-canvas;
@include foundation-reveal;
@include foundation-sticky;
@include foundation-title-bar;
@include foundation-top-bar;
// Helpers
@include foundation-float-classes;
@include foundation-flex-classes;
@include foundation-visibility-classes;
// @include foundation-prototype-classes;
// Motion UI
@include motion-ui-transitions;
@include motion-ui-animations;
// arcHIVE styles
// global project styles
@import "global/wp-overrides"; //errors
@import "global/wp-admin"; //errors
@import "global/typography";
@import "global/gutenberg";
@import "global/colors";
@import "global/branding";
@import "global/accessibility";
// Modules
@import "modules/navigation";
@import "modules/header";
@import "modules/footer";
//@import "modules/editor-syle";
@import "modules/content";
// Componentes
@import "components/links";
@import "components/featured-image";
@import "components/dividers";
@import "components/cards";
@import "components/buttons";
@import "components/accordion";
// Templates
//@import "templates/front";
// Vendors
//
// fontawesome as shown here:
// https://stackoverflow.com/questions/49195144/add-font-awesome-to-gulp-project-correctly#51491927
// 1. install fortawesome
// npm install --save-dev @fortawesome/fontawesome-free
// 2. uncomment these lines
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/fontawesome";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/brands";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/regular";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/solid";
@import "../../../node_modules/@fortawesome/fontawesome-free/scss/v4-shims";
// 3. add this to gulp
// gulp.task('icons', function() {
// return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/*')
// .pipe(gulp.dest(dist+'/assets/webfonts/'));
// });

View File

@ -0,0 +1,14 @@
.accordion-item {
border-bottom: 1px solid $body-font-color;
}
.accordion-title {
ul,ol {
list-style: none;
@include xy-grid;
}
li {
display:inline;
@include xy-cell(3);
text-align:left;
}
}

View File

@ -0,0 +1,25 @@
button,.button {
min-width: 20rem;
}
.hero {
button,.button {
min-width: 20vw;
color: $button-color-alt;
font-size: $global-font-size*1.3;
border-color: $button-color-alt;
border-radius: 4rem;
&:hover{
color: $anchor-color;
border-color: $anchor-color;
}
}
}
//.dropdown.menu{
// .button{
// min-width: unset;
// a {
// padding: 0.5rem;
// }
// }
//}

View File

@ -0,0 +1,3 @@
.card {
padding: $global-padding;
}

View File

@ -0,0 +1,4 @@
.dotted {
border-style: dashed;
margin: 2rem 0;
}

View File

@ -0,0 +1,14 @@
.featured-hero {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: rem-calc(100);
@include breakpoint(medium) {
height: rem-calc(200);
}
@include breakpoint(xlarge) {
height: rem-calc(400);
}
}

89
dist/assets/scss/components/_forms.scss vendored Normal file
View File

@ -0,0 +1,89 @@
// search elements
.search{
.input-group {
position: relative;
border-radius: 4rem;
overflow: hidden;
padding: 0;
margin: 0;
.appear {
right: 0;
position: absolute;
height: 100%;
padding: 0.3rem 1rem;
}
}
.input-group * {
margin: 0;
}
.button{
border-color: $primary-color;
}
.appear{
display:none;
}
input{
&:active{
border-color: $primary-color;
background-color: $input-background-focus;
}
&:focus,&:focus-within{
border-color: $primary-color;
background-color: $input-background;
}
&:not(:placeholder-shown) {
border:none;
background-color: $input-background-focus;
position: relative;
padding-right: $global-padding * 9;
+ .appear {
display: block;
background-color: scale-color($input-background-focus, $lightness: -20%);
z-index: 2;
&:hover {
color: $white;
background-color: $primary-color;
}
}
}
}
.hollow {
border-color: $primary-color;
color: $primary-color;
&::after {
}
&::placeholder {
color: scale-color($primary-color, $lightness: -20%);
}
&:hover {
background-color: scale-color($primary-color, $lightness: 95%);
}
&:active {
background-color: scale-color($primary-color, $lightness: 85%);
}
}
}
//search block size in content
article,.omekas-entry-content {
.search{
@include xy-grid();
.input-group {
@include breakpoint(small){
@include xy-cell (12);
margin-left: auto;
margin-right: auto;
}
@include breakpoint(medium){
@include xy-cell (6);
margin-left: auto;
margin-right: auto;
}
@include breakpoint(large){
@include xy-cell (4);
margin-left: auto;
margin-right: auto;
}
}
}
}

View File

@ -0,0 +1,8 @@
// Apply outline styles only when input method is keyboard
// remove :focus style via What Input using progressive enhancement
// so :focus isn't left broken if JavaScript fails
[data-whatinput="mouse"] a:focus, button:focus
[data-whatinput="touch"] a:focus, button:focus {
outline: none;
}

86
dist/assets/scss/editor.scss vendored Normal file
View File

@ -0,0 +1,86 @@
/*!
* Gutenberg Editor Styles
*/
/** === Includes === */
@charset 'utf-8';
@import 'settings';
@import 'foundation';
@include foundation-typography;
@include foundation-button;
@include foundation-table;
/** === Content Width === */
.wp-block {
width: calc(100vw - (2 * 10));
@each $breakpoint, $size in $grid-margin-gutters {
@include breakpoint($breakpoint) {
width: calc(100vw - ($size));
}
}
}
/** === Base Typography === */
body {
font-size: $global-font-size;
font-family: $body-font-family;
color: $body-font-color;
}
/** === Post Title === */
.editor-post-title__block .editor-post-title__input{
@extend h1;
}
/** === Button === */
.wp-block-button {
// add general foundation button styling to button in editor
.wp-block-button__link {
@extend .button;
}
// add special styling for squared buttons
&.is-style-squared .wp-block-button__link {
border-radius: 0;
}
// add outline styles
&.is-style-outline .wp-block-button__link{
@extend .hollow;
}
// set transparent background to block for outline button
&.is-style-outline,
&.is-style-outline:hover,
&.is-style-outline:focus,
&.is-style-outline:active {
background: transparent;
}
}
/** === File === */
.wp-block-file__button{
@include button();
}
/** === Pullquote === */
.wp-block-paragraph.has-background{
padding: rem-calc(20px 30px);
}
/** === Table === */
.wp-block-table td{
border: none;
}
/** === Latest Posts grid view === */
.wp-block-latest-posts.is-grid{
list-style: none;
}

View File

@ -0,0 +1,29 @@
// Text meant only for screen readers. Addresses part of theme-check issue #840.
// https://github.com/Automattic/_s/blob/master/style.css
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; // Above WP toolbar.
}

29
dist/assets/scss/global/_branding.scss vendored Normal file
View File

@ -0,0 +1,29 @@
.brand-logo,.site-brand {
.site-name,.site-description {
display: none;
}
&::before {
content: '';
display:inline-block;
margin-top:-$global-padding;
width: 100%;
height: $global-padding*5;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
&.archive{
&::before {
max-width: 10rem;
background-image: url('../img/ARC-HIVE-logo.svg');
}
}
&.eu{
&::before {
max-width: 15rem;
//background-image: url('../img/eu_flag_creative_europe_co_funded_black_right.svg');
background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg');
//background-image: url('../img/rechts_co-funded-by-the-creative-europe-media-programme-of-the-european-union-flag.png');
}
}
}

12
dist/assets/scss/global/_colors.scss vendored Normal file
View File

@ -0,0 +1,12 @@
$stone-grey: #CCCCCC;
$acid-green: #69E344;
$bubblegum-pink: #F096F9;
$desert-red: #D75930;
$mustard-yellow: #F5C042;
$beach-blue: #5CC8D1;
$hyperlink-blue: #0000DD;
$bloody-red: #D32D1F;
$mid-grey: #808080;
$antracite-grey: #333333;
$forest-green: #1E6041;
$raspberry-purple: #54367B;

65
dist/assets/scss/global/_gutenberg.scss vendored Normal file
View File

@ -0,0 +1,65 @@
/*
Frontend styles for gutenberg blocks
*/
/** === Base Color Palatte === */
@each $color, $code in $foundation-palette {
.has-#{$color}-background-color {
background-color: $code;
}
.has-#{$color}-color {
color: $code;
}
}
/** === Button === */
.wp-block-button {
// add general foundation button styling
.wp-block-button__link {
@extend .button;
@each $color, $code in $foundation-palette {
&.has-#{$color}-background-color {
background-color: $code;
}
&.has-#{$color}-color {
color: $code;
}
}
}
// add special styling for squared buttons
&.is-style-squared .wp-block-button__link {
border-radius: 0;
}
// add outline styles
&.is-style-outline .wp-block-button__link{
@extend .hollow;
}
// set transparent background to block for outline button
&.is-style-outline,
&.is-style-outline:hover,
&.is-style-outline:focus,
&.is-style-outline:active {
// background: transparent;
.wp-block-button__link{
// background: transparent;
}
}
}
/** === File === */
.wp-block-file .wp-block-file__button{
@include button();
}
/** === Image === */
.wp-block-image {
margin: 0;
}

View File

@ -0,0 +1,44 @@
@font-face {
font-family: 'worksans-medium';
src: url('../fonts/WorkSans-Medium.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'worksans-mediumitalic';
src: url('../fonts/WorkSans-MediumItalic.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@mixin font-worksans-medium {
font-face: worksans-medium, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: normal;
}
@mixin font-worksans-mediumitalic {
font-face: worksans-mediumitalic, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: normal;
}
//
// mods on fonts and typography
// not in foundation variables
// -----------------------------
//h1,h2,h3,h4,h5,h6,
//.h1,.h2,.h3,.h4,.h4,.h5,.h6,
//button,.button,
//header nav,
//.hero .claim
//{
// font-variant:all-small-caps;
//}
//
//
//h1,h2,h3,h4,h5,h6,
//.h1,.h2,.h3,.h4,.h4,.h5,.h6 {
// a {
// color: $black;
// }
//}

23
dist/assets/scss/global/_wp-admin.scss vendored Normal file
View File

@ -0,0 +1,23 @@
// Fix the issue where the WP admin-bar overlaps the mobile menu
#wpadminbar {
position: fixed !important;
}
// Make sure that the WP admin-bar does not overlap Foundation components
body.admin-bar {
// Offset sticky top bar
&.f-topbar-fixed {
.sticky.fixed {
margin-top: rem-calc(32);
}
}
// Offset mobile off-canvas menu
&.offcanvas {
.off-canvas.is-open {
top: rem-calc(46);
@include breakpoint(small) {
top: rem-calc(32);
}
}
}
}

View File

@ -0,0 +1,57 @@
//.wp-caption > figcaption {
// max-width: 100%;
// font-size: 0.8rem;
// color: #999;
// padding: 0.25rem 0;
//}
//
//p.wp-caption-text{
// font-size:90%;
// color: #666;
// padding:rem-calc(10) 0;
//}
//
//.alignleft {
// float: left;
// padding-right: 1rem;
// margin: 0;
//}
//
//.alignright {
// float: right;
// padding-left: 1rem;
// margin: 0;
//}
//
//.aligncenter {
// display: block;
// margin-left: auto;
// margin-right: auto;
//}
//
//.gallery {
// @include xy-grid;
// @include xy-gutters($negative: true);
// @for $i from 1 through 9 {
// &.gallery-columns-#{$i} {
// @include xy-grid-layout(2, '.gallery-item', true);
// }
// @include breakpoint(medium){
// &.gallery-columns-#{$i} {
// @include xy-grid-layout(4, '.gallery-item', true, (small: 30px));
// }
// }
// @include breakpoint(large) {
// &.gallery-columns-#{$i} {
// @include xy-grid-layout($i, '.gallery-item', true, (small: 30px));
// }
// }
// }
// .gallery-icon > a {
// @include thumbnail;
// @include thumbnail-link;
// }
// .gallery-icon > img {
// @include thumbnail;
// }
//}

360
dist/assets/scss/modules/_content.scss vendored Normal file
View File

@ -0,0 +1,360 @@
//content {
// general styles
//----------------
//
// mods on fonts and typography
// not in foundation variables
// -----------------------------
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h4,.h5,.h6,
button,.button,
header nav,
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h4,.h5,.h6 {
font-variant:all-small-caps;
a {
color: $body-font-color;
}
}
.excerpt,.post-excerpt{
a {
color: $body-font-color;
&:hover {
p {
color: $anchor-color;
}
}
}
}
//
// main block
//--------------
main {
article {
@include xy-grid;
header {
@include xy-cell(12);
.entry-title {
width: 100%;
text-align: center;
}
}
.entry-content {
@include breakpoint(small){
@include xy-cell(12);
padding: $global-padding*2 ;
margin:0 auto;
}
@include breakpoint(medium){
@include xy-cell(12);
padding: $global-padding*2 $global-padding*3;
max-width: 50rem;
margin:0 auto;
}
@include breakpoint(xlarge){
@include xy-cell(12);
max-width: 50rem;
padding: $global-padding*2 $global-padding*3;
font-size: $global-font-size*1.2;
margin: 0 auto;
}
}
}
}
//
// category view and news
//--------------
.category-posts {
@include xy-grid;
header,main,aside {
@include breakpoint(small){
@include xy-cell(12);
@include flex;
@include flex-align(center,top);
padding-top: $global-padding*3;
}
@include breakpoint(medium){
}
}
main {
//@include xy-cell(12);
@include xy-grid;
article{
text-align:center;
@include card-container();
@include breakpoint(small){
@include xy-cell(12);
}
@include breakpoint(medium){
@include xy-cell(6);
}
@include breakpoint(large){
@include xy-cell(4);
}
figure {
@include breakpoint(small){
@include xy-cell(12);
height: 58vw;
max-width: 100%;
overflow: hidden;
background-image: url('../img/ARC-HIVE-logo.svg');
background-color: rgb(240,240,240);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
@include breakpoint(medium){
height: 28vw;
}
@include breakpoint(large){
height: 20vw;
}
}
.date {
height: 1rem;
padding-top: $global-padding*2;
}
.entry-title {
padding-top: $global-padding*2;
line-height: 0.7;
font-size: $global-font-size*1.5;
}
}
}
aside {
@include breakpoint(small){
padding-top:0;
padding-bottom: $global-padding*3;
}
@include breakpoint(medium){
padding-top: $global-padding*3;
padding-bottom: 0;
}
}
&.resources {
@include xy-grid;
header,main,aside {
}
main {
article{
@include breakpoint(small){
@include xy-cell(12);
}
@include breakpoint(medium){
@include xy-cell(1 of 3);
}
@include breakpoint(large){
@include xy-cell(1 of 5);
}
}
figure {
@include breakpoint(small){
}
@include breakpoint(medium){
height: 18vw;
}
@include breakpoint(large){
height: 10vw;
}
}
}
}
}
// end category-posts
//
// collections category
//--------------
.collections-list {
@include xy-grid;
header,main,aside {
@include xy-cell(12);
@include flex;
@include flex-align(center,top);
padding: $global-padding*3 0;
}
header {
border-top: 1px solid $body-font-color;
padding: $global-padding*4 0;
}
main {
@include xy-grid;
article{
text-align:center;
@include card-container();
@include breakpoint(small){
@include xy-cell();
}
@include breakpoint(medium){
}
@include breakpoint(large){
}
}
}
aside {
}
}
// end news & resources category
//
// partners
// for big announcemnts
//---------------------
.partners {
.entry-content {
max-width: unset;
p {
padding-left: 30vw;
padding-bottom: 2rem;
margin-bottom: 2rem;
&:after {
content: '';
display: inline-block;
border-bottom: 1px solid $body-font-color;
width: 100vw;
position: absolute;
left: 0;
padding-top: 2rem;
}
}
.alignleft {
margin: 0;
padding: 0;
}
.wp-block-image {
margin: 0;
}
}
}
//
// hero
// for big announcemnts
//---------------------
.hero {
.slides {
@include xy-grid();
border-top: 2px solid $primary-color;
.slide {
@include xy-grid;
&.widget {
display: flex;
align-content: center;
justify-content: center;
}
// &.widget_media_image {
// justify-content: unset;
// align-content: stretch;
// }
@include breakpoint(small){
width: 100vw;
margin: 0;
&.widget_text p,.textwidget {
padding: $global-padding * 2;
}
}
@include breakpoint(medium){
&.widget_text p,.textwidget {
max-width: 50rem;
margin:auto;
padding: $global-padding * 2;
font-size: $global-font-size*1.3;
}
}
@include breakpoint(large){
width: 50%;
height: calc((50vw*9)/16);
padding: 0;
margin: 0;
overflow:hidden;
a {
@include flex;
@include flex-align (center,middle);
}
img {
// max-width: unset !important;
height: 100% !important;
}
&.widget_text p,.textwidget {
font-size: $global-font-size*1.2;
padding: $global-padding * 2;
}
}
@include breakpoint(xlarge){
&.widget_text p,.textwidget {
font-size: $global-font-size*1.3;
padding: $global-padding*3;
}
}
@include breakpoint(xxlarge){
&.widget_text p,.textwidget {
font-size: $global-font-size*1.6;
padding: $global-padding*3;
}
}
&:nth-child(odd) {
background-color: $primary-color;
font-variant:all-small-caps;
* {
color: $white;
}
}
color: $white;
.logo {
@include breakpoint(medium){
max-width: 80%;
}
}
}
}
aside {
@include xy-grid();
background-color: $secondary-color;
nav {
@include xy-cell(auto);
@include flex;
@include flex-align(spaced,middle);
min-height: 6rem;
padding: $global-padding 0 ;
a {
color: $body-font-color;
}
.button {
justify-content:center;
}
}
}
//hero secondary
&.secondary {
border-top: none;
background-color: $secondary-color;
.slide{
figure {
background-color: unset;
}
}
}
}
//end hero
//}
// end content

View File

@ -0,0 +1,5 @@
body#tinymce{
height: auto; // Fix editor style bug
max-width: $grid-row-width; // Give the editor a max-width
padding: rem-calc(20) !important;
}

79
dist/assets/scss/modules/_footer.scss vendored Normal file
View File

@ -0,0 +1,79 @@
footer {
background-color: $secondary-color;
a {
color: $body-font-color;
&:hover {
color: $primary-color;
}
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6,
p,ul,ol,li {
margin: 0;
}
ul,ol {
list-style: none;
li {
float:left;
padding-right: $global-padding;
}
}
.clear.clearfix {
width: 100%;
}
.logo {
}
.site-brand,.brand-logo {
&.archive{
&::before {
margin-top:unset;
}
}
&.eu {
&::before {
margin-top:unset;
max-width:100%;
max-height: 4rem;
}
}
}
.copyright,.legal-credits {
font-size: $global-font-size*0.8;
}
.subsection {
@include breakpoint(small) {
@include xy-grid;
@include flex;
@include flex-align(left,bottom);
border-top: 1px solid black;
padding: $global-padding;
font-size: $global-font-size * 0.8;
&:first-child {
//padding-top: $global-padding*3;
}
.co-founded {
text-align:right;
}
}
@include breakpoint(medium) {
font-size: $global-font-size;
}
aside {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(3);
}
&.double {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(6);
}
}
}
}
}

48
dist/assets/scss/modules/_header.scss vendored Normal file
View File

@ -0,0 +1,48 @@
header {
@include xy-grid();
@include xy-gutters(0);
main {
@include breakpoint(small){
@include xy-cell(12);
@include flex-align(center, middle);
padding: $global-padding*2 $global-padding;
min-width: 14rem;
text-align: center;
}
@include breakpoint(medium){
@include xy-cell(shrink);
@include flex-align(left, middle);
text-align: unset;
}
}
nav {
@include breakpoint(small){
@include xy-cell(12);
@include flex;
@include flex-align(center, middle);
a, button {
color: $black;
&:hover {
color: $anchor-color;
}
}
menu {
margin: 0;
padding: 0;
font-size: 0.8rem;
}
}
@include breakpoint(medium){
@include xy-cell(auto);
@include flex;
@include flex-align(right, middle);
menu {
margin: inherit;
padding: inherit;
font-size: $global-font-size*1.5;
}
}
}
}

View File

@ -0,0 +1,29 @@
// navigation scss
//.menu {
// background-color: rgba(100,250,100,1);
// li {
// background-color: rgba(250,250,100,1);
// padding: 0.7rem 1rem;
// a {
// background-color: rgba(250,100,250,1);
// }
// }
//}
.dropdown.menu {
li,.button {
min-width: unset;
margin:0;
padding:0;
}
.button {
background-color:$input-background;
}
}
.is-dropdown-submenu {
font-size: $dropdown-font-size * 0.95;
min-width: 10rem;
box-shadow: 0 3px 5px 3px rgba(200, 200, 200, 0.1);
}

201
dist/assets/scss/templates/_front.scss vendored Normal file
View File

@ -0,0 +1,201 @@
// Page header
.front-hero {
.marketing {
@include xy-grid-container(55rem);
@include xy-grid;
}
@include breakpoint(small) {
background: url('../images/demo/hero-bg-foundation-6-small.svg') bottom center;
background-size: cover;
background-position: bottom;
padding: rem-calc(65%) 0;
margin: 0 0 rem-calc(32);
height: auto;
position: relative;
text-align: left;
}
@include breakpoint(medium) {
background: url('../images/demo/hero-bg-foundation-6-large.svg') bottom center;
background-size: cover;
background-position: center;
height: rem-calc(685);
margin: 0 0 rem-calc(72);
}
.watch {
@include breakpoint(small) {
@include xy-cell(7);
}
@include breakpoint(medium) {
@include xy-cell(12);
}
a {
color: #B4C9D1;
cursor: pointer;
font-weight: 400;
margin-right: rem-calc(20);
}
a:hover {
color: #fff;
}
#stargazers {
:before {
content: "\f09b";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #B4C9D1;
margin-right: rem-calc(8);
}
}
#twitter {
:before {
content: "\f099";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
text-decoration: inherit;
color: #B4C9D1;
margin-right: rem-calc(8);
}
}
}
.tagline {
@include breakpoint(small) {
@include xy-cell(8);
}
@include breakpoint(medium) {
@include xy-cell(5);
padding-top: 6rem;
}
}
h1 {
color: #fff;
font-weight: 500;
@include breakpoint(small) {
font-size: 2.2rem;
}
@include breakpoint(medium) {
font-size: 2.875rem;
}
}
h4 {
color: #fefefe;
font-weight: 300;
font-size: 1.3125rem;
}
.download {
margin-top: rem-calc(20);
}
}
// Intro
.intro {
@include xy-grid-container;
@include xy-grid;
.fp-intro {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(10);
@include xy-cell-offset(1);
h2 {
font-weight: 300;
margin-bottom: 1.5rem;
}
h4 {
font-size: 1.125rem;
line-height: 1.6;
color: #777;
margin-bottom: 2rem;
}
}
}
}
// Section divider
.section-divider {
@include xy-grid-container;
@include xy-grid;
hr {
@include xy-cell(12);
@extend .dotted;
box-sizing: border-box;
}
}
// Benefits
.benefits {
@include xy-grid-container;
@include xy-grid;
text-align: center;
header {
@include xy-cell(12);
h2 {
font-weight: 300;
}
h4 {
font-size: 1.125rem;
line-height: 1.6;
color: #777;
}
}
.semantic,
.responsive,
.customizable,
.professional {
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(medium) {
@include xy-cell(3);
}
img {
padding: 1.25rem;
margin: 1rem auto 0 auto;
}
h3 {
color: #0a0a0a;
font-weight: 300;
font-size: 1.75rem;
}
p {
font-size: 0.9375rem;
}
}
.why-foundation {
@include xy-cell(12);
margin-top: 4rem;
}
}

View File

@ -0,0 +1,84 @@
.kitchen-sink-header {
@include xy-cell(12);
}
.kitchen-sink-components {
hr {
margin: 3rem 0;
}
@include breakpoint(small) {
@include xy-cell(12);
}
@include breakpoint(large) {
@include xy-cell(9);
}
}
.kitchen-sink-nav {
@include breakpoint(small) {
display: none;
}
@include breakpoint(large) {
@include xy-cell(3);
display: block;
float: right;
.docs-sub-menu {
font-size: 0.85rem;
margin-top: 1rem;
}
.docs-menu-title {
text-transform: uppercase;
font-size: 0.75rem;
color: $dark-gray;
font-weight: bold;
line-height: 1;
padding-left: 0.9rem;
margin-bottom: 0.5rem;
border-top: 1px solid $medium-gray;
margin-top: 1rem;
padding-top: 1.5rem;
}
.docs-toc {
width: 100%;
padding-left: 4rem;
padding-right: 1rem;
}
.docs-toc .active {
background: #2199e8;
color: white;
}
.docs-toc .docs-sub-menu:first-child .docs-menu-title {
margin-top: 0;
border-top: 0;
padding-top: 0;
}
}
}
.kitchen-sink-grid {
.grid-x {
background: #d6ecfa;
font-size: 12px;
line-height: 2rem;
margin-bottom: 1.5rem;
.cell,:nth-child(odd) {
background: #7bc1ef;
color: #0a0a0a;
}
.cell:nth-child(even) {
background: #1779ba;
color: #fefefe;
}
}
}

View File

@ -21,7 +21,7 @@ import autoprefixer from 'autoprefixer';
// added to have fontawesome support // added to have fontawesome support
gulp.task('icons', function() { gulp.task('icons', function() {
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/*') return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/*')
.pipe(gulp.dest(dist+'/assets/webfonts/')); .pipe(gulp.dest(dist+'/webfonts/'));
}); });
// end fontawesome // end fontawesome
@ -35,7 +35,7 @@ const PRODUCTION = !!(yargs.argv.production);
// Check for --development flag unminified with sourcemaps // Check for --development flag unminified with sourcemaps
const DEV = !!(yargs.argv.dev); const DEV = !!(yargs.argv.dev);
// Load settings from config.yml // Load settings from settings.yml
//const { BROWSERSYNC, COMPATIBILITY, REVISIONING, PATHS } = loadConfig(); //const { BROWSERSYNC, COMPATIBILITY, REVISIONING, PATHS } = loadConfig();
//const { PORT, UNCSS_OPTIONS, PATHS } = loadConfig(); //const { PORT, UNCSS_OPTIONS, PATHS } = loadConfig();
const { PORT, UNCSS_OPTIONS, PATHS, BROWSERSYNC, COMPATIBILITY, REVISIONING } = loadConfig(); const { PORT, UNCSS_OPTIONS, PATHS, BROWSERSYNC, COMPATIBILITY, REVISIONING } = loadConfig();
@ -76,49 +76,14 @@ function loadConfig() {
} }
// Delete the "dist" folder
// This happens every time a build starts
function clean(done) {
rimraf(PATHS.dist, done);
}
// Copy files out of the assets folder // Copy files out of the assets folder
// This task skips over the "images", "js", and "scss" folders, which are parsed separately // This task skips over the "images", "js", and "scss" folders, which are parsed separately
function copy() { function copy() {
return gulp.src(PATHS.assets) return gulp.src(PATHS.assets)
.pipe(gulp.dest(PATHS.dist + '/assets')); .pipe(gulp.dest(PATHS.dist + ''));
} }
// no need for panini/html files
//
// Copy page templates into finished HTML files
//function pages() {
// return gulp.src('src/pages/**/*.{html,hbs,handlebars}')
// .pipe(panini({
// root: 'src/pages/',
// layouts: 'src/layouts/',
// partials: 'src/partials/',
// data: 'src/data/',
// helpers: 'src/helpers/'
// }))
// .pipe(gulp.dest(PATHS.dist));
//}
// Load updated HTML templates and partials into Panini
//function resetPages(done) {
// panini.refresh();
// done();
//}
//
// no need for styleguide
//
// Generate a style guide from the Markdown content and HTML template in styleguide/
//function styleGuide(done) {
// sherpa('src/styleguide/index.md', {
// output: PATHS.dist + '/styleguide.html',
// template: 'src/styleguide/template.html'
// }, done);
//}
@ -146,9 +111,9 @@ function sass() {
.pipe($.postcss(postCssPlugins)) .pipe($.postcss(postCssPlugins))
.pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' }))) .pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
.pipe($.if(!PRODUCTION, $.sourcemaps.write())) .pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/css')) .pipe(gulp.dest(PATHS.dist + '/css'))
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest())) .pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
.pipe(gulp.dest(PATHS.dist + '/assets/css')) .pipe(gulp.dest(PATHS.dist + '/css'))
.pipe(browser.reload({ stream: true })); .pipe(browser.reload({ stream: true }));
} }
@ -183,7 +148,7 @@ function javascript() {
.on('error', e => { console.log(e); }) .on('error', e => { console.log(e); })
)) ))
.pipe($.if(!PRODUCTION, $.sourcemaps.write())) .pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/js')); .pipe(gulp.dest(PATHS.dist + '/js'));
} }
// Copy images to the "dist" folder // Copy images to the "dist" folder
@ -209,7 +174,7 @@ function images() {
] ]
}) })
]))) ])))
.pipe(gulp.dest(PATHS.dist + '/assets/images')); .pipe(gulp.dest(PATHS.dist + '/images'));
} }
function img() { function img() {
return gulp.src('src/assets/img/**/*') return gulp.src('src/assets/img/**/*')
@ -230,7 +195,7 @@ function img() {
] ]
}) })
]))) ])))
.pipe(gulp.dest(PATHS.dist + '/assets/img')); .pipe(gulp.dest(PATHS.dist + '/img'));
} }
// Create a .zip archive of the theme // Create a .zip archive of the theme
@ -244,46 +209,29 @@ function archive() {
.pipe(gulp.dest('packaged')); .pipe(gulp.dest('packaged'));
} }
// NOT needed in Omeka
// PHP Code Sniffer task // PHP Code Sniffer task
//gulp.task('phpcs', function() { gulp.task('phpcs', function() {
// return gulp.src(PATHS.phpcs) return gulp.src(PATHS.phpcs)
// .pipe($.phpcs({ .pipe($.phpcs({
// bin: 'wpcs/vendor/bin/phpcs', bin: 'wpcs/vendor/bin/phpcs',
// standard: './codesniffer.ruleset.xml', standard: './codesniffer.ruleset.xml',
// showSniffCode: true, showSniffCode: true,
// })) }))
// .pipe($.phpcs.reporter('log')); .pipe($.phpcs.reporter('log'));
//}); });
// NOT needed in Omeka
// PHP Code Beautifier task // PHP Code Beautifier task
//gulp.task('phpcbf', function () { gulp.task('phpcbf', function () {
// return gulp.src(PATHS.phpcs) return gulp.src(PATHS.phpcs)
// .pipe($.phpcbf({ .pipe($.phpcbf({
// bin: 'wpcs/vendor/bin/phpcbf', bin: 'wpcs/vendor/bin/phpcbf',
// standard: './codesniffer.ruleset.xml', standard: './codesniffer.ruleset.xml',
// warningSeverity: 0 warningSeverity: 0
// })) }))
// .on('error', log) .on('error', log)
// .pipe(gulp.dest('.')); .pipe(gulp.dest('.'));
//}); });
// NOT needed in Omeka
// Start a server with BrowserSync to preview the site in
//function server(done) {
// browser.init({
// server: PATHS.dist, port: PORT
// }, done);
//}
// NOT needed in Omeka
// Reload the browser with BrowserSync
//function reload(done) {
// browser.reload();
// done();
//}
// Watch for changes to static assets, pages, Sass, and JavaScript // Watch for changes to static assets, pages, Sass, and JavaScript
function watch() { function watch() {
@ -291,6 +239,8 @@ function watch() {
gulp.watch('src/assets/scss/**/*.scss', sass) gulp.watch('src/assets/scss/**/*.scss', sass)
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.')) .on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.')); .on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
// gulp.watch('src/assets/images/**/*').on('all', gulp.series(images, browser.reload));
// gulp.watch('src/assets/img/**/*').on('all', gulp.series(img, browser.reload));
gulp.watch('src/assets/{images,img}/**/*').on('all', gulp.series(images, browser.reload)); gulp.watch('src/assets/{images,img}/**/*').on('all', gulp.series(images, browser.reload));
gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload)); gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload));
// gulp.watch('**/*.php', reload) // gulp.watch('**/*.php', reload)
@ -306,7 +256,7 @@ function watch() {
// Build the "dist" folder by running all of the below tasks // Build the "dist" folder by running all of the below tasks
gulp.task('build', gulp.task('build',
gulp.series(clean, gulp.parallel(javascript, images, img, copy), sass)); gulp.series(gulp.parallel(javascript, images, img, copy), sass));
// Build the site, run the server, and watch for file changes // Build the site, run the server, and watch for file changes
gulp.task('default', gulp.task('default',

271
gulpfile.babel.js.bkp Normal file
View File

@ -0,0 +1,271 @@
'use strict';
import dateFormat from 'dateformat';
import log from 'fancy-log';
import colors from 'ansi-colors';
import plugins from 'gulp-load-plugins';
import yargs from 'yargs';
import browser from 'browser-sync';
import gulp from 'gulp';
import panini from 'panini';
import rimraf from 'rimraf';
import sherpa from 'style-sherpa';
import yaml from 'js-yaml';
import fs from 'fs';
import webpackStream from 'webpack-stream';
import webpack2 from 'webpack';
import named from 'vinyl-named';
import uncss from 'uncss';
import autoprefixer from 'autoprefixer';
// added to have fontawesome support
gulp.task('icons', function() {
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/*')
.pipe(gulp.dest(dist+'/assets/webfonts/'));
});
// end fontawesome
// Load all Gulp plugins into one variable
const $ = plugins();
// Check for --production flag
const PRODUCTION = !!(yargs.argv.production);
// Check for --development flag unminified with sourcemaps
const DEV = !!(yargs.argv.dev);
// Load settings from settings.yml
//const { BROWSERSYNC, COMPATIBILITY, REVISIONING, PATHS } = loadConfig();
//const { PORT, UNCSS_OPTIONS, PATHS } = loadConfig();
const { PORT, UNCSS_OPTIONS, PATHS, BROWSERSYNC, COMPATIBILITY, REVISIONING } = loadConfig();
// Check if file exists synchronously
function checkFileExists(filepath) {
let flag = true;
try {
fs.accessSync(filepath, fs.F_OK);
} catch(e) {
flag = false;
}
return flag;
}
// Load default or custom YML config file
function loadConfig() {
log('Loading config file...');
if (checkFileExists('config.yml')) {
// config.yml exists, load it
log(colors.bold(colors.cyan('config.yml')), 'exists, loading', colors.bold(colors.cyan('config.yml')));
let ymlFile = fs.readFileSync('config.yml', 'utf8');
return yaml.load(ymlFile);
} else if(checkFileExists('config-default.yml')) {
// config-default.yml exists, load it
log(colors.bold(colors.cyan('config.yml')), 'does not exist, loading', colors.bold(colors.cyan('config-default.yml')));
let ymlFile = fs.readFileSync('config-default.yml', 'utf8');
return yaml.load(ymlFile);
} else {
// Exit if config.yml & config-default.yml do not exist
log('Exiting process, no config file exists.');
log('Error Code:', err.code);
process.exit(1);
}
}
// Copy files out of the assets folder
// This task skips over the "images", "js", and "scss" folders, which are parsed separately
function copy() {
return gulp.src(PATHS.assets)
.pipe(gulp.dest(PATHS.dist + '/assets'));
}
// Compile Sass into CSS
// In production, the CSS is compressed
function sass() {
const postCssPlugins = [
// Autoprefixer
autoprefixer(),
// UnCSS - Uncomment to remove unused styles in production
// PRODUCTION && uncss.postcssPlugin(UNCSS_OPTIONS),
].filter(Boolean);
//return gulp.src('src/assets/scss/app.scss')
// if need editor for CMS backend uncoment below coment above
// we need editor.scss for the wordpress editor styles
return gulp.src(['src/assets/scss/app.scss','src/assets/scss/editor.scss'])
.pipe($.sourcemaps.init())
.pipe($.sass({
includePaths: PATHS.sass
})
.on('error', $.sass.logError))
.pipe($.postcss(postCssPlugins))
.pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
.pipe(browser.reload({ stream: true }));
}
let webpackConfig = {
mode: (PRODUCTION ? 'production' : 'development'),
module: {
rules: [
{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
presets: [ "@babel/preset-env" ],
compact: false
}
}
}
]
},
devtool: !PRODUCTION && 'source-map'
}
// Combine JavaScript into one file
// In production, the file is minified
function javascript() {
return gulp.src(PATHS.entries)
.pipe(named())
.pipe($.sourcemaps.init())
.pipe(webpackStream(webpackConfig, webpack2))
.pipe($.if(PRODUCTION, $.terser()
.on('error', e => { console.log(e); })
))
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
}
// Copy images to the "dist" folder
// In production, the images are compressed
function compressimages() {
}
function images() {
return gulp.src('src/assets/images/**/*')
.pipe($.if(PRODUCTION, $.imagemin([
//$.imagemin.jpegtran({
// progressive: true,
//}),
$.imagemin.optipng({
optimizationLevel: 5,
}),
$.imagemin.gifsicle({
interlaced: true,
}),
$.imagemin.svgo({
plugins: [
{cleanupAttrs: true},
{removeComments: true},
]
})
])))
.pipe(gulp.dest(PATHS.dist + '/assets/images'));
}
function img() {
return gulp.src('src/assets/img/**/*')
.pipe($.if(PRODUCTION, $.imagemin([
// $.imagemin.jpegtran({
// progressive: true,
// }),
$.imagemin.optipng({
optimizationLevel: 5,
}),
$.imagemin.gifsicle({
interlaced: true,
}),
$.imagemin.svgo({
plugins: [
{cleanupAttrs: true},
{removeComments: true},
]
})
])))
.pipe(gulp.dest(PATHS.dist + '/assets/img'));
}
// Create a .zip archive of the theme
function archive() {
var time = dateFormat(new Date(), "yyyy-mm-dd_HH-MM");
var pkg = JSON.parse(fs.readFileSync('./package.json'));
var title = pkg.name + '_' + time + '.zip';
return gulp.src(PATHS.package)
.pipe($.zip(title))
.pipe(gulp.dest('packaged'));
}
// PHP Code Sniffer task
gulp.task('phpcs', function() {
return gulp.src(PATHS.phpcs)
.pipe($.phpcs({
bin: 'wpcs/vendor/bin/phpcs',
standard: './codesniffer.ruleset.xml',
showSniffCode: true,
}))
.pipe($.phpcs.reporter('log'));
});
// PHP Code Beautifier task
gulp.task('phpcbf', function () {
return gulp.src(PATHS.phpcs)
.pipe($.phpcbf({
bin: 'wpcs/vendor/bin/phpcbf',
standard: './codesniffer.ruleset.xml',
warningSeverity: 0
}))
.on('error', log)
.pipe(gulp.dest('.'));
});
// Watch for changes to static assets, pages, Sass, and JavaScript
function watch() {
gulp.watch(PATHS.assets, copy);
gulp.watch('src/assets/scss/**/*.scss', sass)
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
// gulp.watch('src/assets/images/**/*').on('all', gulp.series(images, browser.reload));
// gulp.watch('src/assets/img/**/*').on('all', gulp.series(img, browser.reload));
gulp.watch('src/assets/{images,img}/**/*').on('all', gulp.series(images, browser.reload));
gulp.watch('src/assets/js/**/*.js').on('all', gulp.series(javascript, browser.reload));
// gulp.watch('**/*.php', reload)
// .on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
// .on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
// gulp.watch('src/assets/scss/**/*.scss').on('all', sass);
// gulp.watch('src/pages/**/*.html').on('all', gulp.series(pages, browser.reload));
// gulp.watch('src/{layouts,partials}/**/*.html').on('all', gulp.series(resetPages, pages, browser.reload));
// gulp.watch('src/data/**/*.{js,json,yml}').on('all', gulp.series(resetPages, pages, browser.reload));
// gulp.watch('src/helpers/**/*.js').on('all', gulp.series(resetPages, pages, browser.reload));
// gulp.watch('src/styleguide/**').on('all', gulp.series(styleGuide, browser.reload));
}
// Build the "dist" folder by running all of the below tasks
gulp.task('build',
//gulp.series(clean, gulp.parallel(javascript, images, img, copy), sass));
gulp.series(clean, gulp.parallel(javascript, images, copy), sass));
// Build the site, run the server, and watch for file changes
gulp.task('default',
//gulp.series('build', server, watch));
//no need of server, just watch
gulp.series('build', watch));
// Package task
gulp.task('package',
gulp.series('build', archive));

12
package-lock.json generated
View File

@ -1,5 +1,5 @@
{ {
"name": "arcHIVE-omeka-theme", "name": "arcHIVE-wp-theme",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
@ -6560,7 +6560,7 @@
"gulp-babel": { "gulp-babel": {
"version": "8.0.0", "version": "8.0.0",
"resolved": "https://registry.npmjs.org/gulp-babel/-/gulp-babel-8.0.0.tgz", "resolved": "https://registry.npmjs.org/gulp-babel/-/gulp-babel-8.0.0.tgz",
"integrity": "sha1-4NqW9PLsSojdOjAw9HbjirISbYc=", "integrity": "sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==",
"dev": true, "dev": true,
"requires": { "requires": {
"plugin-error": "^1.0.1", "plugin-error": "^1.0.1",
@ -6580,7 +6580,7 @@
"gulp-clean-css": { "gulp-clean-css": {
"version": "3.10.0", "version": "3.10.0",
"resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-3.10.0.tgz", "resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-3.10.0.tgz",
"integrity": "sha1-vM1GBe/xBL+kmAAUzEs8JMVxc20=", "integrity": "sha512-7Isf9Y690o/Q5MVjEylH1H7L8WeZ89woW7DnhD5unTintOdZb67KdOayRgp9trUFo+f9UyJtuatV42e/+kghPg==",
"dev": true, "dev": true,
"requires": { "requires": {
"clean-css": "4.2.1", "clean-css": "4.2.1",
@ -6899,7 +6899,7 @@
"gulp-postcss": { "gulp-postcss": {
"version": "8.0.0", "version": "8.0.0",
"resolved": "https://registry.npmjs.org/gulp-postcss/-/gulp-postcss-8.0.0.tgz", "resolved": "https://registry.npmjs.org/gulp-postcss/-/gulp-postcss-8.0.0.tgz",
"integrity": "sha1-jTdyzU0nvKVeyMtMjlduO95NxVA=", "integrity": "sha512-Wtl6vH7a+8IS/fU5W9IbOpcaLqKxd5L1DUOzaPmlnCbX1CrG0aWdwVnC3Spn8th0m8D59YbysV5zPUe1n/GJYg==",
"dev": true, "dev": true,
"requires": { "requires": {
"fancy-log": "^1.3.2", "fancy-log": "^1.3.2",
@ -7049,7 +7049,7 @@
"source-map": { "source-map": {
"version": "0.6.1", "version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true "dev": true
} }
} }
@ -9438,7 +9438,7 @@
"motion-ui": { "motion-ui": {
"version": "2.0.3", "version": "2.0.3",
"resolved": "https://registry.npmjs.org/motion-ui/-/motion-ui-2.0.3.tgz", "resolved": "https://registry.npmjs.org/motion-ui/-/motion-ui-2.0.3.tgz",
"integrity": "sha1-Oof4/qRRLWVMCCKgs0byPa3w0Lc=" "integrity": "sha512-f9xzh/hbZTUYjk4M7y1aDcsiPTfqUbuvCv/+If05TSIBEJMu3hGBU+YSe9csQPP7WBBHXxjossEygM/TJo2enw=="
}, },
"move-concurrently": { "move-concurrently": {
"version": "1.0.1", "version": "1.0.1",

View File

@ -1,8 +1,8 @@
{ {
"name": "arcHIVE-omeka-theme", "name": "arcHIVE-wp-theme",
"title": "arcHIVEomekaTheme", "title": "arcHIVEwordpressTheme",
"version": "1.0.0", "version": "1.0.0",
"description": "arcHIVE theme is a design by Oficina De Disseny converted into HTML5, CSS by vitrubio.net and PHP by Chris at gatopelao.org for Hangar.org", "description": "arcHIVE theme is a design by Oficina De Disseny converted into HTML5, CSS and PHP by vitrubio.net for Hangar.org",
"homepage": "https://arc-hive.zone", "homepage": "https://arc-hive.zone",
"license": "GPL v3", "license": "GPL v3",
"main": "gulpfile.babel.js", "main": "gulpfile.babel.js",
@ -10,7 +10,9 @@
"start": "gulp", "start": "gulp",
"dev": "gulp build --dev", "dev": "gulp build --dev",
"build": "gulp build --production", "build": "gulp build --production",
"package": "gulp package --production" "package": "gulp package --production",
"phpcs": "gulp phpcs",
"phpcbf": "gulp phpcbf"
}, },
"keywords": [ "keywords": [
"arcHIVE", "arcHIVE",
@ -69,9 +71,9 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://git.hangar.org/arcHIVE-tech/Arc-hive-omeka-theme.git" "url": "https://git.hangar.org/arcHIVE-tech/arcHIVE-wordpress-theme/src/branch/dev-foundationpress"
}, },
"bugs": { "bugs": {
"url": "https://git.hangar.org/arcHIVE-tech/Arc-hive-omeka-theme/issues" "url": "https://git.hangar.org/arcHIVE-tech/arcHIVE-wordpress-theme/issues"
} }
} }

View File

@ -1,77 +0,0 @@
{
"name": "arcHIVE-omeka-theme",
"version": "2.0.0",
"description": "arcHIVE theme is a design by Oficina De Disseny converted into HTML5, CSS and PHP by vitrubio.net and programmed by Chris for Hangar.org.",
"main": "gulpfile.babel.js",
"homepage": "https://arc-hive.zone",
"author": "tech@hangar.org",
"license": "GPL v3",
"scripts": {
"start": "gulp",
"build": "gulp build --production",
"package": "gulp package --production"
},
"keywords": [
"arcHIVE",
"FoundationPress",
"Omekas",
"semantic",
"mobile first",
"customizable",
"responsive"
],
"dependencies": {
"foundation-sites": "^6.7.4",
"jquery": "^3.6.0",
"motion-ui": "^2.0.3",
"what-input": "^5.2.10"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"@fortawesome/fontawesome-free": "^5.15.4",
"ansi-colors": "^1.1.0",
"autoprefixer": "^9.8.8",
"babel-loader": "^8.2.4",
"browser-sync": "^2.27.9",
"dateformat": "^3.0.3",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^3.3.1",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.5.2",
"gulp-extname": "^0.2.0",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-load-plugins": "^1.6.0",
"gulp-phpcbf": "^0.1.2",
"gulp-phpcs": "^3.1.0",
"gulp-postcss": "^8.0.0",
"gulp-rev": "^9.0.0",
"gulp-sass": "^4.1.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-terser": "^1.4.1",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.1.0",
"js-yaml": "^3.14.1",
"panini": "^1.7.2",
"rimraf": "^2.7.1",
"style-sherpa": "^1.0.0",
"uncss": "^0.17.3",
"vinyl-named": "^1.1.0",
"webpack": "^4.20.2",
"webpack-stream": "^5.2.1",
"yargs": "^16.2.0"
},
"repository": {
"type": "git",
"url": "https://git.hangar.org/arcHIVE-tech/Arc-hive-omeka-theme.git"
},
"bugs": {
"url": "https://git.hangar.org/arcHIVE-tech/Arc-hive-omeka-theme/issues"
},
"private": true
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

Some files were not shown because too many files have changed in this diff Show More