init
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Add Custom CSS to Customizer
|
||||
*/
|
||||
|
||||
function flatsome_enqueue_customizer_stylesheet() {
|
||||
$theme = wp_get_theme( get_template() );
|
||||
$version = $theme['Version'];
|
||||
|
||||
flatsome_enqueue_asset( 'flatsome-customizer-admin-js', 'admin/customizer-admin' );
|
||||
wp_enqueue_style( 'flatsome-header-builder-css', get_template_directory_uri() . '/assets/css/admin/admin-header-builder.css', NULL, $version, 'all' );
|
||||
wp_enqueue_style( 'flatsome-customizer-admin', get_template_directory_uri() . '/assets/css/admin/admin-customizer.css', NULL, $version, 'all' );
|
||||
}
|
||||
add_action( 'customize_controls_print_styles', 'flatsome_enqueue_customizer_stylesheet' );
|
||||
|
||||
function flatsome_customizer_live_preview() {
|
||||
$theme = wp_get_theme( 'flatsome' );
|
||||
$version = $theme['Version'];
|
||||
|
||||
flatsome_enqueue_asset( 'flatsome-customizer-frontend-js', 'admin/customizer-frontend' );
|
||||
wp_enqueue_style( 'flatsome-customizer-preview', get_template_directory_uri() . '/assets/css/admin/admin-frontend.css', NULL, $version, 'all' );
|
||||
}
|
||||
add_action( 'customize_preview_init', 'flatsome_customizer_live_preview' );
|
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
// Options for resetting Customizer
|
||||
|
||||
if ( ! class_exists( 'Flatsome_Customizer_Reset' ) ) {
|
||||
final class Flatsome_Customizer_Reset {
|
||||
/**
|
||||
* @var Flatsome_Customizer_Reset
|
||||
*/
|
||||
private static $instance = null;
|
||||
|
||||
/**
|
||||
* @var WP_Customize_Manager
|
||||
*/
|
||||
private $wp_customize;
|
||||
|
||||
public static function get_instance() {
|
||||
if ( null === self::$instance ) {
|
||||
self::$instance = new self();
|
||||
}
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
private function __construct() {
|
||||
add_action( 'customize_controls_print_scripts', array( $this, 'customize_controls_print_scripts' ) );
|
||||
add_action( 'wp_ajax_customizer_reset', array( $this, 'ajax_customizer_reset' ) );
|
||||
add_action( 'customize_register', array( $this, 'customize_register' ) );
|
||||
}
|
||||
|
||||
public function customize_controls_print_scripts() {
|
||||
$uri = get_template_directory_uri();
|
||||
$theme = wp_get_theme( get_template() );
|
||||
$version = $theme->get( 'Version' );
|
||||
|
||||
wp_enqueue_script( 'flatsome-customizer-reset', $uri . '/inc/admin/customizer/js/customizer-reset.js', array(), $version, true );
|
||||
wp_localize_script( 'flatsome-customizer-reset', '_FlatsomeCustomizerReset', array(
|
||||
'reset' => __( 'Reset', 'flatsome-admin' ),
|
||||
'confirm' => __( "Attention! This will remove all customizations ever made via customizer to this theme!\n\nThis action is irreversible!", 'flatsome-admin' ),
|
||||
'nonce' => array(
|
||||
'reset' => wp_create_nonce( 'customizer-reset' ),
|
||||
)
|
||||
) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a reference to `WP_Customize_Manager` instance
|
||||
*
|
||||
* @param $wp_customize
|
||||
*/
|
||||
public function customize_register( $wp_customize ) {
|
||||
$this->wp_customize = $wp_customize;
|
||||
}
|
||||
|
||||
public function ajax_customizer_reset() {
|
||||
if ( ! $this->wp_customize->is_preview() ) {
|
||||
wp_send_json_error( 'not_preview' );
|
||||
}
|
||||
|
||||
if ( ! check_ajax_referer( 'customizer-reset', 'nonce', false ) ) {
|
||||
wp_send_json_error( 'invalid_nonce' );
|
||||
}
|
||||
|
||||
$this->reset_customizer();
|
||||
|
||||
wp_send_json_success();
|
||||
}
|
||||
|
||||
public function reset_customizer() {
|
||||
$settings = $this->wp_customize->settings();
|
||||
|
||||
// remove theme_mod settings registered in customizer
|
||||
foreach ( $settings as $setting ) {
|
||||
if ( 'theme_mod' == $setting->type ) {
|
||||
remove_theme_mod( $setting->id );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Flatsome_Customizer_Reset::get_instance();
|
@@ -0,0 +1,121 @@
|
||||
<?php
|
||||
|
||||
/* Add Header builder */
|
||||
function flatsome_customizer_header_builder(){
|
||||
$nav_elements = flatsome_customizer_nav_elements();
|
||||
?>
|
||||
<div class="header-builder">
|
||||
<h3>
|
||||
<span class="title left">Header Builder</span>
|
||||
<span class="center display-toggle">
|
||||
<a class="button button-primary enable-desktop">Desktop</a>
|
||||
<a class="button button-primary enable-tablet">Mobile / Tablet</a>
|
||||
</span>
|
||||
<span class="right">
|
||||
<a class="button button-secondary header-preset-button" data-section="header-presets" style="margin-right: 5px;">Presets</a>
|
||||
<a href="//www.youtube.com/watch?v=YE-lOavbrjU" target="_blank" class="button" style="margin-right: 5px;">Tutorial</a>
|
||||
<a class="button header-clear-button" style="margin-right: 5px;">Clear All</a>
|
||||
<a class="button header-close-button" style="margin-right: 10px;">✕ Close</a>
|
||||
</span>
|
||||
</h3>
|
||||
|
||||
<div class="hb-wrapper hb-wrapper-desktop">
|
||||
|
||||
<div class="hb-wrap hb-desktop">
|
||||
|
||||
<div class="hb hb-top">
|
||||
<div class="hb-tooltip" data-section="top_bar">Top bar <i class="dashicons dashicons-admin-generic"></i></div>
|
||||
|
||||
<div class="hb-left hb-drop"
|
||||
data-id="topbar_elements_left">
|
||||
</div>
|
||||
<div class="hb-center hb-drop"
|
||||
data-id="topbar_elements_center">
|
||||
</div>
|
||||
<div class="hb-right hb-drop"
|
||||
data-id="topbar_elements_right">
|
||||
</div>
|
||||
</div>
|
||||
<div class="hb hb-main">
|
||||
<div class="hb-tooltip" data-section="main_bar">Header Main <i class="dashicons dashicons-admin-generic"></i></div>
|
||||
<div class="hb-logo" data-tooltip="Logo" data-section="title_tagline">
|
||||
<strong>Logo <i class="dashicons dashicons-admin-generic"></i></strong>
|
||||
</div>
|
||||
<div class="hb-left hb-drop" data-id="header_elements_left">
|
||||
</div>
|
||||
<div class="hb-right hb-drop" data-id="header_elements_right">
|
||||
</div>
|
||||
</div>
|
||||
<div class="hb hb-bottom">
|
||||
<div class="hb-tooltip" data-section="bottom_bar">Header Bottom <i class="dashicons dashicons-admin-generic"></i></div>
|
||||
<div class="hb-left hb-drop"
|
||||
data-id="header_elements_bottom_left">
|
||||
</div>
|
||||
<div class="hb-center hb-drop"
|
||||
data-id="header_elements_bottom_center">
|
||||
</div>
|
||||
<div class="hb-right hb-drop"
|
||||
data-id="header_elements_bottom_right">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="hb hb-avaiable hb-avaiable-desktop">
|
||||
<div class="hb-tooltip">Not in use</div>
|
||||
<div class="hb-list hb-drop">
|
||||
<?php
|
||||
foreach ($nav_elements as $key => $value) {
|
||||
echo '<span data-id="'.$key.'">'.$value.'<i class="dashicons dashicons-admin-generic"></i></span>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="hb-wrapper hb-wrapper-mobile">
|
||||
|
||||
<div class="hb-wrap hb-mobile">
|
||||
<div class="hb hb-top">
|
||||
<div class="hb-center hb-drop-mobile"
|
||||
data-id="header_mobile_elements_top">
|
||||
</div>
|
||||
</div>
|
||||
<div class="hb hb-main">
|
||||
<div class="hb-tooltip" data-section="header_mobile">Header Mobile<i class="dashicons dashicons-admin-generic"></i></div>
|
||||
<div class="hb-logo"
|
||||
data-tooltip="Logo"
|
||||
data-section="title_tagline">
|
||||
LOGO</div>
|
||||
<div class="hb-left hb-drop-mobile"
|
||||
data-id="header_mobile_elements_left">
|
||||
</div>
|
||||
<div class="hb-right hb-drop-mobile"
|
||||
data-id="header_mobile_elements_right">
|
||||
</div>
|
||||
</div>
|
||||
<div class="hb hb-bottom">
|
||||
<div class="hb-full hb-center hb-drop-mobile"
|
||||
data-id="header_mobile_elements_bottom">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="hb hb-avaiable hb-avaiable-mobile">
|
||||
<div class="hb-tooltip">Not in use</div>
|
||||
<div class="hb-list hb-drop-mobile">
|
||||
<?php
|
||||
foreach ($nav_elements as $key => $value) {
|
||||
echo '<span data-id="'.$key.'">'.$value.'<i class="dashicons dashicons-admin-generic"></i></span>';
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
add_action('customize_controls_print_footer_scripts', 'flatsome_customizer_header_builder');
|
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>account-icon-fill-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="account-icon-fill-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="7"></rect>
|
||||
<path d="M52.95375,39.00625 C52.95375,39.00625 55.12875,36.87125 55.6025,34 C56.8775,34 57.665,30.9475 56.39,29.87375 C56.44375,28.74375 58.02875,21 50,21 C41.97125,21 43.55625,28.74375 43.61,29.87375 C42.335,30.9475 43.1225,34 44.3975,34 C44.87125,36.87125 47.0475,39.00625 47.0475,39.00625 C47.0475,39.00625 47.03,41.025 46.29,41.14125 C43.905,41.5175 35,45.41125 35,49.68125 L65,49.68125 C65,45.41125 56.095,41.5175 53.71125,41.14125 C52.97125,41.025 52.95375,39.00625 52.95375,39.00625 Z" id="Path" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>account-icon-fill</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="account-icon-fill">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<path d="M53.95375,38.00625 C53.95375,38.00625 56.12875,35.87125 56.6025,33 C57.8775,33 58.665,29.9475 57.39,28.87375 C57.44375,27.74375 59.02875,20 51,20 C42.97125,20 44.55625,27.74375 44.61,28.87375 C43.335,29.9475 44.1225,33 45.3975,33 C45.87125,35.87125 48.0475,38.00625 48.0475,38.00625 C48.0475,38.00625 48.03,40.025 47.29,40.14125 C44.905,40.5175 36,44.41125 36,48.68125 L66,48.68125 C66,44.41125 57.095,40.5175 54.71125,40.14125 C53.97125,40.025 53.95375,38.00625 53.95375,38.00625 Z" id="Path" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>account-icon-image</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<linearGradient x1="274.066542%" y1="-34.4059336%" x2="27.6117208%" y2="100%" id="linearGradient-5">
|
||||
<stop stop-color="#FFFFFF" offset="0%"></stop>
|
||||
<stop stop-color="#8064E0" offset="42.9781115%"></stop>
|
||||
<stop stop-color="#00A0D2" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<rect id="path-6" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="account-icon-image">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<mask id="mask-7" fill="white">
|
||||
<use xlink:href="#path-6"></use>
|
||||
</mask>
|
||||
<use id="Rectangle-166-Copy-4" fill="url(#linearGradient-5)" xlink:href="#path-6"></use>
|
||||
<path d="M55.1344535,45.2167237 C55.1344535,45.2167237 58.5427908,41.8710684 59.2851815,37.3716714 C61.2831724,37.3716714 62.5172255,32.5882462 60.5192347,30.9056245 C60.6034637,29.1348562 63.0872406,17 50.5057747,17 C37.9243088,17 40.4080856,29.1348562 40.4923147,30.9056245 C38.4943238,32.5882462 39.728377,37.3716714 41.7263678,37.3716714 C42.4687586,41.8710684 45.8790547,45.2167237 45.8790547,45.2167237 C45.8790547,45.2167237 45.8516313,48.3802092 44.6920131,48.5623789 C40.9545949,49.1519821 27,55.2536895 27,61.945 L74.0115494,61.945 C74.0115494,55.2536895 60.0569545,49.1519821 56.3214951,48.5623789 C55.1618769,48.3802092 55.1344535,45.2167237 55.1344535,45.2167237 Z" id="Path" fill-opacity="0.127858922" fill="#FFFFFF" mask="url(#mask-7)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>account-icon-outline-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="23.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="8"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="52.9293346" height="53.4462226" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="account-icon-outline-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<path d="M53.7678983,38.7490625 C53.7678983,38.7490625 56.3053983,36.2582292 56.8581066,32.9084375 C58.3456066,32.9084375 59.2643566,29.3471875 57.7768566,28.0944792 C57.8395649,26.7761458 59.6887316,17.7417708 50.3218566,17.7417708 C40.9549816,17.7417708 42.8041483,26.7761458 42.8668566,28.0944792 C41.3793566,29.3471875 42.2981066,32.9084375 43.7856066,32.9084375 C44.3383149,36.2582292 46.8772733,38.7490625 46.8772733,38.7490625 C46.8772733,38.7490625 46.8568566,41.1042708 45.9935233,41.2398958 C43.2110233,41.6788542 32.8218566,46.2215625 32.8218566,51.2032292 L67.8218566,51.2032292 C67.8218566,46.2215625 57.4326899,41.6788542 54.6516483,41.2398958 C53.7883149,41.1042708 53.7678983,38.7490625 53.7678983,38.7490625 Z" id="Path" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
<g id="Rectangle-166-Copy-4" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>account-icon-outline</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="23.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="52.9293346" height="53.4462226" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="account-icon-outline">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-166-Copy-4" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<path d="M53.2837597,37.2547356 C53.2837597,37.2547356 55.3991751,35.1782244 55.8599466,32.385633 C57.1000177,32.385633 57.8659439,29.4167569 56.6258728,28.3724225 C56.6781504,27.2733791 58.2197289,19.7417708 50.4109283,19.7417708 C42.6021277,19.7417708 44.1437063,27.2733791 44.1959838,28.3724225 C42.9559127,29.4167569 43.7218389,32.385633 44.96191,32.385633 C45.4226815,35.1782244 47.5393127,37.2547356 47.5393127,37.2547356 C47.5393127,37.2547356 47.5222921,39.2181815 46.8025646,39.3312468 C44.4829022,39.6971894 35.8218566,43.4842693 35.8218566,47.6372917 L65,47.6372917 C65,43.4842693 56.3389544,39.6971894 54.0205078,39.3312468 C53.3007803,39.2181815 53.2837597,37.2547356 53.2837597,37.2547356 Z" id="Path" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>account-icon-plain</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="account-icon-plain">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<path d="M53.1266522,41.1942787 C53.1266522,41.1942787 55.9283214,38.4441345 56.5385701,34.7456091 C58.1809279,34.7456091 59.1953253,30.8136112 57.5529675,29.4304883 C57.6222042,27.9749085 59.6638804,18 49.3218566,18 C38.9798329,18 41.021509,27.9749085 41.0907457,29.4304883 C39.4483879,30.8136112 40.4627854,34.7456091 42.1051432,34.7456091 C42.7153918,38.4441345 45.5186712,41.1942787 45.5186712,41.1942787 C45.5186712,41.1942787 45.496129,43.7946786 44.5429174,43.944423 C41.4707422,44.4290795 30,49.4447115 30,54.945 L68.6437132,54.945 C68.6437132,49.4447115 57.172971,44.4290795 54.102406,43.944423 C53.1491944,43.7946786 53.1266522,41.1942787 53.1266522,41.1942787 Z" id="Path" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="68px" viewBox="0 0 70 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align-center</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="align-center">
|
||||
<text id="Center" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Center</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Path-Copy-9" fill="#3498DB" mask="url(#mask-3)" x="20.9226985" y="25.7466987" width="27.5145296" height="3.18012422"></rect>
|
||||
<rect id="Path-Copy-7" fill="#3498DB" mask="url(#mask-3)" x="24.9226985" y="33.2101102" width="19.0773015" height="2.25330131"></rect>
|
||||
<rect id="Path-Copy-8" fill="#3498DB" mask="url(#mask-3)" x="14.9226985" y="12.9268229" width="40.0773015" height="9.54037267"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="68px" viewBox="0 0 70 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align-left</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="align-left">
|
||||
<text id="Left" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Left</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Path-Copy-5" fill="#3498DB" mask="url(#mask-3)" x="10.9226985" y="25.7466987" width="27.5145296" height="3.18012422"></rect>
|
||||
<rect id="Path-Copy-6" fill="#3498DB" mask="url(#mask-3)" x="10.9226985" y="32.7466987" width="23.0773015" height="3.18012422"></rect>
|
||||
<rect id="Path-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="10.9226985" y="12.9268229" width="40.0773015" height="9.54037267"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align-right</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="align-right">
|
||||
<text id="Right" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Right</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Path-Copy-12" fill="#3498DB" mask="url(#mask-3)" x="30.9226985" y="25.7466987" width="27.5145296" height="3.18012422"></rect>
|
||||
<rect id="Path-Copy-10" fill="#3498DB" mask="url(#mask-3)" x="34.9226985" y="32.7466987" width="23.0773015" height="3.18012422"></rect>
|
||||
<rect id="Path-Copy-11" fill="#3498DB" mask="url(#mask-3)" x="18.9226985" y="12.9268229" width="40.0773015" height="9.54037267"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="100px" height="73px" viewBox="0 0 100 73" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 49.1 (51147) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>Untitled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<rect id="path-3" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<rect id="path-5" x="0" y="0" width="92" height="65.7142857" rx="4"></rect>
|
||||
<rect id="path-7" x="0.28294002" y="0.25875" width="48.6949878" height="49.1705248" rx="24.3474939"></rect>
|
||||
<rect id="path-9" x="0" y="0" width="92" height="65.7142857" rx="4"></rect>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="back-to-top-plain">
|
||||
<g id="Mask-Clipped">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<g id="Mask" mask="url(#mask-2)">
|
||||
<g id="path-1-Clipped">
|
||||
<mask id="mask-4" fill="white">
|
||||
<use xlink:href="#path-3"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<rect id="path-1" stroke="#3498DB" stroke-width="2" fill-opacity="0.01" fill="#00A0D2" fill-rule="nonzero" mask="url(#mask-4)" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Round" transform="translate(4.000000, 3.000000)">
|
||||
<mask id="mask-6" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<g mask="url(#mask-6)" id="path-5-Clipped">
|
||||
<g transform="translate(21.160000, 8.280000)">
|
||||
<g>
|
||||
<mask id="mask-8" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<g id="path-5"></g>
|
||||
<rect id="path-5" stroke="#3498DB" stroke-width="2" fill-opacity="0.127858922" fill="#3498DB" fill-rule="nonzero" mask="url(#mask-8)" x="0.28294002" y="0.25875" width="48.6949878" height="49.1705248" rx="24.3474939"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape-Copy-14-Clipped" transform="translate(4.000000, 2.000000)">
|
||||
<mask id="mask-10" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<path d="M58.88,27.819749 C58.88,27.6045429 58.8185312,27.420093 58.6648375,27.235643 L57.404357,26.0366749 C57.2506632,25.852225 57.0354571,25.76 56.8510072,25.76 C56.6050449,25.76 56.4205949,25.852225 56.2669012,26.0366749 L46.4599935,35.8128264 L36.6838419,26.0366749 C36.4994051,25.852225 36.3149508,25.76 36.0690103,25.76 C35.884556,25.76 35.6693586,25.852225 35.515643,26.0366749 L34.2859405,27.235643 C34.1014862,27.420093 34.04,27.6045429 34.04,27.819749 C34.04,28.0349115 34.1014862,28.2501176 34.2859405,28.4345676 L45.9066437,40.0245494 C46.0603374,40.2089994 46.2447873,40.3012243 46.4599935,40.3012243 C46.7059558,40.3012243 46.8904057,40.2089994 47.0133869,40.0245494 L58.6648375,28.4345676 C58.8185312,28.2501176 58.88,28.0349115 58.88,27.819749" id="Shape" fill="#3498DB" fill-rule="nonzero" mask="url(#mask-10)" transform="translate(46.460000, 33.030612) rotate(180.000000) translate(-46.460000, -33.030612) "></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="100px" height="73px" viewBox="0 0 100 73" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 49.1 (51147) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>Untitled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<rect id="path-3" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<rect id="path-5" x="0" y="0" width="92" height="65.7142857" rx="4"></rect>
|
||||
<rect id="path-7" x="0.28294002" y="0.25875" width="48.6949878" height="49.1705248" rx="8"></rect>
|
||||
<rect id="path-9" x="0" y="0" width="92" height="65.7142857" rx="4"></rect>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="back-to-top-plain">
|
||||
<g id="Mask-Clipped">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<g id="Mask" mask="url(#mask-2)">
|
||||
<g id="path-1-Clipped">
|
||||
<mask id="mask-4" fill="white">
|
||||
<use xlink:href="#path-3"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<rect id="path-1" stroke="#3498DB" stroke-width="2" fill-opacity="0.01" fill="#00A0D2" fill-rule="nonzero" mask="url(#mask-4)" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Square" transform="translate(50.000000, 36.120000) rotate(45.000000) translate(-50.000000, -36.120000) translate(4.000000, 3.000000)">
|
||||
<mask id="mask-6" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<g mask="url(#mask-6)" id="path-5-Clipped">
|
||||
<g transform="translate(46.000000, 32.200000) rotate(45.000000) translate(-46.000000, -32.200000) translate(21.160000, 7.360000)">
|
||||
<g>
|
||||
<mask id="mask-8" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<g id="path-5"></g>
|
||||
<rect id="path-5" stroke="#3498DB" stroke-width="2" fill-opacity="0.127858922" fill="#3498DB" fill-rule="nonzero" mask="url(#mask-8)" x="0.28294002" y="0.25875" width="48.6949878" height="49.1705248" rx="8"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Shape-Copy-14-Clipped" transform="translate(4.000000, 2.000000)">
|
||||
<mask id="mask-10" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<g id="path-1"></g>
|
||||
<path d="M58.88,27.819749 C58.88,27.6045429 58.8185312,27.420093 58.6648375,27.235643 L57.404357,26.0366749 C57.2506632,25.852225 57.0354571,25.76 56.8510072,25.76 C56.6050449,25.76 56.4205949,25.852225 56.2669012,26.0366749 L46.4599935,35.8128264 L36.6838419,26.0366749 C36.4994051,25.852225 36.3149508,25.76 36.0690103,25.76 C35.884556,25.76 35.6693586,25.852225 35.515643,26.0366749 L34.2859405,27.235643 C34.1014862,27.420093 34.04,27.6045429 34.04,27.819749 C34.04,28.0349115 34.1014862,28.2501176 34.2859405,28.4345676 L45.9066437,40.0245494 C46.0603374,40.2089994 46.2447873,40.3012243 46.4599935,40.3012243 C46.7059558,40.3012243 46.8904057,40.2089994 47.0133869,40.0245494 L58.6648375,28.4345676 C58.8185312,28.2501176 58.88,28.0349115 58.88,27.819749" id="Shape" fill="#3498DB" fill-rule="nonzero" mask="url(#mask-10)" transform="translate(46.460000, 33.030612) rotate(180.000000) translate(-46.460000, -33.030612) "></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>badge-border</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10.9803922" y="6.2745098" width="34.5098039" height="35.2941176"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34.5098039" height="35.2941176" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="15" y="9" width="10.7254902" height="10.7254902"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="10.7254902" height="10.7254902" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="badge-border">
|
||||
<g id="no-shadow-copy-6" transform="translate(0.617059, 0.185392)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-14" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use id="Rectangle-337-Copy-6" stroke="#3498DB" mask="url(#mask-8)" stroke-width="2" fill-opacity="0.127858922" fill="#3498DB" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 39.1 (31720) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>badge-circle-inside</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10.9803922" y="6.2745098" width="34.5098039" height="35.2941176"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34.5098039" height="35.2941176" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="badge-circle-inside">
|
||||
<g id="no-shadow-copy-3" transform="translate(0.449803, 0.185392)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-14" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
<rect id="Rectangle-337-Copy-2" fill="#3498DB" x="17.7243131" y="13.9019608" width="12.5490196" height="12.5490196" rx="6.2745098"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>badge-circle</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10.9803922" y="6.2745098" width="34.5098039" height="35.2941176"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34.5098039" height="35.2941176" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="badge-circle">
|
||||
<g id="no-shadow-copy-3" transform="translate(0.449803, 0.185392)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-14" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
<rect id="Rectangle-337-Copy-2" fill="#3498DB" x="6.72431308" y="14.9019608" width="12.5490196" height="12.5490196" rx="99"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>badge-outline</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10.9803922" y="6.2745098" width="34.5098039" height="35.2941176"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34.5098039" height="35.2941176" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="6.98039216" y="14.9019608" width="12.5490196" height="12.5490196"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.5490196" height="12.5490196" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="badge-outline">
|
||||
<g id="no-shadow-copy" transform="translate(0.000000, 0.185392)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-14" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
<use id="Rectangle-337" stroke="#3498DB" mask="url(#mask-8)" stroke-width="2" fill-opacity="0.127858922" fill="#3498DB" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>badge-square</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39.2156863" height="39.2156863" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10.9803922" y="6.2745098" width="34.5098039" height="35.2941176"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34.5098039" height="35.2941176" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="badge-square">
|
||||
<g id="no-shadow-copy" transform="translate(0.000000, 0.185392)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-14" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
<rect id="Rectangle-337" fill="#3498DB" x="10.9803922" y="14.9019608" width="12.5490196" height="12.5490196"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="68px" viewBox="0 0 70 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-default</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-default">
|
||||
<text id="Default" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Default</tspan>
|
||||
<tspan x="0" y="83"></tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="68px" viewBox="0 0 71 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-inline</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="42" y="9" width="18" height="45"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="18" height="45" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="10" y="40" width="29" height="40"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="29" height="40" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-inline" transform="translate(0.213250, 0.000000)">
|
||||
<text id="Inline" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Inline</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-7" fill="#3498DB" mask="url(#mask-3)" x="10" y="9" width="29" height="28"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="69px" viewBox="0 0 70 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-list</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="13" width="23" height="26"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="23" height="26" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="35.9226985" y="31.8666667" width="14.4814815" height="2.13333333"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="14.4814815" height="2.13333333" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="35.9226985" y="27.6" width="19.5925926" height="2.13333333"></rect>
|
||||
<mask id="mask-10" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="19.5925926" height="2.13333333" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<rect id="path-11" x="35.9226985" y="18" width="23" height="6.4"></rect>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="23" height="6.4" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-list" transform="translate(0.000000, 0.236375)">
|
||||
<text id="List" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">List</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Path-Copy" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="Path-Copy-2" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-10)" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="Path-Copy-3" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="69px" viewBox="0 0 70 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-normal</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="12" y="10" width="47" height="40"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="47" height="40" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-normal" transform="translate(0.000000, 0.236375)">
|
||||
<text id="Normal" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Normal</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="69px" viewBox="0 0 70 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-single-full</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="41" width="30" height="30.8378437"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="30" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="41" y="41" width="20" height="30.8378437"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="20" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-single-full">
|
||||
<text id="Top-Full" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Top Full</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="-9" y="0" width="96" height="38.5047542"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="68px" viewBox="0 0 70 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-single-inline</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<path d="M32,40 L9,40 L9,59.8398438 L9,70.46675 L44,70.46675 L44,41.233375 L44,6.46675 L32,6.46675 L32,40 Z" id="path-5"></path>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="35" height="64" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="49" y="7" width="12" height="63.46675"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12" height="63.46675" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-single-inline">
|
||||
<text id="Inline" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Inline</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Combined-Shape" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="9.25" y="7" width="19" height="30.46675"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-single-top</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="40" width="35" height="30.46675"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="35" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="49" y="40" width="12" height="30.46675"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-single-top">
|
||||
<text id="Top" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Top</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="9" y="7" width="52" height="30.46675"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="68px" viewBox="0 0 70 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-single</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="40" width="35" height="30.46675"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="35" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="49" y="7" width="12" height="63.46675"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12" height="63.46675" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-single">
|
||||
<text id="Normal" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Normal</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="9" y="7" width="35" height="30.46675"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="69px" viewBox="0 0 71 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-three-col</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="29.1133669" y="10" width="12.982384" height="30.4921875"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.982384" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="46.4824597" y="31.1668125" width="12.982384" height="30.4921875"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.982384" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="29.3428041" y="45.1668125" width="12.982384" height="30.4921875"></rect>
|
||||
<mask id="mask-10" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.982384" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<rect id="path-11" x="11.328125" y="10" width="12.982384" height="22.1668125"></rect>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.982384" height="22.1668125" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
<rect id="path-13" x="11.328125" y="36.1668125" width="12.982384" height="30.4921875"></rect>
|
||||
<mask id="mask-14" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.982384" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-13"></use>
|
||||
</mask>
|
||||
<rect id="path-15" x="46.4824597" y="10" width="12.982384" height="16"></rect>
|
||||
<mask id="mask-16" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12.982384" height="16" fill="white">
|
||||
<use xlink:href="#path-15"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-three-col" transform="translate(0.213250, 0.236375)">
|
||||
<text id="Three-Col" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Three Col</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-9" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-10" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-10)" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-12" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-11" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-14)" xlink:href="#path-13"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-8" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-16)" xlink:href="#path-15"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="69px" viewBox="0 0 71 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>blog-two-col</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="13" y="10" width="20.1094501" height="30.4921875"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="20.1094501" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="38.3553936" y="32.1668125" width="20.1094501" height="30.4921875"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="20.1094501" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="13.3553936" y="45.1668125" width="20.1094501" height="30.4921875"></rect>
|
||||
<mask id="mask-10" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="20.1094501" height="30.4921875" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<rect id="path-11" x="38.3553936" y="10" width="20.1094501" height="16"></rect>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="20.1094501" height="16" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="blog-two-col" transform="translate(0.213250, 0.236375)">
|
||||
<text id="Two-Col" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Two Col</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-9" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-10" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-10)" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-8" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-bag</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="70" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="70" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="70" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-bag">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="shopping-bag" mask="url(#mask-3)" fill="#3498DB">
|
||||
<g transform="translate(20.000000, 19.000000)" id="Shape">
|
||||
<path d="M28.453,22 L29,26.891 C29.0313333,27.183 28.948,27.4433333 28.75,27.672 C28.552,27.8906667 28.302,28 28,28 L2,28 C1.698,28 1.448,27.8906667 1.25,27.672 C1.052,27.4426667 0.968666667,27.1823333 1,26.891 L1.547,22 L28.453,22 L28.453,22 Z M28.344,21 L1.656,21 L3,8.891 C3.03133333,8.641 3.14066667,8.43 3.328,8.258 C3.51533333,8.086 3.73933333,8 4,8 L8,8 L8,10 C8,10.552 8.19533333,11.0233333 8.586,11.414 C8.97666667,11.8046667 9.448,12 10,12 C10.552,12 11.0233333,11.8046667 11.414,11.414 C11.8046667,11.0233333 12,10.552 12,10 L12,8 L18,8 L18,10 C18,10.552 18.1953333,11.0233333 18.586,11.414 C18.9766667,11.8046667 19.448,12 20,12 C20.552,12 21.0233333,11.8046667 21.414,11.414 C21.8046667,11.0233333 22,10.552 22,10 L22,8 L26,8 C26.2606667,8 26.4846667,8.086 26.672,8.258 C26.8593333,8.43 26.9686667,8.641 27,8.891 L28.344,21 Z M21,6 L21,10 C21,10.2706667 20.901,10.505 20.703,10.703 C20.505,10.901 20.2706667,11 20,11 C19.7293333,11 19.495,10.901 19.297,10.703 C19.099,10.505 19,10.2706667 19,10 L19,6 C19,4.896 18.6093333,3.95333333 17.828,3.172 C17.0466667,2.39066667 16.104,2 15,2 C13.896,2 12.9533333,2.39066667 12.172,3.172 C11.3906667,3.95333333 11,4.896 11,6 L11,10 C11,10.2706667 10.901,10.505 10.703,10.703 C10.505,10.901 10.2706667,11 10,11 C9.72933333,11 9.495,10.901 9.297,10.703 C9.099,10.505 9,10.2706667 9,10 L9,6 C9,4.344 9.586,2.93 10.758,1.758 C11.93,0.586 13.344,0 15,0 C16.656,0 18.07,0.586 19.242,1.758 C20.414,2.93 21,4.344 21,6 L21,6 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-basket</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="70" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="70" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="70" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-basket">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="shopping-basket" mask="url(#mask-3)" fill="#3498DB">
|
||||
<g transform="translate(15.000000, 18.000000)" id="Shape">
|
||||
<path d="M37.5,14.8965517 C38.19,14.8965517 38.7791667,15.1390345 39.2675,15.624 C39.7558333,16.1089655 40,16.694069 40,17.3793103 C40,18.0645517 39.7558333,18.6496552 39.2675,19.1346207 C38.7791667,19.6195862 38.19,19.862069 37.5,19.862069 L37.2075,19.862069 L34.96125,32.7028966 C34.8570833,33.297931 34.5704167,33.7895172 34.10125,34.1776552 C33.6320833,34.5657931 33.0983333,34.7598621 32.5,34.7598621 L7.5,34.7598621 C6.90083333,34.7598621 6.36708333,34.5657931 5.89875,34.1776552 C5.43041667,33.7895172 5.14375,33.297931 5.03875,32.7028966 L2.7925,19.862069 L2.5,19.862069 C1.81,19.862069 1.22083333,19.6195862 0.7325,19.1346207 C0.244166667,18.6496552 -9.25185854e-17,18.0645517 0,17.3793103 C9.25185854e-17,16.694069 0.244166667,16.1089655 0.7325,15.624 C1.22083333,15.1390345 1.81,14.8965517 2.5,14.8965517 L37.5,14.8965517 L37.5,14.8965517 Z M9.4725,30.4137931 C9.81083333,30.3881379 10.0941667,30.2424828 10.3225,29.9768276 C10.5508333,29.7111724 10.6516667,29.4103448 10.625,29.0743448 L10,21.0053793 C9.97416667,20.6693793 9.8275,20.388 9.56,20.1612414 C9.2925,19.9344828 8.98958333,19.8343448 8.65125,19.8608276 C8.31291667,19.8873103 8.02958333,20.0329655 7.80125,20.2977931 C7.57291667,20.5626207 7.47208333,20.8634483 7.49875,21.2002759 L8.12375,29.2692414 C8.14958333,29.5928276 8.28291667,29.8642759 8.52375,30.0835862 C8.76458333,30.3028966 9.04791667,30.4129655 9.37375,30.4137931 L9.47125,30.4137931 L9.4725,30.4137931 Z M17.5,29.1724138 L17.5,21.1034483 C17.5,20.7674483 17.37625,20.4765517 17.12875,20.2307586 C16.88125,19.9849655 16.5883333,19.862069 16.25,19.862069 C15.9116667,19.862069 15.61875,19.9849655 15.37125,20.2307586 C15.12375,20.4765517 15,20.7674483 15,21.1034483 L15,29.1724138 C15,29.5084138 15.12375,29.7993103 15.37125,30.0451034 C15.61875,30.2908966 15.9116667,30.4137931 16.25,30.4137931 C16.5883333,30.4137931 16.88125,30.2908966 17.12875,30.0451034 C17.37625,29.7993103 17.5,29.5084138 17.5,29.1724138 L17.5,29.1724138 Z M25,29.1724138 L25,21.1034483 C25,20.7674483 24.87625,20.4765517 24.62875,20.2307586 C24.38125,19.9849655 24.0883333,19.862069 23.75,19.862069 C23.4116667,19.862069 23.11875,19.9849655 22.87125,20.2307586 C22.62375,20.4765517 22.5,20.7674483 22.5,21.1034483 L22.5,29.1724138 C22.5,29.5084138 22.62375,29.7993103 22.87125,30.0451034 C23.11875,30.2908966 23.4116667,30.4137931 23.75,30.4137931 C24.0883333,30.4137931 24.38125,30.2908966 24.62875,30.0451034 C24.87625,29.7993103 25,29.5084138 25,29.1724138 L25,29.1724138 Z M31.875,29.2692414 L32.5,21.2002759 C32.5258333,20.8642759 32.425,20.5634483 32.1975,20.2977931 C31.97,20.0321379 31.6866667,19.8864828 31.3475,19.8608276 C31.0083333,19.8351724 30.7054167,19.9353103 30.43875,20.1612414 C30.1720833,20.3871724 30.0254167,20.6685517 29.99875,21.0053793 L29.37375,29.0743448 C29.3479167,29.4103448 29.44875,29.7111724 29.67625,29.9768276 C29.90375,30.2424828 30.1870833,30.3881379 30.52625,30.4137931 L30.62375,30.4137931 C30.9495833,30.4137931 31.2329167,30.3037241 31.47375,30.0835862 C31.7145833,29.8634483 31.8479167,29.592 31.87375,29.2692414 L31.875,29.2692414 Z M9.2975,5.66317241 L7.48125,13.6551724 L4.9025,13.6551724 L6.875,5.10082759 C7.1225,3.96289655 7.70208333,3.03517241 8.61375,2.31765517 C9.52541667,1.60013793 10.5670833,1.24137931 11.73875,1.24137931 L15,1.24137931 C15,0.90537931 15.12375,0.614482759 15.37125,0.368689655 C15.61875,0.122896552 15.9116667,1.01451414e-16 16.25,5.55111512e-17 L23.75,5.55111512e-17 C24.0883333,5.55111512e-17 24.38125,0.122896552 24.62875,0.368689655 C24.87625,0.614482759 25,0.90537931 25,1.24137931 L28.26125,1.24137931 C29.4329167,1.24137931 30.4745833,1.60013793 31.38625,2.31765517 C32.2979167,3.03517241 32.8775,3.96289655 33.125,5.10082759 L35.0975,13.6551724 L32.51875,13.6551724 L30.7025,5.66317241 C30.5591667,5.0937931 30.2629167,4.62827586 29.81375,4.26662069 C29.3645833,3.90496552 28.8470833,3.72372414 28.26125,3.72289655 L25,3.72289655 C25,4.05889655 24.87625,4.3497931 24.62875,4.59558621 C24.38125,4.84137931 24.0883333,4.96427586 23.75,4.96427586 L16.25,4.96427586 C15.9116667,4.96427586 15.61875,4.84137931 15.37125,4.59558621 C15.12375,4.3497931 15,4.05889655 15,3.72289655 L11.73875,3.72289655 C11.1529167,3.72289655 10.6354167,3.90413793 10.18625,4.26662069 C9.73708333,4.62910345 9.44083333,5.09462069 9.2975,5.66317241 L9.2975,5.66317241 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-cart</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="70" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="70" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="70" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-cart">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="shopping-cart" mask="url(#mask-3)">
|
||||
<g transform="translate(17.000000, 22.000000)" id="Group">
|
||||
<g>
|
||||
<path d="M12,27 C12,28.657 10.657,30 9,30 C7.343,30 6,28.657 6,27 C6,25.343 7.343,24 9,24 C10.657,24 12,25.343 12,27 L12,27 Z" id="Shape" fill="#3498DB"></path>
|
||||
<path d="M32,27 C32,28.657 30.657,30 29,30 C27.343,30 26,28.657 26,27 C26,25.343 27.343,24 29,24 C30.657,24 32,25.343 32,27 L32,27 Z" id="Shape" fill="#3498DB"></path>
|
||||
<path d="M32,14 L32,2 L8,2 C8,0.895 7.105,0 6,0 L0,0 L0,2 L4,2 L5.502,14.877 C4.587,15.61 4,16.736 4,18 C4,20.209 5.791,22 8,22 L32,22 L32,20 L8,20 C6.895,20 6,19.105 6,18 L6,17.98 L32,14 L32,14 Z" id="Shape" fill="#3498DB"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-default</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="0" y="0" width="43.8620144" height="37.6804865" rx="1"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="43.8620144" height="37.6804865" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="43.8620144" height="37.6804865" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="0" y="0" width="26.3172087" height="17.3909938" rx="1"></rect>
|
||||
<path d="M12.32,23.2984004 C18.152127,23.2984004 22.88,19.386757 22.88,14.5615003 C22.88,9.73624355 18.152127,5.82460011 12.32,5.82460011 C6.48787304,5.82460011 1.76,9.73624355 1.76,14.5615003 C1.76,19.386757 6.48787304,23.2984004 12.32,23.2984004 Z" id="path-11"></path>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="21.12" height="17.4738003" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-default">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="cart-default" mask="url(#mask-3)">
|
||||
<g transform="translate(27.000000, 5.000000)">
|
||||
<g id="mobile-header-copy" stroke-width="1" fill="none">
|
||||
<g id="contact-copy-2" transform="translate(0.000000, 16.017650)">
|
||||
<mask id="mask-7" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-6)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
</g>
|
||||
<g id="contact-copy-4" transform="translate(8.800000, 0.000000)">
|
||||
<mask id="mask-10" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<g id="Mask"></g>
|
||||
<g id="Oval-9" mask="url(#mask-10)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M8.76841026,40.0097959 L12.2432821,40.0097959 L12.2432821,30.9347959 C12.2432821,30.4903039 12.2556922,30.0252405 12.2805128,29.5395918 L10.2328205,31.2311224 C10.1004438,31.3381298 9.96806904,31.4142685 9.83569231,31.4595408 C9.70331558,31.5048132 9.57507754,31.527449 9.45097436,31.527449 C9.23586217,31.527449 9.04350512,31.4801195 8.87389744,31.3854592 C8.70428975,31.2907988 8.57812007,31.1899665 8.49538462,31.0829592 L7.27917949,29.4778571 L12.9134359,24.7736735 L16.0904615,24.7736735 L16.0904615,40.0097959 L19.0689231,40.0097959 L19.0689231,42.7755102 L8.76841026,42.7755102 L8.76841026,40.0097959 Z M33.9364103,33.7745918 C33.9364103,35.3467766 33.7668051,36.7090419 33.4275897,37.8614286 C33.0883744,39.0138153 32.6188577,39.9686357 32.0190256,40.7259184 C31.4191936,41.4832011 30.7076793,42.047039 29.8844615,42.417449 C29.0612437,42.787859 28.1697826,42.9730612 27.2100513,42.9730612 C26.25032,42.9730612 25.3629955,42.787859 24.5480513,42.417449 C23.733107,42.047039 23.0277979,41.4832011 22.4321026,40.7259184 C21.8364073,39.9686357 21.3710273,39.0138153 21.0359487,37.8614286 C20.7008701,36.7090419 20.5333333,35.3467766 20.5333333,33.7745918 C20.5333333,32.2024071 20.7008701,30.8401418 21.0359487,29.6877551 C21.3710273,28.5353684 21.8364073,27.580548 22.4321026,26.8232653 C23.0277979,26.0659826 23.733107,25.5042025 24.5480513,25.1379082 C25.3629955,24.7716138 26.25032,24.5884694 27.2100513,24.5884694 C28.1697826,24.5884694 29.0612437,24.7716138 29.8844615,25.1379082 C30.7076793,25.5042025 31.4191936,26.0659826 32.0190256,26.8232653 C32.6188577,27.580548 33.0883744,28.5353684 33.4275897,29.6877551 C33.7668051,30.8401418 33.9364103,32.2024071 33.9364103,33.7745918 L33.9364103,33.7745918 Z M29.9651282,33.7745918 C29.9651282,32.5316605 29.8865307,31.5130482 29.7293333,30.7187245 C29.572136,29.9244008 29.3632321,29.3008866 29.1026154,28.8481633 C28.8419987,28.3954399 28.5462239,28.0847117 28.2152821,27.9159694 C27.8843402,27.747227 27.5492667,27.6628571 27.2100513,27.6628571 C26.8708359,27.6628571 26.5378307,27.747227 26.2110256,27.9159694 C25.8842206,28.0847117 25.5946508,28.3954399 25.3423077,28.8481633 C25.0899646,29.3008866 24.8872657,29.9244008 24.7342051,30.7187245 C24.5811445,31.5130482 24.5046154,32.5316605 24.5046154,33.7745918 C24.5046154,35.0257546 24.5811445,36.0464246 24.7342051,36.8366327 C24.8872657,37.6268407 25.0899646,38.2503549 25.3423077,38.7071939 C25.5946508,39.1640329 25.8842206,39.4768189 26.2110256,39.6455612 C26.5378307,39.8143036 26.8708359,39.8986735 27.2100513,39.8986735 C27.5492667,39.8986735 27.8843402,39.8143036 28.2152821,39.6455612 C28.5462239,39.4768189 28.8419987,39.1640329 29.1026154,38.7071939 C29.3632321,38.2503549 29.572136,37.6268407 29.7293333,36.8366327 C29.8865307,36.0464246 29.9651282,35.0257546 29.9651282,33.7745918 L29.9651282,33.7745918 Z" id="10" fill="#3498DB"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-fill-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-fill-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="7"></rect>
|
||||
<g id="shopping-basket" mask="url(#mask-3)" fill="#FFFFFF">
|
||||
<g transform="translate(36.000000, 22.000000)" id="Shape">
|
||||
<path d="M29.0625,11.4916256 C29.59725,11.4916256 30.0538542,11.6786837 30.4323125,12.0528 C30.8107708,12.4269163 31,12.8782818 31,13.4068966 C31,13.9355113 30.8107708,14.3868768 30.4323125,14.7609931 C30.0538542,15.1351094 29.59725,15.3221675 29.0625,15.3221675 L28.8358125,15.3221675 L27.0949687,25.2279488 C27.0142396,25.6869754 26.7920729,26.066199 26.4284688,26.3656197 C26.0648646,26.6650404 25.6512083,26.8147507 25.1875,26.8147507 L5.8125,26.8147507 C5.34814583,26.8147507 4.93448958,26.6650404 4.57153125,26.3656197 C4.20857292,26.066199 3.98640625,25.6869754 3.90503125,25.2279488 L2.1641875,15.3221675 L1.9375,15.3221675 C1.40275,15.3221675 0.946145833,15.1351094 0.5676875,14.7609931 C0.189229167,14.3868768 -7.17019037e-17,13.9355113 0,13.4068966 C7.17019037e-17,12.8782818 0.189229167,12.4269163 0.5676875,12.0528 C0.946145833,11.6786837 1.40275,11.4916256 1.9375,11.4916256 L29.0625,11.4916256 L29.0625,11.4916256 Z M7.3411875,23.462069 C7.60339583,23.4422778 7.82297917,23.3299153 7.9999375,23.1249813 C8.17689583,22.9200473 8.25504167,22.6879803 8.234375,22.4287803 L7.75,16.2041498 C7.72997917,15.9449498 7.6163125,15.7278857 7.409,15.5529576 C7.2016875,15.3780296 6.96692708,15.3007803 6.70471875,15.3212099 C6.44251042,15.3416394 6.22292708,15.454002 6.04596875,15.6582975 C5.86901042,15.8625931 5.79086458,16.0946601 5.81153125,16.3544985 L6.29590625,22.5791291 C6.31592708,22.8287527 6.41926042,23.0381557 6.60590625,23.2073379 C6.79255208,23.3765202 7.01213542,23.4614305 7.26465625,23.462069 L7.34021875,23.462069 L7.3411875,23.462069 Z M13.5625,22.5044335 L13.5625,16.279803 C13.5625,16.020603 13.4665937,15.796197 13.2747813,15.6065852 C13.0829687,15.4169734 12.8559583,15.3221675 12.59375,15.3221675 C12.3315417,15.3221675 12.1045313,15.4169734 11.9127187,15.6065852 C11.7209063,15.796197 11.625,16.020603 11.625,16.279803 L11.625,22.5044335 C11.625,22.7636335 11.7209063,22.9880394 11.9127187,23.1776512 C12.1045313,23.3672631 12.3315417,23.462069 12.59375,23.462069 C12.8559583,23.462069 13.0829687,23.3672631 13.2747813,23.1776512 C13.4665937,22.9880394 13.5625,22.7636335 13.5625,22.5044335 L13.5625,22.5044335 Z M19.375,22.5044335 L19.375,16.279803 C19.375,16.020603 19.2790938,15.796197 19.0872813,15.6065852 C18.8954687,15.4169734 18.6684583,15.3221675 18.40625,15.3221675 C18.1440417,15.3221675 17.9170313,15.4169734 17.7252187,15.6065852 C17.5334062,15.796197 17.4375,16.020603 17.4375,16.279803 L17.4375,22.5044335 C17.4375,22.7636335 17.5334062,22.9880394 17.7252187,23.1776512 C17.9170313,23.3672631 18.1440417,23.462069 18.40625,23.462069 C18.6684583,23.462069 18.8954687,23.3672631 19.0872813,23.1776512 C19.2790938,22.9880394 19.375,22.7636335 19.375,22.5044335 L19.375,22.5044335 Z M24.703125,22.5791291 L25.1875,16.3544985 C25.2075208,16.0952985 25.129375,15.8632315 24.9530625,15.6582975 C24.77675,15.4533635 24.5571667,15.341001 24.2943125,15.3212099 C24.0314583,15.3014187 23.7966979,15.378668 23.5900313,15.5529576 C23.3833646,15.7272473 23.2696979,15.9443113 23.2490313,16.2041498 L22.7646563,22.4287803 C22.7446354,22.6879803 22.8227813,22.9200473 22.9990938,23.1249813 C23.1754063,23.3299153 23.3949896,23.4422778 23.6578438,23.462069 L23.7334063,23.462069 C23.9859271,23.462069 24.2055104,23.3771586 24.3921563,23.2073379 C24.5788021,23.0375172 24.6821354,22.8281143 24.7021563,22.5791291 L24.703125,22.5791291 Z M7.2055625,4.368733 L5.79796875,10.5339901 L3.7994375,10.5339901 L5.328125,3.93492414 C5.5199375,3.05709163 5.96911458,2.34141872 6.67565625,1.78790542 C7.38219792,1.23439212 8.18948958,0.957635468 9.09753125,0.957635468 L11.625,0.957635468 C11.625,0.698435468 11.7209062,0.474029557 11.9127187,0.284417734 C12.1045312,0.0948059113 12.3315417,9.09507828e-17 12.59375,5.55111512e-17 L18.40625,5.55111512e-17 C18.6684583,5.55111512e-17 18.8954687,0.0948059113 19.0872812,0.284417734 C19.2790937,0.474029557 19.375,0.698435468 19.375,0.957635468 L21.9024687,0.957635468 C22.8105104,0.957635468 23.6178021,1.23439212 24.3243437,1.78790542 C25.0308854,2.34141872 25.4800625,3.05709163 25.671875,3.93492414 L27.2005625,10.5339901 L25.2020312,10.5339901 L23.7944375,4.368733 C23.6833542,3.92949754 23.4537604,3.57038424 23.1056562,3.2913931 C22.7575521,3.01240197 22.3564896,2.87258719 21.9024687,2.87194877 L19.375,2.87194877 C19.375,3.13114877 19.2790937,3.35555468 19.0872812,3.5451665 C18.8954687,3.73477833 18.6684583,3.82958424 18.40625,3.82958424 L12.59375,3.82958424 C12.3315417,3.82958424 12.1045312,3.73477833 11.9127187,3.5451665 C11.7209062,3.35555468 11.625,3.13114877 11.625,2.87194877 L9.09753125,2.87194877 C8.64351042,2.87194877 8.24244792,3.01176355 7.89434375,3.2913931 C7.54623958,3.57102266 7.31664583,3.93013596 7.2055625,4.368733 L7.2055625,4.368733 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-fill</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-fill">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<g id="shopping-basket" mask="url(#mask-3)" fill="#FFFFFF">
|
||||
<g transform="translate(35.000000, 21.000000)" id="Shape">
|
||||
<path d="M29.0625,11.4916256 C29.59725,11.4916256 30.0538542,11.6786837 30.4323125,12.0528 C30.8107708,12.4269163 31,12.8782818 31,13.4068966 C31,13.9355113 30.8107708,14.3868768 30.4323125,14.7609931 C30.0538542,15.1351094 29.59725,15.3221675 29.0625,15.3221675 L28.8358125,15.3221675 L27.0949687,25.2279488 C27.0142396,25.6869754 26.7920729,26.066199 26.4284688,26.3656197 C26.0648646,26.6650404 25.6512083,26.8147507 25.1875,26.8147507 L5.8125,26.8147507 C5.34814583,26.8147507 4.93448958,26.6650404 4.57153125,26.3656197 C4.20857292,26.066199 3.98640625,25.6869754 3.90503125,25.2279488 L2.1641875,15.3221675 L1.9375,15.3221675 C1.40275,15.3221675 0.946145833,15.1351094 0.5676875,14.7609931 C0.189229167,14.3868768 -7.17019037e-17,13.9355113 0,13.4068966 C7.17019037e-17,12.8782818 0.189229167,12.4269163 0.5676875,12.0528 C0.946145833,11.6786837 1.40275,11.4916256 1.9375,11.4916256 L29.0625,11.4916256 L29.0625,11.4916256 Z M7.3411875,23.462069 C7.60339583,23.4422778 7.82297917,23.3299153 7.9999375,23.1249813 C8.17689583,22.9200473 8.25504167,22.6879803 8.234375,22.4287803 L7.75,16.2041498 C7.72997917,15.9449498 7.6163125,15.7278857 7.409,15.5529576 C7.2016875,15.3780296 6.96692708,15.3007803 6.70471875,15.3212099 C6.44251042,15.3416394 6.22292708,15.454002 6.04596875,15.6582975 C5.86901042,15.8625931 5.79086458,16.0946601 5.81153125,16.3544985 L6.29590625,22.5791291 C6.31592708,22.8287527 6.41926042,23.0381557 6.60590625,23.2073379 C6.79255208,23.3765202 7.01213542,23.4614305 7.26465625,23.462069 L7.34021875,23.462069 L7.3411875,23.462069 Z M13.5625,22.5044335 L13.5625,16.279803 C13.5625,16.020603 13.4665937,15.796197 13.2747813,15.6065852 C13.0829687,15.4169734 12.8559583,15.3221675 12.59375,15.3221675 C12.3315417,15.3221675 12.1045313,15.4169734 11.9127187,15.6065852 C11.7209063,15.796197 11.625,16.020603 11.625,16.279803 L11.625,22.5044335 C11.625,22.7636335 11.7209063,22.9880394 11.9127187,23.1776512 C12.1045313,23.3672631 12.3315417,23.462069 12.59375,23.462069 C12.8559583,23.462069 13.0829687,23.3672631 13.2747813,23.1776512 C13.4665937,22.9880394 13.5625,22.7636335 13.5625,22.5044335 L13.5625,22.5044335 Z M19.375,22.5044335 L19.375,16.279803 C19.375,16.020603 19.2790938,15.796197 19.0872813,15.6065852 C18.8954687,15.4169734 18.6684583,15.3221675 18.40625,15.3221675 C18.1440417,15.3221675 17.9170313,15.4169734 17.7252187,15.6065852 C17.5334062,15.796197 17.4375,16.020603 17.4375,16.279803 L17.4375,22.5044335 C17.4375,22.7636335 17.5334062,22.9880394 17.7252187,23.1776512 C17.9170313,23.3672631 18.1440417,23.462069 18.40625,23.462069 C18.6684583,23.462069 18.8954687,23.3672631 19.0872813,23.1776512 C19.2790938,22.9880394 19.375,22.7636335 19.375,22.5044335 L19.375,22.5044335 Z M24.703125,22.5791291 L25.1875,16.3544985 C25.2075208,16.0952985 25.129375,15.8632315 24.9530625,15.6582975 C24.77675,15.4533635 24.5571667,15.341001 24.2943125,15.3212099 C24.0314583,15.3014187 23.7966979,15.378668 23.5900313,15.5529576 C23.3833646,15.7272473 23.2696979,15.9443113 23.2490313,16.2041498 L22.7646563,22.4287803 C22.7446354,22.6879803 22.8227813,22.9200473 22.9990938,23.1249813 C23.1754063,23.3299153 23.3949896,23.4422778 23.6578438,23.462069 L23.7334063,23.462069 C23.9859271,23.462069 24.2055104,23.3771586 24.3921563,23.2073379 C24.5788021,23.0375172 24.6821354,22.8281143 24.7021563,22.5791291 L24.703125,22.5791291 Z M7.2055625,4.368733 L5.79796875,10.5339901 L3.7994375,10.5339901 L5.328125,3.93492414 C5.5199375,3.05709163 5.96911458,2.34141872 6.67565625,1.78790542 C7.38219792,1.23439212 8.18948958,0.957635468 9.09753125,0.957635468 L11.625,0.957635468 C11.625,0.698435468 11.7209062,0.474029557 11.9127187,0.284417734 C12.1045312,0.0948059113 12.3315417,9.09507828e-17 12.59375,5.55111512e-17 L18.40625,5.55111512e-17 C18.6684583,5.55111512e-17 18.8954687,0.0948059113 19.0872812,0.284417734 C19.2790937,0.474029557 19.375,0.698435468 19.375,0.957635468 L21.9024687,0.957635468 C22.8105104,0.957635468 23.6178021,1.23439212 24.3243437,1.78790542 C25.0308854,2.34141872 25.4800625,3.05709163 25.671875,3.93492414 L27.2005625,10.5339901 L25.2020312,10.5339901 L23.7944375,4.368733 C23.6833542,3.92949754 23.4537604,3.57038424 23.1056562,3.2913931 C22.7575521,3.01240197 22.3564896,2.87258719 21.9024687,2.87194877 L19.375,2.87194877 C19.375,3.13114877 19.2790937,3.35555468 19.0872812,3.5451665 C18.8954687,3.73477833 18.6684583,3.82958424 18.40625,3.82958424 L12.59375,3.82958424 C12.3315417,3.82958424 12.1045312,3.73477833 11.9127187,3.5451665 C11.7209062,3.35555468 11.625,3.13114877 11.625,2.87194877 L9.09753125,2.87194877 C8.64351042,2.87194877 8.24244792,3.01176355 7.89434375,3.2913931 C7.54623958,3.57102266 7.31664583,3.93013596 7.2055625,4.368733 L7.2055625,4.368733 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-outline-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="23.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="8"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="52.9293346" height="53.4462226" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-outline-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-166-Copy-4" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="shopping-basket" mask="url(#mask-3)" fill="#3498DB">
|
||||
<g transform="translate(34.000000, 21.000000)" id="Shape">
|
||||
<path d="M30,11.9172414 C30.552,11.9172414 31.0233333,12.1112276 31.414,12.4992 C31.8046667,12.8871724 32,13.3552552 32,13.9034483 C32,14.4516414 31.8046667,14.9197241 31.414,15.3076966 C31.0233333,15.695669 30.552,15.8896552 30,15.8896552 L29.766,15.8896552 L27.969,26.1623172 C27.8856667,26.6383448 27.6563333,27.0316138 27.281,27.3421241 C26.9056667,27.6526345 26.4786667,27.8078897 26,27.8078897 L6,27.8078897 C5.52066667,27.8078897 5.09366667,27.6526345 4.719,27.3421241 C4.34433333,27.0316138 4.115,26.6383448 4.031,26.1623172 L2.234,15.8896552 L2,15.8896552 C1.448,15.8896552 0.976666667,15.695669 0.586,15.3076966 C0.195333333,14.9197241 -7.40148683e-17,14.4516414 0,13.9034483 C7.40148683e-17,13.3552552 0.195333333,12.8871724 0.586,12.4992 C0.976666667,12.1112276 1.448,11.9172414 2,11.9172414 L30,11.9172414 L30,11.9172414 Z M7.578,24.3310345 C7.84866667,24.3105103 8.07533333,24.1939862 8.258,23.9814621 C8.44066667,23.7689379 8.52133333,23.5282759 8.5,23.2594759 L8,16.8043034 C7.97933333,16.5355034 7.862,16.3104 7.648,16.1289931 C7.434,15.9475862 7.19166667,15.8674759 6.921,15.8886621 C6.65033333,15.9098483 6.42366667,16.0263724 6.241,16.2382345 C6.05833333,16.4500966 5.97766667,16.6907586 5.999,16.9602207 L6.499,23.4153931 C6.51966667,23.6742621 6.62633333,23.8914207 6.819,24.066869 C7.01166667,24.2423172 7.23833333,24.3303724 7.499,24.3310345 L7.577,24.3310345 L7.578,24.3310345 Z M14,23.337931 L14,16.8827586 C14,16.6139586 13.901,16.3812414 13.703,16.1846069 C13.505,15.9879724 13.2706667,15.8896552 13,15.8896552 C12.7293333,15.8896552 12.495,15.9879724 12.297,16.1846069 C12.099,16.3812414 12,16.6139586 12,16.8827586 L12,23.337931 C12,23.606731 12.099,23.8394483 12.297,24.0360828 C12.495,24.2327172 12.7293333,24.3310345 13,24.3310345 C13.2706667,24.3310345 13.505,24.2327172 13.703,24.0360828 C13.901,23.8394483 14,23.606731 14,23.337931 L14,23.337931 Z M20,23.337931 L20,16.8827586 C20,16.6139586 19.901,16.3812414 19.703,16.1846069 C19.505,15.9879724 19.2706667,15.8896552 19,15.8896552 C18.7293333,15.8896552 18.495,15.9879724 18.297,16.1846069 C18.099,16.3812414 18,16.6139586 18,16.8827586 L18,23.337931 C18,23.606731 18.099,23.8394483 18.297,24.0360828 C18.495,24.2327172 18.7293333,24.3310345 19,24.3310345 C19.2706667,24.3310345 19.505,24.2327172 19.703,24.0360828 C19.901,23.8394483 20,23.606731 20,23.337931 L20,23.337931 Z M25.5,23.4153931 L26,16.9602207 C26.0206667,16.6914207 25.94,16.4507586 25.758,16.2382345 C25.576,16.0257103 25.3493333,15.9091862 25.078,15.8886621 C24.8066667,15.8681379 24.5643333,15.9482483 24.351,16.1289931 C24.1376667,16.3097379 24.0203333,16.5348414 23.999,16.8043034 L23.499,23.2594759 C23.4783333,23.5282759 23.559,23.7689379 23.741,23.9814621 C23.923,24.1939862 24.1496667,24.3105103 24.421,24.3310345 L24.499,24.3310345 C24.7596667,24.3310345 24.9863333,24.2429793 25.179,24.066869 C25.3716667,23.8907586 25.4783333,23.6736 25.499,23.4153931 L25.5,23.4153931 Z M7.438,4.53053793 L5.985,10.9241379 L3.922,10.9241379 L5.5,4.08066207 C5.698,3.17031724 6.16166667,2.42813793 6.891,1.85412414 C7.62033333,1.28011034 8.45366667,0.993103448 9.391,0.993103448 L12,0.993103448 C12,0.724303448 12.099,0.491586207 12.297,0.294951724 C12.495,0.0983172414 12.7293333,9.22633617e-17 13,5.55111512e-17 L19,5.55111512e-17 C19.2706667,5.55111512e-17 19.505,0.0983172414 19.703,0.294951724 C19.901,0.491586207 20,0.724303448 20,0.993103448 L22.609,0.993103448 C23.5463333,0.993103448 24.3796667,1.28011034 25.109,1.85412414 C25.8383333,2.42813793 26.302,3.17031724 26.5,4.08066207 L28.078,10.9241379 L26.015,10.9241379 L24.562,4.53053793 C24.4473333,4.07503448 24.2103333,3.70262069 23.851,3.41329655 C23.4916667,3.12397241 23.0776667,2.97897931 22.609,2.97831724 L20,2.97831724 C20,3.24711724 19.901,3.47983448 19.703,3.67646897 C19.505,3.87310345 19.2706667,3.97142069 19,3.97142069 L13,3.97142069 C12.7293333,3.97142069 12.495,3.87310345 12.297,3.67646897 C12.099,3.47983448 12,3.24711724 12,2.97831724 L9.391,2.97831724 C8.92233333,2.97831724 8.50833333,3.12331034 8.149,3.41329655 C7.78966667,3.70328276 7.55266667,4.07569655 7.438,4.53053793 L7.438,4.53053793 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-outline</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="23.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="52.9293346" height="53.4462226" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-outline">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-166-Copy-4" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="shopping-basket" mask="url(#mask-3)" fill="#3498DB">
|
||||
<g transform="translate(34.000000, 21.000000)" id="Shape">
|
||||
<path d="M30,11.9172414 C30.552,11.9172414 31.0233333,12.1112276 31.414,12.4992 C31.8046667,12.8871724 32,13.3552552 32,13.9034483 C32,14.4516414 31.8046667,14.9197241 31.414,15.3076966 C31.0233333,15.695669 30.552,15.8896552 30,15.8896552 L29.766,15.8896552 L27.969,26.1623172 C27.8856667,26.6383448 27.6563333,27.0316138 27.281,27.3421241 C26.9056667,27.6526345 26.4786667,27.8078897 26,27.8078897 L6,27.8078897 C5.52066667,27.8078897 5.09366667,27.6526345 4.719,27.3421241 C4.34433333,27.0316138 4.115,26.6383448 4.031,26.1623172 L2.234,15.8896552 L2,15.8896552 C1.448,15.8896552 0.976666667,15.695669 0.586,15.3076966 C0.195333333,14.9197241 -7.40148683e-17,14.4516414 0,13.9034483 C7.40148683e-17,13.3552552 0.195333333,12.8871724 0.586,12.4992 C0.976666667,12.1112276 1.448,11.9172414 2,11.9172414 L30,11.9172414 L30,11.9172414 Z M7.578,24.3310345 C7.84866667,24.3105103 8.07533333,24.1939862 8.258,23.9814621 C8.44066667,23.7689379 8.52133333,23.5282759 8.5,23.2594759 L8,16.8043034 C7.97933333,16.5355034 7.862,16.3104 7.648,16.1289931 C7.434,15.9475862 7.19166667,15.8674759 6.921,15.8886621 C6.65033333,15.9098483 6.42366667,16.0263724 6.241,16.2382345 C6.05833333,16.4500966 5.97766667,16.6907586 5.999,16.9602207 L6.499,23.4153931 C6.51966667,23.6742621 6.62633333,23.8914207 6.819,24.066869 C7.01166667,24.2423172 7.23833333,24.3303724 7.499,24.3310345 L7.577,24.3310345 L7.578,24.3310345 Z M14,23.337931 L14,16.8827586 C14,16.6139586 13.901,16.3812414 13.703,16.1846069 C13.505,15.9879724 13.2706667,15.8896552 13,15.8896552 C12.7293333,15.8896552 12.495,15.9879724 12.297,16.1846069 C12.099,16.3812414 12,16.6139586 12,16.8827586 L12,23.337931 C12,23.606731 12.099,23.8394483 12.297,24.0360828 C12.495,24.2327172 12.7293333,24.3310345 13,24.3310345 C13.2706667,24.3310345 13.505,24.2327172 13.703,24.0360828 C13.901,23.8394483 14,23.606731 14,23.337931 L14,23.337931 Z M20,23.337931 L20,16.8827586 C20,16.6139586 19.901,16.3812414 19.703,16.1846069 C19.505,15.9879724 19.2706667,15.8896552 19,15.8896552 C18.7293333,15.8896552 18.495,15.9879724 18.297,16.1846069 C18.099,16.3812414 18,16.6139586 18,16.8827586 L18,23.337931 C18,23.606731 18.099,23.8394483 18.297,24.0360828 C18.495,24.2327172 18.7293333,24.3310345 19,24.3310345 C19.2706667,24.3310345 19.505,24.2327172 19.703,24.0360828 C19.901,23.8394483 20,23.606731 20,23.337931 L20,23.337931 Z M25.5,23.4153931 L26,16.9602207 C26.0206667,16.6914207 25.94,16.4507586 25.758,16.2382345 C25.576,16.0257103 25.3493333,15.9091862 25.078,15.8886621 C24.8066667,15.8681379 24.5643333,15.9482483 24.351,16.1289931 C24.1376667,16.3097379 24.0203333,16.5348414 23.999,16.8043034 L23.499,23.2594759 C23.4783333,23.5282759 23.559,23.7689379 23.741,23.9814621 C23.923,24.1939862 24.1496667,24.3105103 24.421,24.3310345 L24.499,24.3310345 C24.7596667,24.3310345 24.9863333,24.2429793 25.179,24.066869 C25.3716667,23.8907586 25.4783333,23.6736 25.499,23.4153931 L25.5,23.4153931 Z M7.438,4.53053793 L5.985,10.9241379 L3.922,10.9241379 L5.5,4.08066207 C5.698,3.17031724 6.16166667,2.42813793 6.891,1.85412414 C7.62033333,1.28011034 8.45366667,0.993103448 9.391,0.993103448 L12,0.993103448 C12,0.724303448 12.099,0.491586207 12.297,0.294951724 C12.495,0.0983172414 12.7293333,9.22633617e-17 13,5.55111512e-17 L19,5.55111512e-17 C19.2706667,5.55111512e-17 19.505,0.0983172414 19.703,0.294951724 C19.901,0.491586207 20,0.724303448 20,0.993103448 L22.609,0.993103448 C23.5463333,0.993103448 24.3796667,1.28011034 25.109,1.85412414 C25.8383333,2.42813793 26.302,3.17031724 26.5,4.08066207 L28.078,10.9241379 L26.015,10.9241379 L24.562,4.53053793 C24.4473333,4.07503448 24.2103333,3.70262069 23.851,3.41329655 C23.4916667,3.12397241 23.0776667,2.97897931 22.609,2.97831724 L20,2.97831724 C20,3.24711724 19.901,3.47983448 19.703,3.67646897 C19.505,3.87310345 19.2706667,3.97142069 19,3.97142069 L13,3.97142069 C12.7293333,3.97142069 12.495,3.87310345 12.297,3.67646897 C12.099,3.47983448 12,3.24711724 12,2.97831724 L9.391,2.97831724 C8.92233333,2.97831724 8.50833333,3.12331034 8.149,3.41329655 C7.78966667,3.70328276 7.55266667,4.07569655 7.438,4.53053793 L7.438,4.53053793 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>cart-icon-plain</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="cart-icon-plain">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="shopping-basket" mask="url(#mask-3)" fill="#3498DB">
|
||||
<g transform="translate(30.000000, 18.000000)" id="Shape">
|
||||
<path d="M37.5,14.8965517 C38.19,14.8965517 38.7791667,15.1390345 39.2675,15.624 C39.7558333,16.1089655 40,16.694069 40,17.3793103 C40,18.0645517 39.7558333,18.6496552 39.2675,19.1346207 C38.7791667,19.6195862 38.19,19.862069 37.5,19.862069 L37.2075,19.862069 L34.96125,32.7028966 C34.8570833,33.297931 34.5704167,33.7895172 34.10125,34.1776552 C33.6320833,34.5657931 33.0983333,34.7598621 32.5,34.7598621 L7.5,34.7598621 C6.90083333,34.7598621 6.36708333,34.5657931 5.89875,34.1776552 C5.43041667,33.7895172 5.14375,33.297931 5.03875,32.7028966 L2.7925,19.862069 L2.5,19.862069 C1.81,19.862069 1.22083333,19.6195862 0.7325,19.1346207 C0.244166667,18.6496552 -9.25185854e-17,18.0645517 0,17.3793103 C9.25185854e-17,16.694069 0.244166667,16.1089655 0.7325,15.624 C1.22083333,15.1390345 1.81,14.8965517 2.5,14.8965517 L37.5,14.8965517 L37.5,14.8965517 Z M9.4725,30.4137931 C9.81083333,30.3881379 10.0941667,30.2424828 10.3225,29.9768276 C10.5508333,29.7111724 10.6516667,29.4103448 10.625,29.0743448 L10,21.0053793 C9.97416667,20.6693793 9.8275,20.388 9.56,20.1612414 C9.2925,19.9344828 8.98958333,19.8343448 8.65125,19.8608276 C8.31291667,19.8873103 8.02958333,20.0329655 7.80125,20.2977931 C7.57291667,20.5626207 7.47208333,20.8634483 7.49875,21.2002759 L8.12375,29.2692414 C8.14958333,29.5928276 8.28291667,29.8642759 8.52375,30.0835862 C8.76458333,30.3028966 9.04791667,30.4129655 9.37375,30.4137931 L9.47125,30.4137931 L9.4725,30.4137931 Z M17.5,29.1724138 L17.5,21.1034483 C17.5,20.7674483 17.37625,20.4765517 17.12875,20.2307586 C16.88125,19.9849655 16.5883333,19.862069 16.25,19.862069 C15.9116667,19.862069 15.61875,19.9849655 15.37125,20.2307586 C15.12375,20.4765517 15,20.7674483 15,21.1034483 L15,29.1724138 C15,29.5084138 15.12375,29.7993103 15.37125,30.0451034 C15.61875,30.2908966 15.9116667,30.4137931 16.25,30.4137931 C16.5883333,30.4137931 16.88125,30.2908966 17.12875,30.0451034 C17.37625,29.7993103 17.5,29.5084138 17.5,29.1724138 L17.5,29.1724138 Z M25,29.1724138 L25,21.1034483 C25,20.7674483 24.87625,20.4765517 24.62875,20.2307586 C24.38125,19.9849655 24.0883333,19.862069 23.75,19.862069 C23.4116667,19.862069 23.11875,19.9849655 22.87125,20.2307586 C22.62375,20.4765517 22.5,20.7674483 22.5,21.1034483 L22.5,29.1724138 C22.5,29.5084138 22.62375,29.7993103 22.87125,30.0451034 C23.11875,30.2908966 23.4116667,30.4137931 23.75,30.4137931 C24.0883333,30.4137931 24.38125,30.2908966 24.62875,30.0451034 C24.87625,29.7993103 25,29.5084138 25,29.1724138 L25,29.1724138 Z M31.875,29.2692414 L32.5,21.2002759 C32.5258333,20.8642759 32.425,20.5634483 32.1975,20.2977931 C31.97,20.0321379 31.6866667,19.8864828 31.3475,19.8608276 C31.0083333,19.8351724 30.7054167,19.9353103 30.43875,20.1612414 C30.1720833,20.3871724 30.0254167,20.6685517 29.99875,21.0053793 L29.37375,29.0743448 C29.3479167,29.4103448 29.44875,29.7111724 29.67625,29.9768276 C29.90375,30.2424828 30.1870833,30.3881379 30.52625,30.4137931 L30.62375,30.4137931 C30.9495833,30.4137931 31.2329167,30.3037241 31.47375,30.0835862 C31.7145833,29.8634483 31.8479167,29.592 31.87375,29.2692414 L31.875,29.2692414 Z M9.2975,5.66317241 L7.48125,13.6551724 L4.9025,13.6551724 L6.875,5.10082759 C7.1225,3.96289655 7.70208333,3.03517241 8.61375,2.31765517 C9.52541667,1.60013793 10.5670833,1.24137931 11.73875,1.24137931 L15,1.24137931 C15,0.90537931 15.12375,0.614482759 15.37125,0.368689655 C15.61875,0.122896552 15.9116667,1.01451414e-16 16.25,5.55111512e-17 L23.75,5.55111512e-17 C24.0883333,5.55111512e-17 24.38125,0.122896552 24.62875,0.368689655 C24.87625,0.614482759 25,0.90537931 25,1.24137931 L28.26125,1.24137931 C29.4329167,1.24137931 30.4745833,1.60013793 31.38625,2.31765517 C32.2979167,3.03517241 32.8775,3.96289655 33.125,5.10082759 L35.0975,13.6551724 L32.51875,13.6551724 L30.7025,5.66317241 C30.5591667,5.0937931 30.2629167,4.62827586 29.81375,4.26662069 C29.3645833,3.90496552 28.8470833,3.72372414 28.26125,3.72289655 L25,3.72289655 C25,4.05889655 24.87625,4.3497931 24.62875,4.59558621 C24.38125,4.84137931 24.0883333,4.96427586 23.75,4.96427586 L16.25,4.96427586 C15.9116667,4.96427586 15.61875,4.84137931 15.37125,4.59558621 C15.12375,4.3497931 15,4.05889655 15,3.72289655 L11.73875,3.72289655 C11.1529167,3.72289655 10.6354167,3.90413793 10.18625,4.26662069 C9.73708333,4.62910345 9.44083333,5.09462069 9.2975,5.66317241 L9.2975,5.66317241 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-featured-title</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-featured-title" transform="translate(0.000000, 0.767750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-502" fill="#3498DB" mask="url(#mask-3)" x="0" y="-2" width="70" height="29"></rect>
|
||||
<text id="Title" mask="url(#mask-3)" font-family="HelveticaNeue-Bold, Helvetica Neue" font-size="10" font-weight="bold" fill="#FFFFFF">
|
||||
<tspan x="6.235" y="13">Title</tspan>
|
||||
</text>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="6" y="33" width="76" height="54"></rect>
|
||||
<path d="M7,17.1030097 L7,21.4294182 L7.57564258,21.4294182 L7.57564258,19.4479958 L9.85397534,19.4479958 L9.85397534,21.4294182 L10.4296179,21.4294182 L10.4296179,17.1030097 L9.85397534,17.1030097 L9.85397534,18.9632442 L7.57564258,18.9632442 L7.57564258,17.1030097 L7,17.1030097 Z M11.7081504,19.266214 C11.7081504,19.0480746 11.7364273,18.8329682 11.7929819,18.6208883 C11.8495366,18.4088084 11.9384068,18.2179394 12.0595953,18.0482754 C12.1807839,17.8786115 12.3363068,17.7422765 12.5261688,17.6392662 C12.7160308,17.536256 12.942246,17.4847516 13.2048211,17.4847516 C13.4673962,17.4847516 13.6936114,17.536256 13.8834734,17.6392662 C14.0733354,17.7422765 14.2288584,17.8786115 14.3500469,18.0482754 C14.4712354,18.2179394 14.5601057,18.4088084 14.6166603,18.6208883 C14.6732149,18.8329682 14.7014918,19.0480746 14.7014918,19.266214 C14.7014918,19.4843533 14.6732149,19.6994597 14.6166603,19.9115396 C14.5601057,20.1236195 14.4712354,20.3144886 14.3500469,20.4841525 C14.2288584,20.6538164 14.0733354,20.7901514 13.8834734,20.8931617 C13.6936114,20.9961719 13.4673962,21.0476763 13.2048211,21.0476763 C12.942246,21.0476763 12.7160308,20.9961719 12.5261688,20.8931617 C12.3363068,20.7901514 12.1807839,20.6538164 12.0595953,20.4841525 C11.9384068,20.3144886 11.8495366,20.1236195 11.7929819,19.9115396 C11.7364273,19.6994597 11.7081504,19.4843533 11.7081504,19.266214 L11.7081504,19.266214 Z M11.1325078,19.266214 C11.1325078,19.561106 11.175933,19.8448849 11.2627848,20.117559 C11.3496366,20.3902332 11.4799123,20.6315967 11.6536158,20.8416568 C11.8273194,21.0517169 12.0434357,21.2183486 12.3019712,21.341557 C12.5605067,21.4647653 12.8614536,21.5263685 13.2048211,21.5263685 C13.5481886,21.5263685 13.8491356,21.4647653 14.1076711,21.341557 C14.3662066,21.2183486 14.5823229,21.0517169 14.7560264,20.8416568 C14.9297299,20.6315967 15.0600056,20.3902332 15.1468574,20.117559 C15.2337092,19.8448849 15.2771344,19.561106 15.2771344,19.266214 C15.2771344,18.9713219 15.2337092,18.687543 15.1468574,18.4148689 C15.0600056,18.1421947 14.9297299,17.9008312 14.7560264,17.6907711 C14.5823229,17.480711 14.3662066,17.3130694 14.1076711,17.1878413 C13.8491356,17.0626131 13.5481886,17 13.2048211,17 C12.8614536,17 12.5605067,17.0626131 12.3019712,17.1878413 C12.0434357,17.3130694 11.8273194,17.480711 11.6536158,17.6907711 C11.4799123,17.9008312 11.3496366,18.1421947 11.2627848,18.4148689 C11.175933,18.687543 11.1325078,18.9713219 11.1325078,19.266214 L11.1325078,19.266214 Z M15.9921431,17.1030097 L15.9921431,21.4294182 L16.5374887,21.4294182 L16.5374887,17.8301372 L16.5496075,17.8301372 L17.9008527,21.4294182 L18.3916638,21.4294182 L19.742909,17.8301372 L19.7550278,17.8301372 L19.7550278,21.4294182 L20.3003734,21.4294182 L20.3003734,17.1030097 L19.512652,17.1030097 L18.1432286,20.7386471 L16.7798645,17.1030097 L15.9921431,17.1030097 Z M21.2577579,17.1030097 L21.2577579,21.4294182 L24.2632181,21.4294182 L24.2632181,20.9446666 L21.8334005,20.9446666 L21.8334005,19.4479958 L24.0814363,19.4479958 L24.0814363,18.9632442 L21.8334005,18.9632442 L21.8334005,17.5877614 L24.2450399,17.5877614 L24.2450399,17.1030097 L21.2577579,17.1030097 Z M27.8564397,17 L26.068918,21.5263685 L26.5051945,21.5263685 L28.2987756,17 L27.8564397,17 Z M30.3407919,17.1030097 L30.3407919,21.4294182 L30.8861375,21.4294182 L30.8861375,17.9573845 L30.8982563,17.9573845 L33.1584109,21.4294182 L33.7885881,21.4294182 L33.7885881,17.1030097 L33.2432424,17.1030097 L33.2432424,20.6113998 L33.2311237,20.6113998 L30.9527909,17.1030097 L30.3407919,17.1030097 Z M35.4670406,19.6418965 L36.2002275,17.6241177 L36.2123463,17.6241177 L36.9334144,19.6418965 L35.4670406,19.6418965 Z M35.8972577,17.1030097 L34.2127457,21.4294182 L34.8005071,21.4294182 L35.2852588,20.1266481 L37.1151962,20.1266481 L37.5878291,21.4294182 L38.2240656,21.4294182 L36.5334943,17.1030097 L35.8972577,17.1030097 Z M40.3509135,21.4294182 L41.89,17.1030097 L41.2901198,17.1030097 L40.0418843,20.8537756 L40.0297655,20.8537756 L38.7936488,17.1030097 L38.1755905,17.1030097 L39.6964988,21.4294182 L40.3509135,21.4294182 Z" id="HOME-/-NAV" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-featured</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-featured" transform="translate(0.000000, 0.767750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="6" y="26" width="76" height="54"></rect>
|
||||
<rect id="Rectangle-502" fill="#3498DB" mask="url(#mask-3)" x="0" y="-2" width="70" height="23"></rect>
|
||||
<path d="M7,9.10300973 L7,13.4294182 L7.57564258,13.4294182 L7.57564258,11.4479958 L9.85397534,11.4479958 L9.85397534,13.4294182 L10.4296179,13.4294182 L10.4296179,9.10300973 L9.85397534,9.10300973 L9.85397534,10.9632442 L7.57564258,10.9632442 L7.57564258,9.10300973 L7,9.10300973 Z M11.7081504,11.266214 C11.7081504,11.0480746 11.7364273,10.8329682 11.7929819,10.6208883 C11.8495366,10.4088084 11.9384068,10.2179394 12.0595953,10.0482754 C12.1807839,9.87861152 12.3363068,9.74227648 12.5261688,9.63926624 C12.7160308,9.536256 12.942246,9.48475165 13.2048211,9.48475165 C13.4673962,9.48475165 13.6936114,9.536256 13.8834734,9.63926624 C14.0733354,9.74227648 14.2288584,9.87861152 14.3500469,10.0482754 C14.4712354,10.2179394 14.5601057,10.4088084 14.6166603,10.6208883 C14.6732149,10.8329682 14.7014918,11.0480746 14.7014918,11.266214 C14.7014918,11.4843533 14.6732149,11.6994597 14.6166603,11.9115396 C14.5601057,12.1236195 14.4712354,12.3144886 14.3500469,12.4841525 C14.2288584,12.6538164 14.0733354,12.7901514 13.8834734,12.8931617 C13.6936114,12.9961719 13.4673962,13.0476763 13.2048211,13.0476763 C12.942246,13.0476763 12.7160308,12.9961719 12.5261688,12.8931617 C12.3363068,12.7901514 12.1807839,12.6538164 12.0595953,12.4841525 C11.9384068,12.3144886 11.8495366,12.1236195 11.7929819,11.9115396 C11.7364273,11.6994597 11.7081504,11.4843533 11.7081504,11.266214 L11.7081504,11.266214 Z M11.1325078,11.266214 C11.1325078,11.561106 11.175933,11.8448849 11.2627848,12.117559 C11.3496366,12.3902332 11.4799123,12.6315967 11.6536158,12.8416568 C11.8273194,13.0517169 12.0434357,13.2183486 12.3019712,13.341557 C12.5605067,13.4647653 12.8614536,13.5263685 13.2048211,13.5263685 C13.5481886,13.5263685 13.8491356,13.4647653 14.1076711,13.341557 C14.3662066,13.2183486 14.5823229,13.0517169 14.7560264,12.8416568 C14.9297299,12.6315967 15.0600056,12.3902332 15.1468574,12.117559 C15.2337092,11.8448849 15.2771344,11.561106 15.2771344,11.266214 C15.2771344,10.9713219 15.2337092,10.687543 15.1468574,10.4148689 C15.0600056,10.1421947 14.9297299,9.9008312 14.7560264,9.6907711 C14.5823229,9.480711 14.3662066,9.3130694 14.1076711,9.18784126 C13.8491356,9.06261313 13.5481886,9 13.2048211,9 C12.8614536,9 12.5605067,9.06261313 12.3019712,9.18784126 C12.0434357,9.3130694 11.8273194,9.480711 11.6536158,9.6907711 C11.4799123,9.9008312 11.3496366,10.1421947 11.2627848,10.4148689 C11.175933,10.687543 11.1325078,10.9713219 11.1325078,11.266214 L11.1325078,11.266214 Z M15.9921431,9.10300973 L15.9921431,13.4294182 L16.5374887,13.4294182 L16.5374887,9.8301372 L16.5496075,9.8301372 L17.9008527,13.4294182 L18.3916638,13.4294182 L19.742909,9.8301372 L19.7550278,9.8301372 L19.7550278,13.4294182 L20.3003734,13.4294182 L20.3003734,9.10300973 L19.512652,9.10300973 L18.1432286,12.7386471 L16.7798645,9.10300973 L15.9921431,9.10300973 Z M21.2577579,9.10300973 L21.2577579,13.4294182 L24.2632181,13.4294182 L24.2632181,12.9446666 L21.8334005,12.9446666 L21.8334005,11.4479958 L24.0814363,11.4479958 L24.0814363,10.9632442 L21.8334005,10.9632442 L21.8334005,9.58776138 L24.2450399,9.58776138 L24.2450399,9.10300973 L21.2577579,9.10300973 Z M27.8564397,9 L26.068918,13.5263685 L26.5051945,13.5263685 L28.2987756,9 L27.8564397,9 Z M30.3407919,9.10300973 L30.3407919,13.4294182 L30.8861375,13.4294182 L30.8861375,9.95738451 L30.8982563,9.95738451 L33.1584109,13.4294182 L33.7885881,13.4294182 L33.7885881,9.10300973 L33.2432424,9.10300973 L33.2432424,12.6113998 L33.2311237,12.6113998 L30.9527909,9.10300973 L30.3407919,9.10300973 Z M35.4670406,11.6418965 L36.2002275,9.62411775 L36.2123463,9.62411775 L36.9334144,11.6418965 L35.4670406,11.6418965 Z M35.8972577,9.10300973 L34.2127457,13.4294182 L34.8005071,13.4294182 L35.2852588,12.1266481 L37.1151962,12.1266481 L37.5878291,13.4294182 L38.2240656,13.4294182 L36.5334943,9.10300973 L35.8972577,9.10300973 Z M40.3509135,13.4294182 L41.89,9.10300973 L41.2901198,9.10300973 L40.0418843,12.8537756 L40.0297655,12.8537756 L38.7936488,9.10300973 L38.1755905,9.10300973 L39.6964988,13.4294182 L40.3509135,13.4294182 Z" id="HOME-/-NAV" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="67px" viewBox="0 0 70 67" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-left-sidebar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="27" y="7" width="34" height="50"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="50" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-left-sidebar">
|
||||
<text id="Left-Sidebar-" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Left Sidebar </tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="10" y="7" width="14" height="50"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="67px" viewBox="0 0 70 67" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-no-sidebar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-no-sidebar">
|
||||
<text id="No-Sidebar" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">No Sidebar</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-7" fill="#3498DB" mask="url(#mask-3)" x="12" y="7" width="47" height="43"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 6.9 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="68px" viewBox="0 0 70 68" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-right-sidebar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10" y="7" width="34" height="45"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="45" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-right-sidebar">
|
||||
<text id="Right-Sidebar-" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="65">Right Sidebar </tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="47" y="7" width="14" height="45"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="60px" viewBox="0 0 70 60" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-style-grid</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="60" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="60" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="60" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="9" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="26.9868552" y="9" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="44.9737103" y="9" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-10" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<rect id="path-11" x="9" y="31" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
<rect id="path-13" x="26.9868552" y="31" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-14" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-13"></use>
|
||||
</mask>
|
||||
<rect id="path-15" x="44.9737103" y="31" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-16" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-15"></use>
|
||||
</mask>
|
||||
<rect id="path-17" x="9" y="52" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-18" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-17"></use>
|
||||
</mask>
|
||||
<rect id="path-19" x="26.9868552" y="52" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-20" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-19"></use>
|
||||
</mask>
|
||||
<rect id="path-21" x="44.9737103" y="52" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-22" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-21"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-style-grid">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-10)" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-14)" xlink:href="#path-13"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-16)" xlink:href="#path-15"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-18)" xlink:href="#path-17"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-20)" xlink:href="#path-19"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-22)" xlink:href="#path-21"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="60px" viewBox="0 0 70 60" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-style-list</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="60" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="60" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="60" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="9" width="19" height="18.7272893"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="19" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="27" y="9" width="34" height="18.7272893"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="27" y="31" width="34" height="18.7272893"></rect>
|
||||
<mask id="mask-10" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<rect id="path-11" x="27" y="53" width="34" height="18.7272893"></rect>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
<rect id="path-13" x="9" y="31" width="19" height="18.7272893"></rect>
|
||||
<mask id="mask-14" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="19" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-13"></use>
|
||||
</mask>
|
||||
<rect id="path-15" x="9" y="53" width="19" height="18.7272893"></rect>
|
||||
<mask id="mask-16" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="19" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-15"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-style-list">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-10)" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-14)" xlink:href="#path-13"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-16)" xlink:href="#path-15"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="60px" viewBox="0 0 70 60" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-style-masonry</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="60" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="60" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="60" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="8.36364465" width="15.5341022" height="12"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="12" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="26.9868552" y="8" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
<rect id="path-9" x="44.9737103" y="8.86364465" width="15.5341022" height="13"></rect>
|
||||
<mask id="mask-10" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="13" fill="white">
|
||||
<use xlink:href="#path-9"></use>
|
||||
</mask>
|
||||
<rect id="path-11" x="9" y="23.3636446" width="15.5341022" height="18"></rect>
|
||||
<mask id="mask-12" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18" fill="white">
|
||||
<use xlink:href="#path-11"></use>
|
||||
</mask>
|
||||
<rect id="path-13" x="26.9868552" y="30" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-14" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-13"></use>
|
||||
</mask>
|
||||
<rect id="path-15" x="44.9737103" y="25" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-16" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-15"></use>
|
||||
</mask>
|
||||
<rect id="path-17" x="9" y="44.3636446" width="15.5341022" height="18"></rect>
|
||||
<mask id="mask-18" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18" fill="white">
|
||||
<use xlink:href="#path-17"></use>
|
||||
</mask>
|
||||
<rect id="path-19" x="26.9868552" y="51" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-20" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-19"></use>
|
||||
</mask>
|
||||
<rect id="path-21" x="44.9737103" y="46" width="15.5341022" height="18.7272893"></rect>
|
||||
<mask id="mask-22" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="15.5341022" height="18.7272893" fill="white">
|
||||
<use xlink:href="#path-21"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-style-masonry">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-10)" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-12)" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-14)" xlink:href="#path-13"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-16)" xlink:href="#path-15"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-18)" xlink:href="#path-17"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-20)" xlink:href="#path-19"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-22)" xlink:href="#path-21"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="52px" viewBox="0 0 72 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-title-center</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="3.12638804e-13" y="0" width="70" height="50" rx="4"></rect>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-title-center" transform="translate(1.000000, 0.767750)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" stroke="#00A0D2" stroke-linecap="square" xlink:href="#path-1"></use>
|
||||
<path d="M27.505,7.18 L27.505,13 L29.075,13 L29.075,7.18 L31.215,7.18 L31.215,5.86 L25.365,5.86 L25.365,7.18 L27.505,7.18 Z M33.345,7.03 L33.345,5.86 L31.925,5.86 L31.925,7.03 L33.345,7.03 Z M31.925,7.83 L31.925,13 L33.345,13 L33.345,7.83 L31.925,7.83 Z M36.265,7.83 L36.265,6.28 L34.845,6.28 L34.845,7.83 L33.985,7.83 L33.985,8.78 L34.845,8.78 L34.845,11.83 C34.845,12.0900013 34.8883329,12.2999992 34.975,12.46 C35.0616671,12.6200008 35.1799993,12.7433329 35.33,12.83 C35.4800008,12.9166671 35.6533324,12.9749998 35.85,13.005 C36.0466677,13.0350001 36.2549989,13.05 36.475,13.05 C36.6150007,13.05 36.7583326,13.0466667 36.905,13.04 C37.0516674,13.0333333 37.1849994,13.0200001 37.305,13 L37.305,11.9 C37.238333,11.9133334 37.1683337,11.9233333 37.095,11.93 C37.0216663,11.9366667 36.9450004,11.94 36.865,11.94 C36.6249988,11.94 36.4650004,11.9000004 36.385,11.82 C36.3049996,11.7399996 36.265,11.5800012 36.265,11.34 L36.265,8.78 L37.305,8.78 L37.305,7.83 L36.265,7.83 Z M38.025,5.86 L38.025,13 L39.445,13 L39.445,5.86 L38.025,5.86 Z M44.045,9.86 L41.735,9.86 C41.7416667,9.7599995 41.7633332,9.6466673 41.8,9.52 C41.8366669,9.3933327 41.8999996,9.2733339 41.99,9.16 C42.0800005,9.0466661 42.1999993,8.95166705 42.35,8.875 C42.5000008,8.79833295 42.6883322,8.76 42.915,8.76 C43.2616684,8.76 43.5199992,8.8533324 43.69,9.04 C43.8600009,9.2266676 43.978333,9.4999982 44.045,9.86 L44.045,9.86 Z M41.735,10.76 L45.465,10.76 C45.4916668,10.359998 45.4583338,9.9766685 45.365,9.61 C45.2716662,9.2433315 45.1200011,8.9166681 44.91,8.63 C44.699999,8.3433319 44.4316683,8.11500085 44.105,7.945 C43.7783317,7.77499915 43.3950022,7.69 42.955,7.69 C42.5616647,7.69 42.203335,7.7599993 41.88,7.9 C41.5566651,8.0400007 41.2783345,8.23166545 41.045,8.475 C40.8116655,8.71833455 40.6316673,9.006665 40.505,9.34 C40.3783327,9.673335 40.315,10.0333314 40.315,10.42 C40.315,10.820002 40.3766661,11.186665 40.5,11.52 C40.623334,11.853335 40.7983322,12.1399988 41.025,12.38 C41.2516678,12.6200012 41.5283317,12.8049993 41.855,12.935 C42.1816683,13.0650006 42.5483313,13.13 42.955,13.13 C43.5416696,13.13 44.0416646,12.996668 44.455,12.73 C44.8683354,12.463332 45.174999,12.0200031 45.375,11.4 L44.125,11.4 C44.0783331,11.5600008 43.9516677,11.7116659 43.745,11.855 C43.5383323,11.998334 43.2916681,12.07 43.005,12.07 C42.604998,12.07 42.2983344,11.9666677 42.085,11.76 C41.8716656,11.5533323 41.7550001,11.2200023 41.735,10.76 L41.735,10.76 Z" id="Title" fill="#3498DB" mask="url(#mask-2)"></path>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-2)" x="-4" y="26" width="86" height="54"></rect>
|
||||
<path d="M18,17.1030097 L18,21.4294182 L18.5756426,21.4294182 L18.5756426,19.4479958 L20.8539753,19.4479958 L20.8539753,21.4294182 L21.4296179,21.4294182 L21.4296179,17.1030097 L20.8539753,17.1030097 L20.8539753,18.9632442 L18.5756426,18.9632442 L18.5756426,17.1030097 L18,17.1030097 Z M22.7081504,19.266214 C22.7081504,19.0480746 22.7364273,18.8329682 22.7929819,18.6208883 C22.8495366,18.4088084 22.9384068,18.2179394 23.0595953,18.0482754 C23.1807839,17.8786115 23.3363068,17.7422765 23.5261688,17.6392662 C23.7160308,17.536256 23.942246,17.4847516 24.2048211,17.4847516 C24.4673962,17.4847516 24.6936114,17.536256 24.8834734,17.6392662 C25.0733354,17.7422765 25.2288584,17.8786115 25.3500469,18.0482754 C25.4712354,18.2179394 25.5601057,18.4088084 25.6166603,18.6208883 C25.6732149,18.8329682 25.7014918,19.0480746 25.7014918,19.266214 C25.7014918,19.4843533 25.6732149,19.6994597 25.6166603,19.9115396 C25.5601057,20.1236195 25.4712354,20.3144886 25.3500469,20.4841525 C25.2288584,20.6538164 25.0733354,20.7901514 24.8834734,20.8931617 C24.6936114,20.9961719 24.4673962,21.0476763 24.2048211,21.0476763 C23.942246,21.0476763 23.7160308,20.9961719 23.5261688,20.8931617 C23.3363068,20.7901514 23.1807839,20.6538164 23.0595953,20.4841525 C22.9384068,20.3144886 22.8495366,20.1236195 22.7929819,19.9115396 C22.7364273,19.6994597 22.7081504,19.4843533 22.7081504,19.266214 L22.7081504,19.266214 Z M22.1325078,19.266214 C22.1325078,19.561106 22.175933,19.8448849 22.2627848,20.117559 C22.3496366,20.3902332 22.4799123,20.6315967 22.6536158,20.8416568 C22.8273194,21.0517169 23.0434357,21.2183486 23.3019712,21.341557 C23.5605067,21.4647653 23.8614536,21.5263685 24.2048211,21.5263685 C24.5481886,21.5263685 24.8491356,21.4647653 25.1076711,21.341557 C25.3662066,21.2183486 25.5823229,21.0517169 25.7560264,20.8416568 C25.9297299,20.6315967 26.0600056,20.3902332 26.1468574,20.117559 C26.2337092,19.8448849 26.2771344,19.561106 26.2771344,19.266214 C26.2771344,18.9713219 26.2337092,18.687543 26.1468574,18.4148689 C26.0600056,18.1421947 25.9297299,17.9008312 25.7560264,17.6907711 C25.5823229,17.480711 25.3662066,17.3130694 25.1076711,17.1878413 C24.8491356,17.0626131 24.5481886,17 24.2048211,17 C23.8614536,17 23.5605067,17.0626131 23.3019712,17.1878413 C23.0434357,17.3130694 22.8273194,17.480711 22.6536158,17.6907711 C22.4799123,17.9008312 22.3496366,18.1421947 22.2627848,18.4148689 C22.175933,18.687543 22.1325078,18.9713219 22.1325078,19.266214 L22.1325078,19.266214 Z M26.9921431,17.1030097 L26.9921431,21.4294182 L27.5374887,21.4294182 L27.5374887,17.8301372 L27.5496075,17.8301372 L28.9008527,21.4294182 L29.3916638,21.4294182 L30.742909,17.8301372 L30.7550278,17.8301372 L30.7550278,21.4294182 L31.3003734,21.4294182 L31.3003734,17.1030097 L30.512652,17.1030097 L29.1432286,20.7386471 L27.7798645,17.1030097 L26.9921431,17.1030097 Z M32.2577579,17.1030097 L32.2577579,21.4294182 L35.2632181,21.4294182 L35.2632181,20.9446666 L32.8334005,20.9446666 L32.8334005,19.4479958 L35.0814363,19.4479958 L35.0814363,18.9632442 L32.8334005,18.9632442 L32.8334005,17.5877614 L35.2450399,17.5877614 L35.2450399,17.1030097 L32.2577579,17.1030097 Z M38.8564397,17 L37.068918,21.5263685 L37.5051945,21.5263685 L39.2987756,17 L38.8564397,17 Z M41.3407919,17.1030097 L41.3407919,21.4294182 L41.8861375,21.4294182 L41.8861375,17.9573845 L41.8982563,17.9573845 L44.1584109,21.4294182 L44.7885881,21.4294182 L44.7885881,17.1030097 L44.2432424,17.1030097 L44.2432424,20.6113998 L44.2311237,20.6113998 L41.9527909,17.1030097 L41.3407919,17.1030097 Z M46.4670406,19.6418965 L47.2002275,17.6241177 L47.2123463,17.6241177 L47.9334144,19.6418965 L46.4670406,19.6418965 Z M46.8972577,17.1030097 L45.2127457,21.4294182 L45.8005071,21.4294182 L46.2852588,20.1266481 L48.1151962,20.1266481 L48.5878291,21.4294182 L49.2240656,21.4294182 L47.5334943,17.1030097 L46.8972577,17.1030097 Z M51.3509135,21.4294182 L52.89,17.1030097 L52.2901198,17.1030097 L51.0418843,20.8537756 L51.0297655,20.8537756 L49.7936488,17.1030097 L49.1755905,17.1030097 L50.6964988,21.4294182 L51.3509135,21.4294182 Z" id="HOME-/-NAV" fill="#3498DB" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.5 KiB |
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-title-featured-center</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="1.13686838e-13" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-title-featured-center" transform="translate(0.000000, 0.855750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-502" fill="#3498DB" mask="url(#mask-3)" x="1.13686838e-13" y="-7" width="70" height="29"></rect>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="4" y="26" width="62" height="54"></rect>
|
||||
<path d="M18,10.1030097 L18,14.4294182 L18.5756426,14.4294182 L18.5756426,12.4479958 L20.8539753,12.4479958 L20.8539753,14.4294182 L21.4296179,14.4294182 L21.4296179,10.1030097 L20.8539753,10.1030097 L20.8539753,11.9632442 L18.5756426,11.9632442 L18.5756426,10.1030097 L18,10.1030097 Z M22.7081504,12.266214 C22.7081504,12.0480746 22.7364273,11.8329682 22.7929819,11.6208883 C22.8495366,11.4088084 22.9384068,11.2179394 23.0595953,11.0482754 C23.1807839,10.8786115 23.3363068,10.7422765 23.5261688,10.6392662 C23.7160308,10.536256 23.942246,10.4847516 24.2048211,10.4847516 C24.4673962,10.4847516 24.6936114,10.536256 24.8834734,10.6392662 C25.0733354,10.7422765 25.2288584,10.8786115 25.3500469,11.0482754 C25.4712354,11.2179394 25.5601057,11.4088084 25.6166603,11.6208883 C25.6732149,11.8329682 25.7014918,12.0480746 25.7014918,12.266214 C25.7014918,12.4843533 25.6732149,12.6994597 25.6166603,12.9115396 C25.5601057,13.1236195 25.4712354,13.3144886 25.3500469,13.4841525 C25.2288584,13.6538164 25.0733354,13.7901514 24.8834734,13.8931617 C24.6936114,13.9961719 24.4673962,14.0476763 24.2048211,14.0476763 C23.942246,14.0476763 23.7160308,13.9961719 23.5261688,13.8931617 C23.3363068,13.7901514 23.1807839,13.6538164 23.0595953,13.4841525 C22.9384068,13.3144886 22.8495366,13.1236195 22.7929819,12.9115396 C22.7364273,12.6994597 22.7081504,12.4843533 22.7081504,12.266214 L22.7081504,12.266214 Z M22.1325078,12.266214 C22.1325078,12.561106 22.175933,12.8448849 22.2627848,13.117559 C22.3496366,13.3902332 22.4799123,13.6315967 22.6536158,13.8416568 C22.8273194,14.0517169 23.0434357,14.2183486 23.3019712,14.341557 C23.5605067,14.4647653 23.8614536,14.5263685 24.2048211,14.5263685 C24.5481886,14.5263685 24.8491356,14.4647653 25.1076711,14.341557 C25.3662066,14.2183486 25.5823229,14.0517169 25.7560264,13.8416568 C25.9297299,13.6315967 26.0600056,13.3902332 26.1468574,13.117559 C26.2337092,12.8448849 26.2771344,12.561106 26.2771344,12.266214 C26.2771344,11.9713219 26.2337092,11.687543 26.1468574,11.4148689 C26.0600056,11.1421947 25.9297299,10.9008312 25.7560264,10.6907711 C25.5823229,10.480711 25.3662066,10.3130694 25.1076711,10.1878413 C24.8491356,10.0626131 24.5481886,10 24.2048211,10 C23.8614536,10 23.5605067,10.0626131 23.3019712,10.1878413 C23.0434357,10.3130694 22.8273194,10.480711 22.6536158,10.6907711 C22.4799123,10.9008312 22.3496366,11.1421947 22.2627848,11.4148689 C22.175933,11.687543 22.1325078,11.9713219 22.1325078,12.266214 L22.1325078,12.266214 Z M26.9921431,10.1030097 L26.9921431,14.4294182 L27.5374887,14.4294182 L27.5374887,10.8301372 L27.5496075,10.8301372 L28.9008527,14.4294182 L29.3916638,14.4294182 L30.742909,10.8301372 L30.7550278,10.8301372 L30.7550278,14.4294182 L31.3003734,14.4294182 L31.3003734,10.1030097 L30.512652,10.1030097 L29.1432286,13.7386471 L27.7798645,10.1030097 L26.9921431,10.1030097 Z M32.2577579,10.1030097 L32.2577579,14.4294182 L35.2632181,14.4294182 L35.2632181,13.9446666 L32.8334005,13.9446666 L32.8334005,12.4479958 L35.0814363,12.4479958 L35.0814363,11.9632442 L32.8334005,11.9632442 L32.8334005,10.5877614 L35.2450399,10.5877614 L35.2450399,10.1030097 L32.2577579,10.1030097 Z M38.8564397,10 L37.068918,14.5263685 L37.5051945,14.5263685 L39.2987756,10 L38.8564397,10 Z M41.3407919,10.1030097 L41.3407919,14.4294182 L41.8861375,14.4294182 L41.8861375,10.9573845 L41.8982563,10.9573845 L44.1584109,14.4294182 L44.7885881,14.4294182 L44.7885881,10.1030097 L44.2432424,10.1030097 L44.2432424,13.6113998 L44.2311237,13.6113998 L41.9527909,10.1030097 L41.3407919,10.1030097 Z M46.4670406,12.6418965 L47.2002275,10.6241177 L47.2123463,10.6241177 L47.9334144,12.6418965 L46.4670406,12.6418965 Z M46.8972577,10.1030097 L45.2127457,14.4294182 L45.8005071,14.4294182 L46.2852588,13.1266481 L48.1151962,13.1266481 L48.5878291,14.4294182 L49.2240656,14.4294182 L47.5334943,10.1030097 L46.8972577,10.1030097 Z M51.3509135,14.4294182 L52.89,10.1030097 L52.2901198,10.1030097 L51.0418843,13.8537756 L51.0297655,13.8537756 L49.7936488,10.1030097 L49.1755905,10.1030097 L50.6964988,14.4294182 L51.3509135,14.4294182 Z" id="HOME-/-NAV" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-title-featured</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-title-featured" transform="translate(0.000000, 0.855750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="6" y="26" width="76" height="54"></rect>
|
||||
<rect id="Rectangle-502" fill="#3498DB" mask="url(#mask-3)" x="0" y="-2" width="70" height="23"></rect>
|
||||
<path d="M7,9.10300973 L7,13.4294182 L7.57564258,13.4294182 L7.57564258,11.4479958 L9.85397534,11.4479958 L9.85397534,13.4294182 L10.4296179,13.4294182 L10.4296179,9.10300973 L9.85397534,9.10300973 L9.85397534,10.9632442 L7.57564258,10.9632442 L7.57564258,9.10300973 L7,9.10300973 Z M11.7081504,11.266214 C11.7081504,11.0480746 11.7364273,10.8329682 11.7929819,10.6208883 C11.8495366,10.4088084 11.9384068,10.2179394 12.0595953,10.0482754 C12.1807839,9.87861152 12.3363068,9.74227648 12.5261688,9.63926624 C12.7160308,9.536256 12.942246,9.48475165 13.2048211,9.48475165 C13.4673962,9.48475165 13.6936114,9.536256 13.8834734,9.63926624 C14.0733354,9.74227648 14.2288584,9.87861152 14.3500469,10.0482754 C14.4712354,10.2179394 14.5601057,10.4088084 14.6166603,10.6208883 C14.6732149,10.8329682 14.7014918,11.0480746 14.7014918,11.266214 C14.7014918,11.4843533 14.6732149,11.6994597 14.6166603,11.9115396 C14.5601057,12.1236195 14.4712354,12.3144886 14.3500469,12.4841525 C14.2288584,12.6538164 14.0733354,12.7901514 13.8834734,12.8931617 C13.6936114,12.9961719 13.4673962,13.0476763 13.2048211,13.0476763 C12.942246,13.0476763 12.7160308,12.9961719 12.5261688,12.8931617 C12.3363068,12.7901514 12.1807839,12.6538164 12.0595953,12.4841525 C11.9384068,12.3144886 11.8495366,12.1236195 11.7929819,11.9115396 C11.7364273,11.6994597 11.7081504,11.4843533 11.7081504,11.266214 L11.7081504,11.266214 Z M11.1325078,11.266214 C11.1325078,11.561106 11.175933,11.8448849 11.2627848,12.117559 C11.3496366,12.3902332 11.4799123,12.6315967 11.6536158,12.8416568 C11.8273194,13.0517169 12.0434357,13.2183486 12.3019712,13.341557 C12.5605067,13.4647653 12.8614536,13.5263685 13.2048211,13.5263685 C13.5481886,13.5263685 13.8491356,13.4647653 14.1076711,13.341557 C14.3662066,13.2183486 14.5823229,13.0517169 14.7560264,12.8416568 C14.9297299,12.6315967 15.0600056,12.3902332 15.1468574,12.117559 C15.2337092,11.8448849 15.2771344,11.561106 15.2771344,11.266214 C15.2771344,10.9713219 15.2337092,10.687543 15.1468574,10.4148689 C15.0600056,10.1421947 14.9297299,9.9008312 14.7560264,9.6907711 C14.5823229,9.480711 14.3662066,9.3130694 14.1076711,9.18784126 C13.8491356,9.06261313 13.5481886,9 13.2048211,9 C12.8614536,9 12.5605067,9.06261313 12.3019712,9.18784126 C12.0434357,9.3130694 11.8273194,9.480711 11.6536158,9.6907711 C11.4799123,9.9008312 11.3496366,10.1421947 11.2627848,10.4148689 C11.175933,10.687543 11.1325078,10.9713219 11.1325078,11.266214 L11.1325078,11.266214 Z M15.9921431,9.10300973 L15.9921431,13.4294182 L16.5374887,13.4294182 L16.5374887,9.8301372 L16.5496075,9.8301372 L17.9008527,13.4294182 L18.3916638,13.4294182 L19.742909,9.8301372 L19.7550278,9.8301372 L19.7550278,13.4294182 L20.3003734,13.4294182 L20.3003734,9.10300973 L19.512652,9.10300973 L18.1432286,12.7386471 L16.7798645,9.10300973 L15.9921431,9.10300973 Z M21.2577579,9.10300973 L21.2577579,13.4294182 L24.2632181,13.4294182 L24.2632181,12.9446666 L21.8334005,12.9446666 L21.8334005,11.4479958 L24.0814363,11.4479958 L24.0814363,10.9632442 L21.8334005,10.9632442 L21.8334005,9.58776138 L24.2450399,9.58776138 L24.2450399,9.10300973 L21.2577579,9.10300973 Z M27.8564397,9 L26.068918,13.5263685 L26.5051945,13.5263685 L28.2987756,9 L27.8564397,9 Z M30.3407919,9.10300973 L30.3407919,13.4294182 L30.8861375,13.4294182 L30.8861375,9.95738451 L30.8982563,9.95738451 L33.1584109,13.4294182 L33.7885881,13.4294182 L33.7885881,9.10300973 L33.2432424,9.10300973 L33.2432424,12.6113998 L33.2311237,12.6113998 L30.9527909,9.10300973 L30.3407919,9.10300973 Z M35.4670406,11.6418965 L36.2002275,9.62411775 L36.2123463,9.62411775 L36.9334144,11.6418965 L35.4670406,11.6418965 Z M35.8972577,9.10300973 L34.2127457,13.4294182 L34.8005071,13.4294182 L35.2852588,12.1266481 L37.1151962,12.1266481 L37.5878291,13.4294182 L38.2240656,13.4294182 L36.5334943,9.10300973 L35.8972577,9.10300973 Z M40.3509135,13.4294182 L41.89,9.10300973 L41.2901198,9.10300973 L40.0418843,12.8537756 L40.0297655,12.8537756 L38.7936488,9.10300973 L38.1755905,9.10300973 L39.6964988,13.4294182 L40.3509135,13.4294182 Z" id="HOME-/-NAV" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-title-push</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-title-push" transform="translate(0.000000, 0.767750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-502" fill="#3498DB" mask="url(#mask-3)" x="0" y="-2" width="70" height="35"></rect>
|
||||
<rect id="Rectangle-502" fill="#FFFFFF" mask="url(#mask-3)" x="8" y="19" width="76" height="54"></rect>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="11" y="22" width="76" height="54"></rect>
|
||||
<path d="M9,9.10300973 L9,13.4294182 L9.57564258,13.4294182 L9.57564258,11.4479958 L11.8539753,11.4479958 L11.8539753,13.4294182 L12.4296179,13.4294182 L12.4296179,9.10300973 L11.8539753,9.10300973 L11.8539753,10.9632442 L9.57564258,10.9632442 L9.57564258,9.10300973 L9,9.10300973 Z M13.7081504,11.266214 C13.7081504,11.0480746 13.7364273,10.8329682 13.7929819,10.6208883 C13.8495366,10.4088084 13.9384068,10.2179394 14.0595953,10.0482754 C14.1807839,9.87861152 14.3363068,9.74227648 14.5261688,9.63926624 C14.7160308,9.536256 14.942246,9.48475165 15.2048211,9.48475165 C15.4673962,9.48475165 15.6936114,9.536256 15.8834734,9.63926624 C16.0733354,9.74227648 16.2288584,9.87861152 16.3500469,10.0482754 C16.4712354,10.2179394 16.5601057,10.4088084 16.6166603,10.6208883 C16.6732149,10.8329682 16.7014918,11.0480746 16.7014918,11.266214 C16.7014918,11.4843533 16.6732149,11.6994597 16.6166603,11.9115396 C16.5601057,12.1236195 16.4712354,12.3144886 16.3500469,12.4841525 C16.2288584,12.6538164 16.0733354,12.7901514 15.8834734,12.8931617 C15.6936114,12.9961719 15.4673962,13.0476763 15.2048211,13.0476763 C14.942246,13.0476763 14.7160308,12.9961719 14.5261688,12.8931617 C14.3363068,12.7901514 14.1807839,12.6538164 14.0595953,12.4841525 C13.9384068,12.3144886 13.8495366,12.1236195 13.7929819,11.9115396 C13.7364273,11.6994597 13.7081504,11.4843533 13.7081504,11.266214 L13.7081504,11.266214 Z M13.1325078,11.266214 C13.1325078,11.561106 13.175933,11.8448849 13.2627848,12.117559 C13.3496366,12.3902332 13.4799123,12.6315967 13.6536158,12.8416568 C13.8273194,13.0517169 14.0434357,13.2183486 14.3019712,13.341557 C14.5605067,13.4647653 14.8614536,13.5263685 15.2048211,13.5263685 C15.5481886,13.5263685 15.8491356,13.4647653 16.1076711,13.341557 C16.3662066,13.2183486 16.5823229,13.0517169 16.7560264,12.8416568 C16.9297299,12.6315967 17.0600056,12.3902332 17.1468574,12.117559 C17.2337092,11.8448849 17.2771344,11.561106 17.2771344,11.266214 C17.2771344,10.9713219 17.2337092,10.687543 17.1468574,10.4148689 C17.0600056,10.1421947 16.9297299,9.9008312 16.7560264,9.6907711 C16.5823229,9.480711 16.3662066,9.3130694 16.1076711,9.18784126 C15.8491356,9.06261313 15.5481886,9 15.2048211,9 C14.8614536,9 14.5605067,9.06261313 14.3019712,9.18784126 C14.0434357,9.3130694 13.8273194,9.480711 13.6536158,9.6907711 C13.4799123,9.9008312 13.3496366,10.1421947 13.2627848,10.4148689 C13.175933,10.687543 13.1325078,10.9713219 13.1325078,11.266214 L13.1325078,11.266214 Z M17.9921431,9.10300973 L17.9921431,13.4294182 L18.5374887,13.4294182 L18.5374887,9.8301372 L18.5496075,9.8301372 L19.9008527,13.4294182 L20.3916638,13.4294182 L21.742909,9.8301372 L21.7550278,9.8301372 L21.7550278,13.4294182 L22.3003734,13.4294182 L22.3003734,9.10300973 L21.512652,9.10300973 L20.1432286,12.7386471 L18.7798645,9.10300973 L17.9921431,9.10300973 Z M23.2577579,9.10300973 L23.2577579,13.4294182 L26.2632181,13.4294182 L26.2632181,12.9446666 L23.8334005,12.9446666 L23.8334005,11.4479958 L26.0814363,11.4479958 L26.0814363,10.9632442 L23.8334005,10.9632442 L23.8334005,9.58776138 L26.2450399,9.58776138 L26.2450399,9.10300973 L23.2577579,9.10300973 Z M29.8564397,9 L28.068918,13.5263685 L28.5051945,13.5263685 L30.2987756,9 L29.8564397,9 Z M32.3407919,9.10300973 L32.3407919,13.4294182 L32.8861375,13.4294182 L32.8861375,9.95738451 L32.8982563,9.95738451 L35.1584109,13.4294182 L35.7885881,13.4294182 L35.7885881,9.10300973 L35.2432424,9.10300973 L35.2432424,12.6113998 L35.2311237,12.6113998 L32.9527909,9.10300973 L32.3407919,9.10300973 Z M37.4670406,11.6418965 L38.2002275,9.62411775 L38.2123463,9.62411775 L38.9334144,11.6418965 L37.4670406,11.6418965 Z M37.8972577,9.10300973 L36.2127457,13.4294182 L36.8005071,13.4294182 L37.2852588,12.1266481 L39.1151962,12.1266481 L39.5878291,13.4294182 L40.2240656,13.4294182 L38.5334943,9.10300973 L37.8972577,9.10300973 Z M42.3509135,13.4294182 L43.89,9.10300973 L43.2901198,9.10300973 L42.0418843,12.8537756 L42.0297655,12.8537756 L40.7936488,9.10300973 L40.1755905,9.10300973 L41.6964988,13.4294182 L42.3509135,13.4294182 Z" id="HOME-/-NAV" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-title-title</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-title-title" transform="translate(0.000000, 0.767750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<path d="M8.505,7.18 L8.505,13 L10.075,13 L10.075,7.18 L12.215,7.18 L12.215,5.86 L6.365,5.86 L6.365,7.18 L8.505,7.18 Z M14.345,7.03 L14.345,5.86 L12.925,5.86 L12.925,7.03 L14.345,7.03 Z M12.925,7.83 L12.925,13 L14.345,13 L14.345,7.83 L12.925,7.83 Z M17.265,7.83 L17.265,6.28 L15.845,6.28 L15.845,7.83 L14.985,7.83 L14.985,8.78 L15.845,8.78 L15.845,11.83 C15.845,12.0900013 15.8883329,12.2999992 15.975,12.46 C16.0616671,12.6200008 16.1799993,12.7433329 16.33,12.83 C16.4800008,12.9166671 16.6533324,12.9749998 16.85,13.005 C17.0466677,13.0350001 17.2549989,13.05 17.475,13.05 C17.6150007,13.05 17.7583326,13.0466667 17.905,13.04 C18.0516674,13.0333333 18.1849994,13.0200001 18.305,13 L18.305,11.9 C18.238333,11.9133334 18.1683337,11.9233333 18.095,11.93 C18.0216663,11.9366667 17.9450004,11.94 17.865,11.94 C17.6249988,11.94 17.4650004,11.9000004 17.385,11.82 C17.3049996,11.7399996 17.265,11.5800012 17.265,11.34 L17.265,8.78 L18.305,8.78 L18.305,7.83 L17.265,7.83 Z M19.025,5.86 L19.025,13 L20.445,13 L20.445,5.86 L19.025,5.86 Z M25.045,9.86 L22.735,9.86 C22.7416667,9.7599995 22.7633332,9.6466673 22.8,9.52 C22.8366669,9.3933327 22.8999996,9.2733339 22.99,9.16 C23.0800005,9.0466661 23.1999993,8.95166705 23.35,8.875 C23.5000008,8.79833295 23.6883322,8.76 23.915,8.76 C24.2616684,8.76 24.5199992,8.8533324 24.69,9.04 C24.8600009,9.2266676 24.978333,9.4999982 25.045,9.86 L25.045,9.86 Z M22.735,10.76 L26.465,10.76 C26.4916668,10.359998 26.4583338,9.9766685 26.365,9.61 C26.2716662,9.2433315 26.1200011,8.9166681 25.91,8.63 C25.699999,8.3433319 25.4316683,8.11500085 25.105,7.945 C24.7783317,7.77499915 24.3950022,7.69 23.955,7.69 C23.5616647,7.69 23.203335,7.7599993 22.88,7.9 C22.5566651,8.0400007 22.2783345,8.23166545 22.045,8.475 C21.8116655,8.71833455 21.6316673,9.006665 21.505,9.34 C21.3783327,9.673335 21.315,10.0333314 21.315,10.42 C21.315,10.820002 21.3766661,11.186665 21.5,11.52 C21.623334,11.853335 21.7983322,12.1399988 22.025,12.38 C22.2516678,12.6200012 22.5283317,12.8049993 22.855,12.935 C23.1816683,13.0650006 23.5483313,13.13 23.955,13.13 C24.5416696,13.13 25.0416646,12.996668 25.455,12.73 C25.8683354,12.463332 26.174999,12.0200031 26.375,11.4 L25.125,11.4 C25.0783331,11.5600008 24.9516677,11.7116659 24.745,11.855 C24.5383323,11.998334 24.2916681,12.07 24.005,12.07 C23.604998,12.07 23.2983344,11.9666677 23.085,11.76 C22.8716656,11.5533323 22.7550001,11.2200023 22.735,10.76 L22.735,10.76 Z" id="Title" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="6" y="26" width="76" height="54"></rect>
|
||||
<path d="M7,17.1030097 L7,21.4294182 L7.57564258,21.4294182 L7.57564258,19.4479958 L9.85397534,19.4479958 L9.85397534,21.4294182 L10.4296179,21.4294182 L10.4296179,17.1030097 L9.85397534,17.1030097 L9.85397534,18.9632442 L7.57564258,18.9632442 L7.57564258,17.1030097 L7,17.1030097 Z M11.7081504,19.266214 C11.7081504,19.0480746 11.7364273,18.8329682 11.7929819,18.6208883 C11.8495366,18.4088084 11.9384068,18.2179394 12.0595953,18.0482754 C12.1807839,17.8786115 12.3363068,17.7422765 12.5261688,17.6392662 C12.7160308,17.536256 12.942246,17.4847516 13.2048211,17.4847516 C13.4673962,17.4847516 13.6936114,17.536256 13.8834734,17.6392662 C14.0733354,17.7422765 14.2288584,17.8786115 14.3500469,18.0482754 C14.4712354,18.2179394 14.5601057,18.4088084 14.6166603,18.6208883 C14.6732149,18.8329682 14.7014918,19.0480746 14.7014918,19.266214 C14.7014918,19.4843533 14.6732149,19.6994597 14.6166603,19.9115396 C14.5601057,20.1236195 14.4712354,20.3144886 14.3500469,20.4841525 C14.2288584,20.6538164 14.0733354,20.7901514 13.8834734,20.8931617 C13.6936114,20.9961719 13.4673962,21.0476763 13.2048211,21.0476763 C12.942246,21.0476763 12.7160308,20.9961719 12.5261688,20.8931617 C12.3363068,20.7901514 12.1807839,20.6538164 12.0595953,20.4841525 C11.9384068,20.3144886 11.8495366,20.1236195 11.7929819,19.9115396 C11.7364273,19.6994597 11.7081504,19.4843533 11.7081504,19.266214 L11.7081504,19.266214 Z M11.1325078,19.266214 C11.1325078,19.561106 11.175933,19.8448849 11.2627848,20.117559 C11.3496366,20.3902332 11.4799123,20.6315967 11.6536158,20.8416568 C11.8273194,21.0517169 12.0434357,21.2183486 12.3019712,21.341557 C12.5605067,21.4647653 12.8614536,21.5263685 13.2048211,21.5263685 C13.5481886,21.5263685 13.8491356,21.4647653 14.1076711,21.341557 C14.3662066,21.2183486 14.5823229,21.0517169 14.7560264,20.8416568 C14.9297299,20.6315967 15.0600056,20.3902332 15.1468574,20.117559 C15.2337092,19.8448849 15.2771344,19.561106 15.2771344,19.266214 C15.2771344,18.9713219 15.2337092,18.687543 15.1468574,18.4148689 C15.0600056,18.1421947 14.9297299,17.9008312 14.7560264,17.6907711 C14.5823229,17.480711 14.3662066,17.3130694 14.1076711,17.1878413 C13.8491356,17.0626131 13.5481886,17 13.2048211,17 C12.8614536,17 12.5605067,17.0626131 12.3019712,17.1878413 C12.0434357,17.3130694 11.8273194,17.480711 11.6536158,17.6907711 C11.4799123,17.9008312 11.3496366,18.1421947 11.2627848,18.4148689 C11.175933,18.687543 11.1325078,18.9713219 11.1325078,19.266214 L11.1325078,19.266214 Z M15.9921431,17.1030097 L15.9921431,21.4294182 L16.5374887,21.4294182 L16.5374887,17.8301372 L16.5496075,17.8301372 L17.9008527,21.4294182 L18.3916638,21.4294182 L19.742909,17.8301372 L19.7550278,17.8301372 L19.7550278,21.4294182 L20.3003734,21.4294182 L20.3003734,17.1030097 L19.512652,17.1030097 L18.1432286,20.7386471 L16.7798645,17.1030097 L15.9921431,17.1030097 Z M21.2577579,17.1030097 L21.2577579,21.4294182 L24.2632181,21.4294182 L24.2632181,20.9446666 L21.8334005,20.9446666 L21.8334005,19.4479958 L24.0814363,19.4479958 L24.0814363,18.9632442 L21.8334005,18.9632442 L21.8334005,17.5877614 L24.2450399,17.5877614 L24.2450399,17.1030097 L21.2577579,17.1030097 Z M27.8564397,17 L26.068918,21.5263685 L26.5051945,21.5263685 L28.2987756,17 L27.8564397,17 Z M30.3407919,17.1030097 L30.3407919,21.4294182 L30.8861375,21.4294182 L30.8861375,17.9573845 L30.8982563,17.9573845 L33.1584109,21.4294182 L33.7885881,21.4294182 L33.7885881,17.1030097 L33.2432424,17.1030097 L33.2432424,20.6113998 L33.2311237,20.6113998 L30.9527909,17.1030097 L30.3407919,17.1030097 Z M35.4670406,19.6418965 L36.2002275,17.6241177 L36.2123463,17.6241177 L36.9334144,19.6418965 L35.4670406,19.6418965 Z M35.8972577,17.1030097 L34.2127457,21.4294182 L34.8005071,21.4294182 L35.2852588,20.1266481 L37.1151962,20.1266481 L37.5878291,21.4294182 L38.2240656,21.4294182 L36.5334943,17.1030097 L35.8972577,17.1030097 Z M40.3509135,21.4294182 L41.89,17.1030097 L41.2901198,17.1030097 L40.0418843,20.8537756 L40.0297655,20.8537756 L38.7936488,17.1030097 L38.1755905,17.1030097 L39.6964988,21.4294182 L40.3509135,21.4294182 Z" id="HOME-/-NAV" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.9 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="51px" viewBox="0 0 70 51" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>category-title</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="category-title" transform="translate(0.000000, 0.855750)">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-502" fill="#3498DB" opacity="0.2" mask="url(#mask-3)" x="6" y="16" width="76" height="54"></rect>
|
||||
<path d="M6.11,6.73664119 L6.11,11.0630497 L6.68564258,11.0630497 L6.68564258,9.0816273 L8.96397534,9.0816273 L8.96397534,11.0630497 L9.53961792,11.0630497 L9.53961792,6.73664119 L8.96397534,6.73664119 L8.96397534,8.59687565 L6.68564258,8.59687565 L6.68564258,6.73664119 L6.11,6.73664119 Z M10.8181504,8.89984543 C10.8181504,8.6817061 10.8464273,8.46659971 10.9029819,8.2545198 C10.9595366,8.04243989 11.0484068,7.85157084 11.1695953,7.68190691 C11.2907839,7.51224299 11.4463068,7.37590795 11.6361688,7.27289771 C11.8260308,7.16988747 12.052246,7.11838312 12.3148211,7.11838312 C12.5773962,7.11838312 12.8036114,7.16988747 12.9934734,7.27289771 C13.1833354,7.37590795 13.3388584,7.51224299 13.4600469,7.68190691 C13.5812354,7.85157084 13.6701057,8.04243989 13.7266603,8.2545198 C13.7832149,8.46659971 13.8114918,8.6817061 13.8114918,8.89984543 C13.8114918,9.11798477 13.7832149,9.33309116 13.7266603,9.54517107 C13.6701057,9.75725097 13.5812354,9.94812003 13.4600469,10.117784 C13.3388584,10.2874479 13.1833354,10.4237829 12.9934734,10.5267932 C12.8036114,10.6298034 12.5773962,10.6813077 12.3148211,10.6813077 C12.052246,10.6813077 11.8260308,10.6298034 11.6361688,10.5267932 C11.4463068,10.4237829 11.2907839,10.2874479 11.1695953,10.117784 C11.0484068,9.94812003 10.9595366,9.75725097 10.9029819,9.54517107 C10.8464273,9.33309116 10.8181504,9.11798477 10.8181504,8.89984543 L10.8181504,8.89984543 Z M10.2425078,8.89984543 C10.2425078,9.19473749 10.285933,9.47851635 10.3727848,9.75119052 C10.4596366,10.0238647 10.5899123,10.2652282 10.7636158,10.4752883 C10.9373194,10.6853484 11.1534357,10.8519801 11.4119712,10.9751884 C11.6705067,11.0983968 11.9714536,11.16 12.3148211,11.16 C12.6581886,11.16 12.9591356,11.0983968 13.2176711,10.9751884 C13.4762066,10.8519801 13.6923229,10.6853484 13.8660264,10.4752883 C14.0397299,10.2652282 14.1700056,10.0238647 14.2568574,9.75119052 C14.3437092,9.47851635 14.3871344,9.19473749 14.3871344,8.89984543 C14.3871344,8.60495337 14.3437092,8.32117451 14.2568574,8.04850035 C14.1700056,7.77582618 14.0397299,7.53446267 13.8660264,7.32440257 C13.6923229,7.11434247 13.4762066,6.94670087 13.2176711,6.82147273 C12.9591356,6.6962446 12.6581886,6.63363147 12.3148211,6.63363147 C11.9714536,6.63363147 11.6705067,6.6962446 11.4119712,6.82147273 C11.1534357,6.94670087 10.9373194,7.11434247 10.7636158,7.32440257 C10.5899123,7.53446267 10.4596366,7.77582618 10.3727848,8.04850035 C10.285933,8.32117451 10.2425078,8.60495337 10.2425078,8.89984543 L10.2425078,8.89984543 Z M15.1021431,6.73664119 L15.1021431,11.0630497 L15.6474887,11.0630497 L15.6474887,7.46376867 L15.6596075,7.46376867 L17.0108527,11.0630497 L17.5016638,11.0630497 L18.852909,7.46376867 L18.8650278,7.46376867 L18.8650278,11.0630497 L19.4103734,11.0630497 L19.4103734,6.73664119 L18.622652,6.73664119 L17.2532286,10.3722786 L15.8898645,6.73664119 L15.1021431,6.73664119 Z M20.3677579,6.73664119 L20.3677579,11.0630497 L23.3732181,11.0630497 L23.3732181,10.578298 L20.9434005,10.578298 L20.9434005,9.0816273 L23.1914363,9.0816273 L23.1914363,8.59687565 L20.9434005,8.59687565 L20.9434005,7.22139284 L23.3550399,7.22139284 L23.3550399,6.73664119 L20.3677579,6.73664119 Z M26.9664397,6.63363147 L25.178918,11.16 L25.6151945,11.16 L27.4087756,6.63363147 L26.9664397,6.63363147 Z M29.4507919,6.73664119 L29.4507919,11.0630497 L29.9961375,11.0630497 L29.9961375,7.59101598 L30.0082563,7.59101598 L32.2684109,11.0630497 L32.8985881,11.0630497 L32.8985881,6.73664119 L32.3532424,6.73664119 L32.3532424,10.2450313 L32.3411237,10.2450313 L30.0627909,6.73664119 L29.4507919,6.73664119 Z M34.5770406,9.27552796 L35.3102275,7.25774922 L35.3223463,7.25774922 L36.0434144,9.27552796 L34.5770406,9.27552796 Z M35.0072577,6.73664119 L33.3227457,11.0630497 L33.9105071,11.0630497 L34.3952588,9.76027961 L36.2251962,9.76027961 L36.6978291,11.0630497 L37.3340656,11.0630497 L35.6434943,6.73664119 L35.0072577,6.73664119 Z M39.4609135,11.0630497 L41,6.73664119 L40.4001198,6.73664119 L39.1518843,10.4874071 L39.1397655,10.4874071 L37.9036488,6.73664119 L37.2855905,6.73664119 L38.8064988,11.0630497 L39.4609135,11.0630497 Z" id="HOME-/-NAV" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.5 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="52px" viewBox="0 0 72 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>container</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="52">
|
||||
<rect x="-1" y="-1" width="72" height="52" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="15" y="0" width="41" height="50"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="43" height="52">
|
||||
<rect x="14" y="-1" width="43" height="52" fill="white"></rect>
|
||||
<use xlink:href="#path-4" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="container" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Rectangle-1-Copy-4">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5" mask="url(#mask-2)">
|
||||
<use fill-opacity="0.127858922" fill="#3498DB" fill-rule="evenodd" xlink:href="#path-4"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-5)" stroke-width="2" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<polygon id="Triangle-1-Copy-3" fill="#3498DB" mask="url(#mask-2)" points="11 23 11 28 6 25.5"></polygon>
|
||||
<polygon id="Triangle-1-Copy-2" fill="#3498DB" mask="url(#mask-2)" points="65 23 65 28 60 25.5"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="50px" viewBox="0 0 71 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>disabled</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0.656488273" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="disabled" transform="translate(-0.250000, 0.000000)">
|
||||
<g id="Rectangle-5-Copy-2-+-Shape-Copy" transform="translate(0.000000, 0.000000)">
|
||||
<use id="Rectangle-5-Copy-2" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2" xlink:href="#path-1"></use>
|
||||
<path d="M45.8147546,31.8712728 L45.8147546,31.8712728 L39.665353,25.7218712 L45.8147546,19.5724696 L45.8147546,19.5724696 C45.8812654,19.5059588 45.9287732,19.4286795 45.9598116,19.3463328 C46.0440586,19.1208294 45.9959174,18.8579533 45.8147546,18.6767904 L42.9098148,15.7718506 C42.728652,15.5906878 42.4651424,15.54318 42.2402724,15.6267937 C42.1579257,15.6571986 42.0806464,15.7053398 42.0141356,15.7712172 L42.0141356,15.7712172 L35.864734,21.9206187 L29.7153324,15.7712172 L29.7153324,15.7712172 C29.6488216,15.7053398 29.5715424,15.6571986 29.4891956,15.6267937 C29.2636922,15.5425466 29.0008161,15.5906878 28.8196532,15.7718506 L25.9147134,18.6767904 C25.7335506,18.8579533 25.6860429,19.1214628 25.7696565,19.3463328 C25.8006949,19.4286795 25.8482026,19.5059588 25.91408,19.5724696 L25.91408,19.5724696 L32.0634816,25.7218712 L25.91408,31.8712728 L25.91408,31.8712728 C25.8482026,31.9377836 25.8000614,32.0150628 25.769023,32.0974096 C25.684776,32.3222796 25.7329172,32.5857891 25.91408,32.766952 L28.8190198,35.6718918 C29.0001826,35.8530546 29.2636922,35.9005624 29.4885622,35.8169487 C29.5709089,35.7859103 29.6481882,35.7384026 29.714699,35.6718918 L29.714699,35.6718918 L35.8641006,29.5224902 L42.0135021,35.6718918 L42.0135021,35.6718918 C42.080013,35.7384026 42.1572922,35.7859103 42.239639,35.8169487 C42.4651424,35.9011958 42.7280185,35.8530546 42.9091814,35.6718918 L45.8141212,32.766952 C45.995284,32.5857891 46.0434252,32.3222796 45.9591781,32.0974096 C45.9281397,32.0150628 45.880632,31.9377836 45.8141212,31.8712728 L45.8147546,31.8712728 Z" id="Shape-Copy-10" fill="#3498DB"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="52px" viewBox="0 0 72 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>dropdown-style-1</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="52">
|
||||
<rect x="-1" y="-1" width="72" height="52" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="-10" y="-4" width="86" height="62" rx="2"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="86" height="62" fill="white">
|
||||
<use xlink:href="#path-4"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="dropdown-style-1" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.1" fill="#9CD6E8" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#9BD6E8" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-486" mask="url(#mask-2)" stroke-width="2" stroke="#9BD6E8" fill="#FFFFFF">
|
||||
<use mask="url(#mask-5)" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<text id="Link" mask="url(#mask-2)" font-family="Lato-Regular, Lato" font-size="10" font-weight="normal" line-spacing="16" fill="#9BD6E8">
|
||||
<tspan x="11" y="18">Link</tspan>
|
||||
<tspan x="11" y="34">Link 2</tspan>
|
||||
</text>
|
||||
<path d="M2.5,32.5 L109.485979,32.5 C109.485979,32.5 647.135646,0.016046875 619.236556,0.016046875 C591.337466,0.016046875 868.287572,37.1237005 711.769676,45.3676094" id="Line" stroke-opacity="0.201002038" stroke="#9BD6E8" stroke-width="15" stroke-linecap="square" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="52px" viewBox="0 0 72 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>dropdown-style-2</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="52">
|
||||
<rect x="-1" y="-1" width="72" height="52" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="-8" y="-3" width="84" height="60" rx="3"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="84" height="60" fill="white">
|
||||
<use xlink:href="#path-4"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="dropdown-style-2" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.1" fill="#9CD6E8" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#9BD6E8" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-486" mask="url(#mask-2)" stroke-width="2" stroke="#9BD6E8" fill="#FFFFFF">
|
||||
<use mask="url(#mask-5)" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<path d="M14.5,24.5 L55.5,24.5" id="Line" stroke-opacity="0.318953804" stroke="#9BD6E8" stroke-linecap="square" mask="url(#mask-2)"></path>
|
||||
<text id="Link" mask="url(#mask-2)" font-family="Lato-Regular, Lato" font-size="10" font-weight="normal" line-spacing="16">
|
||||
<tspan x="14" y="18" fill="#9BD6E8">Link</tspan>
|
||||
<tspan x="14" y="34" fill="#5BA4BB">Link 2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="52px" viewBox="0 0 72 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>dropdown-style-3</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="52">
|
||||
<rect x="-1" y="-1" width="72" height="52" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="-10" y="-4" width="86" height="66" rx="2"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="86" height="66" fill="white">
|
||||
<use xlink:href="#path-4"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="dropdown-style-3" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.1" fill="#9CD6E8" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#9BD6E8" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-486" mask="url(#mask-2)" stroke-width="2" stroke="#9BD6E8" fill="#FFFFFF">
|
||||
<use mask="url(#mask-5)" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<path d="M11,28.9987856 C11,27.3426021 12.3517805,26 14.0004442,26 L53.9995558,26 C55.6566554,26 57,27.3422643 57,28.9987856 L57,36.0012144 C57,37.6573979 55.6482195,39 53.9995558,39 L14.0004442,39 C12.3433446,39 11,37.6577357 11,36.0012144 L11,28.9987856 Z" id="Rectangle-491" fill="#9BD6E8" mask="url(#mask-2)"></path>
|
||||
<text id="Link" mask="url(#mask-2)" font-family="Lato-Regular, Lato" font-size="10" font-weight="normal" line-spacing="16" fill="#9BD6E8">
|
||||
<tspan x="15" y="17">Link</tspan>
|
||||
</text>
|
||||
<text id="Link" mask="url(#mask-2)" font-family="Lato-Regular, Lato" font-size="10" font-weight="normal" line-spacing="16" fill="#FFFFFF">
|
||||
<tspan x="16" y="34">Link</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="50px" viewBox="0 0 70 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>featured-posts-top</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="8" y="39" width="38" height="25"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="38" height="25" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="50" y="39" width="11" height="69"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="11" height="69" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="featured-posts-top">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-7" fill="#3498DB" mask="url(#mask-3)" x="8" y="9" width="53" height="27"></rect>
|
||||
<g id="Rectangle-5-Copy-15" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-16" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="50px" viewBox="0 0 70 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>featured-posts</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="12" y="39" width="38" height="25"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="38" height="25" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="54" y="10" width="24" height="69"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="24" height="69" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="featured-posts">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-7" fill="#3498DB" mask="url(#mask-3)" x="12" y="10" width="38" height="25"></rect>
|
||||
<g id="Rectangle-5-Copy-15" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-16" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="50" y="14" width="43" height="43" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="56" y="24" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="56" y="33" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="56" y="42" width="14" height="6" fill="#3498DB"/>
|
||||
<rect x="7" y="14" width="43" height="43" fill="#3498DB" stroke="#3498DB"/>
|
||||
<rect x="0.5" y="0.5" width="99" height="71" rx="4.5" stroke="#3498DB"/>
|
||||
<text font-family="Lato-Regular, Lato" font-size="18" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="93">Left panel</tspan>
|
||||
</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 838 B |
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="7" y="14" width="43" height="43" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="13" y="24" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="13" y="33" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="13" y="42" width="14" height="6" fill="#3498DB"/>
|
||||
<rect x="50" y="14" width="43" height="43" fill="#3498DB" stroke="#3498DB"/>
|
||||
<rect x="0.5" y="0.5" width="99" height="71" rx="4.5" stroke="#3498DB"/>
|
||||
<text font-family="Lato-Regular, Lato" font-size="18" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="93">Right panel</tspan>
|
||||
</text>
|
||||
</svg>
|
After Width: | Height: | Size: 838 B |
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="7" y="14" width="43" height="43" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="13" y="24" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="13" y="33" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="13" y="42" width="14" height="6" fill="#3498DB"/>
|
||||
<rect x="56" y="24" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="56" y="33" width="31" height="6" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="56" y="42" width="14" height="6" fill="#3498DB"/>
|
||||
<rect x="50" y="14" width="43" height="43" fill="#3498DB" fill-opacity="0.12" stroke="#3498DB"/>
|
||||
<rect x="0.5" y="0.5" width="99" height="71" rx="4.5" stroke="#3498DB"/>
|
||||
<text font-family="Lato-Regular, Lato" font-size="18" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="93">Form</tspan>
|
||||
</text>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="52px" viewBox="0 0 72 52" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>full-width</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="52">
|
||||
<rect x="-1" y="-1" width="72" height="52" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="full-width" transform="translate(1.000000, 1.000000)">
|
||||
<g id="Rectangle-5-Copy">
|
||||
<use fill-opacity="0.127858922" fill="#3498DB" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<polygon id="Triangle-1" fill="#3498DB" points="12 23 12 28 7 25.5"></polygon>
|
||||
<polygon id="Triangle-1-Copy" fill="#3498DB" points="63 23 63 28 58 25.5"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="51px" height="50px" viewBox="0 0 51 50" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
|
||||
<!-- Generator: Sketch 3.3.3 (12072) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>header-top</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="50" height="50" rx="4"></rect>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="header-top" sketch:type="MSLayerGroup" transform="translate(0.213250, 0.000000)">
|
||||
<mask id="mask-2" sketch:name="Mask" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" stroke="#9BD6E8" fill-opacity="0.1" fill="#9CD6E8" sketch:type="MSShapeGroup" xlink:href="#path-1"></use>
|
||||
<rect id="Rectangle-45-Copy-17" stroke="#9BD6E8" fill-opacity="0.5" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="-16" y="-8.28450898" width="85" height="19.2206396"></rect>
|
||||
<rect id="Rectangle-45-Copy-18" stroke="#9BD6E8" fill-opacity="0" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="-25.0909091" y="9.94193694" width="111.090909" height="28.8316171"></rect>
|
||||
<rect id="Rectangle-45-Copy-16" fill-opacity="0.5" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="10.2032705" y="4.86064866" width="6.46358884" height="1.89857985"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill-opacity="0.5" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="18.644829" y="4.86064866" width="6.46358884" height="1.89857985"></rect>
|
||||
<rect id="Rectangle-45-Copy-21" fill-opacity="0.5" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="26.2422316" y="4.86064866" width="6.46358884" height="1.89857985"></rect>
|
||||
<rect id="Rectangle-45-Copy-22" fill-opacity="0.5" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="34.68379" y="4.86064866" width="6.46358884" height="1.89857985"></rect>
|
||||
<rect id="Rectangle-45-Copy-19" stroke-opacity="0.732874774" stroke="#9BD6E8" fill-opacity="0" fill="#9CD6E8" sketch:type="MSShapeGroup" mask="url(#mask-2)" x="-16" y="37.7793604" width="75.0909091" height="19.2206396"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-fill-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-fill-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="7"></rect>
|
||||
<path d="M61.0451456,32.9627956 C61.0451456,34.6529341 60.3168644,36.1727436 59.1571251,37.2260274 L59.1665182,37.2260274 L52.9044269,43.4881186 C52.2782178,44.1143278 51.6520087,44.7405369 51.0257996,44.7405369 C50.3995904,44.7405369 49.7733813,44.1143278 49.1471722,43.4881186 L42.8850809,37.2260274 L42.8944741,37.2260274 C41.7347348,36.1727436 41.0064535,34.6529341 41.0064535,32.9627956 C41.0064535,29.7835319 43.5839303,27.2066814 46.7625678,27.2066814 C48.4527063,27.2066814 49.9725158,27.9349626 51.0257996,29.0947019 C52.0790833,27.9349626 53.5988929,27.2066814 55.2890313,27.2066814 C58.468295,27.2066814 61.0451456,29.7841581 61.0451456,32.9627956 L61.0451456,32.9627956 Z" id="Shape-Copy-14" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-fill</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-fill">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<path d="M61.0451456,32.9627956 C61.0451456,34.6529341 60.3168644,36.1727436 59.1571251,37.2260274 L59.1665182,37.2260274 L52.9044269,43.4881186 C52.2782178,44.1143278 51.6520087,44.7405369 51.0257996,44.7405369 C50.3995904,44.7405369 49.7733813,44.1143278 49.1471722,43.4881186 L42.8850809,37.2260274 L42.8944741,37.2260274 C41.7347348,36.1727436 41.0064535,34.6529341 41.0064535,32.9627956 C41.0064535,29.7835319 43.5839303,27.2066814 46.7625678,27.2066814 C48.4527063,27.2066814 49.9725158,27.9349626 51.0257996,29.0947019 C52.0790833,27.9349626 53.5988929,27.2066814 55.2890313,27.2066814 C58.468295,27.2066814 61.0451456,29.7841581 61.0451456,32.9627956 L61.0451456,32.9627956 Z" id="Shape-Copy-14" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="102px" height="74px" viewBox="0 0 102 74" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-left</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="102" height="73.4285714">
|
||||
<rect x="-1" y="-1" width="102" height="73.4285714" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-left" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Group-Copy" mask="url(#mask-2)" opacity="0.420359142">
|
||||
<g transform="translate(44.668712, 27.210794)" id="Rectangle-167-Copy-5-+-Rectangle-167-Copy-8-+-Rectangle-167-Copy-7">
|
||||
<g transform="translate(0.000000, 0.531729)">
|
||||
<rect id="Rectangle-167-Copy-8" fill="#3498DB" x="0.422555193" y="10.2558083" width="69.0097532" height="4.6685099"></rect>
|
||||
<rect id="Rectangle-167-Copy-7" fill="#3498DB" x="0.422555193" y="0.0142568032" width="81.7301404" height="4.6685099"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-2)" x="14" y="25.1776015" width="20.2453988" height="20.4431077" rx="99"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-outline-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="23.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="8"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="52.9293346" height="53.4462226" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-outline-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-166-Copy-4" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<path d="M60.0451456,32.9627956 C60.0451456,34.6529341 59.3168644,36.1727436 58.1571251,37.2260274 L58.1665182,37.2260274 L51.9044269,43.4881186 C51.2782178,44.1143278 50.6520087,44.7405369 50.0257996,44.7405369 C49.3995904,44.7405369 48.7733813,44.1143278 48.1471722,43.4881186 L41.8850809,37.2260274 L41.8944741,37.2260274 C40.7347348,36.1727436 40.0064535,34.6529341 40.0064535,32.9627956 C40.0064535,29.7835319 42.5839303,27.2066814 45.7625678,27.2066814 C47.4527063,27.2066814 48.9725158,27.9349626 50.0257996,29.0947019 C51.0790833,27.9349626 52.5988929,27.2066814 54.2890313,27.2066814 C57.468295,27.2066814 60.0451456,29.7841581 60.0451456,32.9627956 L60.0451456,32.9627956 Z" id="Shape-Copy-14" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-outline</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="23.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="52.9293346" height="53.4462226" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-outline">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-166-Copy-4" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#3498DB" fill-opacity="0.127858922">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<path d="M60.0451456,32.9627956 C60.0451456,34.6529341 59.3168644,36.1727436 58.1571251,37.2260274 L58.1665182,37.2260274 L51.9044269,43.4881186 C51.2782178,44.1143278 50.6520087,44.7405369 50.0257996,44.7405369 C49.3995904,44.7405369 48.7733813,44.1143278 48.1471722,43.4881186 L41.8850809,37.2260274 L41.8944741,37.2260274 C40.7347348,36.1727436 40.0064535,34.6529341 40.0064535,32.9627956 C40.0064535,29.7835319 42.5839303,27.2066814 45.7625678,27.2066814 C47.4527063,27.2066814 48.9725158,27.9349626 50.0257996,29.0947019 C51.0790833,27.9349626 52.5988929,27.2066814 54.2890313,27.2066814 C57.468295,27.2066814 60.0451456,29.7841581 60.0451456,32.9627956 L60.0451456,32.9627956 Z" id="Shape-Copy-14" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-plain</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-plain">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<path d="M62.6219816,31.8879564 C62.6219816,34.1814624 61.6337092,36.2438332 60.0599511,37.6731319 L60.0726975,37.6731319 L51.5750837,46.1707457 C50.7253223,47.0205071 49.8755609,47.8702684 49.0257996,47.8702684 C48.1760382,47.8702684 47.3262768,47.0205071 46.4765154,46.1707457 L37.9789016,37.6731319 L37.991648,37.6731319 C36.41789,36.2438332 35.4296175,34.1814624 35.4296175,31.8879564 C35.4296175,27.5737179 38.9272353,24.0769498 43.2406241,24.0769498 C45.53413,24.0769498 47.5965009,25.0652223 49.0257996,26.6389804 C50.4550982,25.0652223 52.5174691,24.0769498 54.810975,24.0769498 C59.1252136,24.0769498 62.6219816,27.5745676 62.6219816,31.8879564 L62.6219816,31.8879564 Z" id="Shape-Copy-14" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="102px" height="74px" viewBox="0 0 102 74" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-right</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="102" height="73.4285714">
|
||||
<rect x="-1" y="-1" width="102" height="73.4285714" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-right" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Group-Copy" mask="url(#mask-2)" opacity="0.420359142">
|
||||
<g transform="translate(10.668712, 29.210794)" id="Rectangle-167-Copy-5-+-Rectangle-167-Copy-8-+-Rectangle-167-Copy-7">
|
||||
<g transform="translate(25.000000, 7.500000) scale(-1, 1) translate(-25.000000, -7.500000) ">
|
||||
<rect id="Rectangle-167-Copy-8" fill="#3498DB" x="0.255848704" y="10.2558083" width="41.784023" height="4.6685099"></rect>
|
||||
<rect id="Rectangle-167-Copy-7" fill="#3498DB" x="0.255848704" y="0.0142568032" width="49.4859626" height="4.6685099"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-2)" x="69" y="25" width="20.2453988" height="20.4431077" rx="99"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="102px" height="74px" viewBox="0 0 102 74" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>icon-top</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="102" height="73.4285714">
|
||||
<rect x="-1" y="-1" width="102" height="73.4285714" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="icon-top" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Group-Copy" mask="url(#mask-2)" opacity="0.420359142">
|
||||
<g transform="translate(17.003067, 44.624645)" id="Rectangle-167-Copy-5-+-Rectangle-167-Copy-8-+-Rectangle-167-Copy-7">
|
||||
<g transform="translate(0.000000, 0.437756)">
|
||||
<rect id="Rectangle-167-Copy-8" fill="#3498DB" x="4.46421907" y="8.44328426" width="56.8135584" height="3.8434373"></rect>
|
||||
<rect id="Rectangle-167-Copy-7" fill="#3498DB" x="0.347876394" y="0.0117371775" width="67.2858529" height="3.8434373"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-2)" x="35.4555784" y="8.58880074" width="29.334242" height="29.6207092" rx="99"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="67px" viewBox="0 0 70 67" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-custom</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-custom">
|
||||
<text id="Custom" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Custom</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<path d="M45.168931,14.830819 C42.7306307,12.3893937 38.7696623,12.3893937 36.331362,14.830819 L22.0242189,29.1371808 L22,37.99975 L30.837569,37.99975 L45.168931,23.668388 C47.6103563,21.2269627 47.6103563,17.2722443 45.168931,14.830819 L45.168931,14.830819 Z M29.5102149,34.8747256 L25.0914304,34.8747256 L25.0914304,30.4309409 C26.3117524,29.2106188 28.2898929,29.2106188 29.5102149,30.4309409 C30.730537,31.6512629 30.7313182,33.6544036 29.5102149,34.8747256 L29.5102149,34.8747256 Z M42.9017258,21.4589958 L38.4829413,17.0402113 C39.7032633,15.8198892 41.6814038,15.8198892 42.9017258,17.0402113 C44.1220478,18.2605333 44.1220478,20.2386737 42.9017258,21.4589958 L42.9017258,21.4589958 Z" id="Shape" fill="#3498DB" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="69px" viewBox="0 0 70 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-full-gallery</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="41" width="30" height="30.8378437"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="30" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="41" y="41" width="20" height="30.8378437"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="20" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-full-gallery">
|
||||
<text id="Full-Gallery" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Full Gallery</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="-9" y="0" width="96" height="38.5047542"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="83px" viewBox="0 0 71 83" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-left-full</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="27" y="7" width="34" height="30"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="30" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="27" y="40" width="34" height="30"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="30" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-left-full" transform="translate(0.213250, 0.312750)">
|
||||
<text id="Left-Sidebar-Full-He" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Left Sidebar </tspan>
|
||||
<tspan x="0" y="83" font-size="10">Full Height</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="10" y="7" width="14" height="50"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="84px" viewBox="0 0 70 84" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-left-small</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="22" y="7" width="39" height="30.46675"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="39" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="10" y="40" width="51" height="30.46675"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="51" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-left-small">
|
||||
<text id="Left-Sidebar" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Left Sidebar</tspan>
|
||||
<tspan x="0" y="83">Small</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="10" y="7" width="8" height="30.46675"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="69px" viewBox="0 0 70 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-left</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="27" y="7" width="34" height="30.46675"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="10" y="40" width="51" height="30.46675"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="51" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-left" transform="translate(0.000000, 0.236375)">
|
||||
<text id="Left-Sidebar" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Left Sidebar</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="10" y="7" width="14" height="30.46675"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="69px" viewBox="0 0 71 69" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-no-sidebar</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-no-sidebar" transform="translate(0.213250, 0.549125)">
|
||||
<text id="No-Sidebar" font-family="Lato-Regular, Lato" font-size="13" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">No Sidebar</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-7" fill="#3498DB" mask="url(#mask-3)" x="12" y="7" width="47" height="43"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="71px" height="82px" viewBox="0 0 71 82" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-right-full</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10" y="7" width="34" height="29"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="29" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="10" y="39" width="34" height="36"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="36" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-right-full" transform="translate(0.213250, 0.549125)">
|
||||
<text id="Right-Sidebar-Full-H" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Right Sidebar </tspan>
|
||||
<tspan x="0" y="81" font-size="10">Full Height</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="47" y="7" width="14" height="45"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="82px" viewBox="0 0 70 82" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-right-small</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10.5" y="6.16654476" width="38" height="32.5047542"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="38" height="32.5047542" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="10" y="41" width="51" height="30.8378437"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="51" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-right-small">
|
||||
<text id="Right-Sidebar" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Right Sidebar</tspan>
|
||||
<tspan x="0" y="81">Small</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="52" y="6" width="9" height="32.5047542"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-right</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="10" y="7" width="34" height="30.8378437"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="34" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="10" y="41" width="51" height="30.8378437"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="51" height="30.8378437" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-right" transform="translate(0.000000, 0.236375)">
|
||||
<text id="Right-Sidebar" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="66">Right Sidebar</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="47" y="7" width="14" height="30.8378437"></rect>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="70px" height="70px" viewBox="0 0 70 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.2 (28276) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>layout-wide-gallery</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="50" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="70" height="50" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<rect id="path-5" x="9" y="40" width="35" height="30.46675"></rect>
|
||||
<mask id="mask-6" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="35" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-5"></use>
|
||||
</mask>
|
||||
<rect id="path-7" x="49" y="40" width="12" height="30.46675"></rect>
|
||||
<mask id="mask-8" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="12" height="30.46675" fill="white">
|
||||
<use xlink:href="#path-7"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="layout-wide-gallery">
|
||||
<text id="Wide-Gallery" font-family="Lato-Regular, Lato" font-size="12" font-weight="normal" fill="#9A8F9A">
|
||||
<tspan x="0" y="67">Wide Gallery</tspan>
|
||||
</text>
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="Rectangle-5-Copy-7" mask="url(#mask-3)" stroke="#3498DB" stroke-width="2" fill="#00A0D2" fill-opacity="0.01">
|
||||
<use mask="url(#mask-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-5-Copy-13" fill="#3498DB" mask="url(#mask-3)" x="9" y="7" width="52" height="30.46675"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="39px" viewBox="0 0 72 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>logo-left</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="37" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="39">
|
||||
<rect x="-1" y="-1" width="72" height="39" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="0" y="0.159" width="70" height="16"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="18">
|
||||
<rect x="-1" y="-0.841" width="72" height="18" fill="white"></rect>
|
||||
<use xlink:href="#path-4" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="logo-left" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Rectangle-5-Copy">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-45-Copy-4" mask="url(#mask-2)">
|
||||
<use fill-opacity="0.127858922" fill="#3498DB" fill-rule="evenodd" xlink:href="#path-4"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-5)" stroke-width="2" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-45-Copy-5" fill="#3498DB" mask="url(#mask-2)" x="5" y="5.159" width="20" height="6"></rect>
|
||||
<rect id="Rectangle-45-Copy-6" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="29" y="7.24933203" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-7" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="38.5710835" y="7.24933203" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-8" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="48.1421669" y="7.24933203" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-9" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="57.7132504" y="7.24933203" width="7.65686678" height="1.90966797"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="73px" height="39px" viewBox="0 0 73 39" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>logo-right</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0.142166941" y="0" width="70" height="37" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="39">
|
||||
<rect x="-0.857833059" y="-1" width="72" height="39" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="0.142166941" y="-6" width="70" height="22"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="24">
|
||||
<rect x="-0.857833059" y="-7" width="72" height="24" fill="white"></rect>
|
||||
<use xlink:href="#path-4" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="logo-right" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Rectangle-5-Copy">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-45-Copy-10" mask="url(#mask-2)">
|
||||
<use fill-opacity="0.127858922" fill="#3498DB" fill-rule="evenodd" xlink:href="#path-4"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-5)" stroke-width="2" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-45-Copy-11" fill="#3498DB" mask="url(#mask-2)" x="25.1421669" y="6" width="20" height="6"></rect>
|
||||
<rect id="Rectangle-45-Copy-12" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="3.98530016" y="8.09033203" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-13" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="13.5563836" y="8.09033203" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-14" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="48.2843339" y="8.09033203" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-15" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="57.8554174" y="8.09033203" width="7.65686678" height="1.90966797"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="73px" height="58px" viewBox="0 0 73 58" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-bottom-center</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="42" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="44">
|
||||
<rect x="-1" y="-1" width="72" height="44" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-bottom-center" transform="translate(0.000000, 1.000000)">
|
||||
<g id="nav-left" transform="translate(1.000000, 0.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-45-Copy-18" fill="#3498DB" mask="url(#mask-2)" x="0" y="30" width="70" height="12"></rect>
|
||||
<rect id="Rectangle-45-Copy-23" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="7" y="13" width="15" height="6"></rect>
|
||||
<rect id="Rectangle-45-Copy-16" fill="#FFFFFF" mask="url(#mask-2)" x="21.6715666" y="35" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#FFFFFF" mask="url(#mask-2)" x="31.6715666" y="35" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#FFFFFF" mask="url(#mask-2)" x="42.6715666" y="35" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#3498DB" mask="url(#mask-2)" x="56.6715666" y="13" width="7.65686678" height="6" rx="99"></rect>
|
||||
</g>
|
||||
<text id="Wide-Center" font-family="HelveticaNeue, Helvetica Neue" font-size="13" font-weight="normal" fill="#8B8B8B">
|
||||
<tspan x="0.886" y="56">Wide Center</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="58px" viewBox="0 0 72 58" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-bottom-left</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="42" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="44">
|
||||
<rect x="-1" y="-1" width="72" height="44" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-bottom-left" transform="translate(1.000000, 1.000000)">
|
||||
<g id="nav-left">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-45-Copy-18" fill="#3498DB" mask="url(#mask-2)" x="-5" y="30" width="79" height="17"></rect>
|
||||
<rect id="Rectangle-45-Copy-23" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="7" y="13" width="15" height="6"></rect>
|
||||
<rect id="Rectangle-45-Copy-16" fill="#FFFFFF" mask="url(#mask-2)" x="6.67156661" y="35" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#FFFFFF" mask="url(#mask-2)" x="16.6715666" y="35" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#FFFFFF" mask="url(#mask-2)" x="26.6715666" y="35" width="7.65686678" height="1.90966797"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#3498DB" mask="url(#mask-2)" x="56.6715666" y="13" width="7.65686678" height="6" rx="99"></rect>
|
||||
</g>
|
||||
<text id="Wide-Left" font-family="HelveticaNeue, Helvetica Neue" font-size="13" font-weight="normal" fill="#8B8B8B">
|
||||
<tspan x="1.81" y="56">Wide Left</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="42px" height="42px" viewBox="0 0 42 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-box</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0.617058501" y="0.185392157" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="41.2156863" height="41.2156863">
|
||||
<rect x="-0.382941499" y="-0.814607843" width="41.2156863" height="41.2156863" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-box" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-437" fill="#3498DB" mask="url(#mask-2)" x="5" y="-1.031375" width="30.8327448" height="43.031375"></rect>
|
||||
<path d="M9.722,16.324 C9.79400036,16.324 9.85399976,16.327 9.902,16.333 C9.95000024,16.339 9.99299981,16.3509999 10.031,16.369 C10.0690002,16.3870001 10.1059998,16.4129998 10.142,16.447 C10.1780002,16.4810002 10.2179998,16.5259997 10.262,16.582 L14.816,22.384 C14.7999999,22.2439993 14.789,22.1070007 14.783,21.973 C14.777,21.8389993 14.774,21.7140006 14.774,21.598 L14.774,16.324 L16.196,16.324 L16.196,25 L15.362,25 C15.2339994,25 15.1280004,24.9800002 15.044,24.94 C14.9599996,24.8999998 14.8780004,24.8280005 14.798,24.724 L10.262,18.946 C10.2740001,19.0740006 10.283,19.2009994 10.289,19.327 C10.295,19.4530006 10.298,19.5679995 10.298,19.672 L10.298,25 L8.876,25 L8.876,16.324 L9.722,16.324 Z M25.574,25 L24.326,25 C24.1859993,25 24.0710005,24.9650004 23.981,24.895 C23.8909996,24.8249997 23.8260002,24.7380005 23.786,24.634 L23.138,22.864 L19.544,22.864 L18.896,24.634 C18.8639998,24.7260005 18.8010005,24.8099996 18.707,24.886 C18.6129995,24.9620004 18.4980007,25 18.362,25 L17.108,25 L20.516,16.324 L22.166,16.324 L25.574,25 Z M19.958,21.724 L22.724,21.724 L21.668,18.838 C21.6199998,18.7099994 21.5670003,18.5590009 21.509,18.385 C21.4509997,18.2109991 21.3940003,18.022001 21.338,17.818 C21.2819997,18.022001 21.2270003,18.2119991 21.173,18.388 C21.1189997,18.5640009 21.0660003,18.7179993 21.014,18.85 L19.958,21.724 Z M24.602,16.324 L25.904,16.324 C26.0440007,16.324 26.1579996,16.3579997 26.246,16.426 C26.3340004,16.4940003 26.3999998,16.5819995 26.444,16.69 L28.484,21.982 C28.5520003,22.1540009 28.6169997,22.342999 28.679,22.549 C28.7410003,22.755001 28.7999997,22.9719989 28.856,23.2 C28.9480005,22.7399977 29.0619993,22.3340018 29.198,21.982 L31.232,16.69 C31.2680002,16.5979995 31.3319995,16.5140004 31.424,16.438 C31.5160005,16.3619996 31.6299993,16.324 31.766,16.324 L33.068,16.324 L29.564,25 L28.106,25 L24.602,16.324 Z" id="NAV-Copy-4" fill="#FFFFFF" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="42px" height="43px" viewBox="0 0 42 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-default</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="41.2156863" height="41.2156863">
|
||||
<rect x="-1" y="-1" width="41.2156863" height="41.2156863" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-default" transform="translate(0.573499, 1.796000)">
|
||||
<g id="no-shadow-copy-2" transform="translate(0.617059, 0.185392)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M9.722,15.324 C9.79400036,15.324 9.85399976,15.327 9.902,15.333 C9.95000024,15.339 9.99299981,15.3509999 10.031,15.369 C10.0690002,15.3870001 10.1059998,15.4129998 10.142,15.447 C10.1780002,15.4810002 10.2179998,15.5259997 10.262,15.582 L14.816,21.384 C14.7999999,21.2439993 14.789,21.1070007 14.783,20.973 C14.777,20.8389993 14.774,20.7140006 14.774,20.598 L14.774,15.324 L16.196,15.324 L16.196,24 L15.362,24 C15.2339994,24 15.1280004,23.9800002 15.044,23.94 C14.9599996,23.8999998 14.8780004,23.8280005 14.798,23.724 L10.262,17.946 C10.2740001,18.0740006 10.283,18.2009994 10.289,18.327 C10.295,18.4530006 10.298,18.5679995 10.298,18.672 L10.298,24 L8.876,24 L8.876,15.324 L9.722,15.324 Z M25.574,24 L24.326,24 C24.1859993,24 24.0710004,23.9650003 23.981,23.895 C23.8909995,23.8249996 23.8260002,23.7380005 23.786,23.634 L23.138,21.864 L19.544,21.864 L18.896,23.634 C18.8639998,23.7260005 18.8010005,23.8099996 18.707,23.886 C18.6129995,23.9620004 18.4980007,24 18.362,24 L17.108,24 L20.516,15.324 L22.166,15.324 L25.574,24 Z M19.958,20.724 L22.724,20.724 L21.668,17.838 C21.6199998,17.7099994 21.5670003,17.5590009 21.509,17.385 C21.4509997,17.2109991 21.3940003,17.022001 21.338,16.818 C21.2819997,17.022001 21.2270003,17.2119991 21.173,17.388 C21.1189997,17.5640009 21.0660003,17.7179993 21.014,17.85 L19.958,20.724 Z M24.602,15.324 L25.904,15.324 C26.0440007,15.324 26.1579996,15.3579997 26.246,15.426 C26.3340004,15.4940003 26.3999998,15.5819995 26.444,15.69 L28.484,20.982 C28.5520003,21.1540009 28.6169997,21.342999 28.679,21.549 C28.7410003,21.755001 28.7999997,21.9719989 28.856,22.2 C28.9480005,21.7399977 29.0619993,21.3340018 29.198,20.982 L31.232,15.69 C31.2680002,15.5979995 31.3319995,15.5140004 31.424,15.438 C31.5160005,15.3619996 31.6299993,15.324 31.766,15.324 L33.068,15.324 L29.564,24 L28.106,24 L24.602,15.324 Z" id="NAV-Copy-4" fill="#3498DB"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="42px" height="43px" viewBox="0 0 42 43" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-divided</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0.617058501" y="0.185392157" width="39.2156863" height="39.2156863" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="41.2156863" height="41.2156863">
|
||||
<rect x="-0.382941499" y="-0.814607843" width="41.2156863" height="41.2156863" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-divided" transform="translate(1.000000, 1.796000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-599" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="28" y="10" width="1" height="20"></rect>
|
||||
<path d="M0.722,15.324 C0.79400036,15.324 0.85399976,15.327 0.902,15.333 C0.95000024,15.339 0.99299981,15.3509999 1.031,15.369 C1.06900019,15.3870001 1.10599982,15.4129998 1.142,15.447 C1.17800018,15.4810002 1.21799978,15.5259997 1.262,15.582 L5.816,21.384 C5.79999992,21.2439993 5.78900003,21.1070007 5.783,20.973 C5.77699997,20.8389993 5.774,20.7140006 5.774,20.598 L5.774,15.324 L7.196,15.324 L7.196,24 L6.362,24 C6.23399936,24 6.12800042,23.9800002 6.044,23.94 C5.95999958,23.8999998 5.8780004,23.8280005 5.798,23.724 L1.262,17.946 C1.27400006,18.0740006 1.28299997,18.2009994 1.289,18.327 C1.29500003,18.4530006 1.298,18.5679995 1.298,18.672 L1.298,24 L-0.124,24 L-0.124,15.324 L0.722,15.324 Z M16.574,24 L15.326,24 C15.1859993,24 15.0710004,23.9650003 14.981,23.895 C14.8909995,23.8249996 14.8260002,23.7380005 14.786,23.634 L14.138,21.864 L10.544,21.864 L9.896,23.634 C9.86399984,23.7260005 9.80100047,23.8099996 9.707,23.886 C9.61299953,23.9620004 9.49800068,24 9.362,24 L8.108,24 L11.516,15.324 L13.166,15.324 L16.574,24 Z M10.958,20.724 L13.724,20.724 L12.668,17.838 C12.6199998,17.7099994 12.5670003,17.5590009 12.509,17.385 C12.4509997,17.2109991 12.3940003,17.022001 12.338,16.818 C12.2819997,17.022001 12.2270003,17.2119991 12.173,17.388 C12.1189997,17.5640009 12.0660003,17.7179993 12.014,17.85 L10.958,20.724 Z M15.602,15.324 L16.904,15.324 C17.0440007,15.324 17.1579996,15.3579997 17.246,15.426 C17.3340004,15.4940003 17.3999998,15.5819995 17.444,15.69 L19.484,20.982 C19.5520003,21.1540009 19.6169997,21.342999 19.679,21.549 C19.7410003,21.755001 19.7999997,21.9719989 19.856,22.2 C19.9480005,21.7399977 20.0619993,21.3340018 20.198,20.982 L22.232,15.69 C22.2680002,15.5979995 22.3319995,15.5140004 22.424,15.438 C22.5160005,15.3619996 22.6299993,15.324 22.766,15.324 L24.068,15.324 L20.564,24 L19.106,24 L15.602,15.324 Z" id="NAV-Copy" fill="#3498DB" mask="url(#mask-2)"></path>
|
||||
<path d="M35.722,15.324 C35.7940004,15.324 35.8539998,15.327 35.902,15.333 C35.9500002,15.339 35.9929998,15.3509999 36.031,15.369 C36.0690002,15.3870001 36.1059998,15.4129998 36.142,15.447 C36.1780002,15.4810002 36.2179998,15.5259997 36.262,15.582 L40.816,21.384 C40.7999999,21.2439993 40.789,21.1070007 40.783,20.973 C40.777,20.8389993 40.774,20.7140006 40.774,20.598 L40.774,15.324 L42.196,15.324 L42.196,24 L41.362,24 C41.2339994,24 41.1280004,23.9800002 41.044,23.94 C40.9599996,23.8999998 40.8780004,23.8280005 40.798,23.724 L36.262,17.946 C36.2740001,18.0740006 36.283,18.2009994 36.289,18.327 C36.295,18.4530006 36.298,18.5679995 36.298,18.672 L36.298,24 L34.876,24 L34.876,15.324 L35.722,15.324 Z M51.574,24 L50.326,24 C50.1859993,24 50.0710004,23.9650003 49.981,23.895 C49.8909995,23.8249996 49.8260002,23.7380005 49.786,23.634 L49.138,21.864 L45.544,21.864 L44.896,23.634 C44.8639998,23.7260005 44.8010005,23.8099996 44.707,23.886 C44.6129995,23.9620004 44.4980007,24 44.362,24 L43.108,24 L46.516,15.324 L48.166,15.324 L51.574,24 Z M45.958,20.724 L48.724,20.724 L47.668,17.838 C47.6199998,17.7099994 47.5670003,17.5590009 47.509,17.385 C47.4509997,17.2109991 47.3940003,17.022001 47.338,16.818 C47.2819997,17.022001 47.2270003,17.2119991 47.173,17.388 C47.1189997,17.5640009 47.0660003,17.7179993 47.014,17.85 L45.958,20.724 Z M50.602,15.324 L51.904,15.324 C52.0440007,15.324 52.1579996,15.3579997 52.246,15.426 C52.3340004,15.4940003 52.3999998,15.5819995 52.444,15.69 L54.484,20.982 C54.5520003,21.1540009 54.6169997,21.342999 54.679,21.549 C54.7410003,21.755001 54.7999997,21.9719989 54.856,22.2 C54.9480005,21.7399977 55.0619993,21.3340018 55.198,20.982 L57.232,15.69 C57.2680002,15.5979995 57.3319995,15.5140004 57.424,15.438 C57.5160005,15.3619996 57.6299993,15.324 57.766,15.324 L59.068,15.324 L55.564,24 L54.106,24 L50.602,15.324 Z" id="NAV" fill="#3498DB" mask="url(#mask-2)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.2 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-icon-fill-round</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-icon-fill-round">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="7"></rect>
|
||||
<path d="M37,25 L65,25 L65,31 L37,31 L37,25 Z M37,33 L65,33 L65,39 L37,39 L37,33 Z M37,41 L65,41 L65,47 L37,47 L37,41 Z" id="Shape" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="100px" height="72px" viewBox="0 0 100 72" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-icon-fill</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="100" height="71.4285714" rx="4"></rect>
|
||||
<mask id="mask-2" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<mask id="mask-4" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="0" y="0" width="100" height="71.4285714" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-icon-fill">
|
||||
<mask id="mask-3" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask" stroke="#3498DB" mask="url(#mask-2)" stroke-width="2" fill-opacity="0.01" fill="#00A0D2">
|
||||
<use mask="url(#mask-4)" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-166-Copy-4" fill="#3498DB" mask="url(#mask-3)" x="24.3075435" y="8.28125" width="52.9293346" height="53.4462226" rx="26.4646673"></rect>
|
||||
<path d="M36,25 L64,25 L64,31 L36,31 L36,25 Z M36,33 L64,33 L64,39 L36,39 L36,33 Z M36,41 L64,41 L64,47 L36,47 L36,41 Z" id="Shape" fill="#FFFFFF" mask="url(#mask-3)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="72px" height="58px" viewBox="0 0 72 58" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.7.1 (28215) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>nav-icon-left</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0" width="70" height="41" rx="4"></rect>
|
||||
<mask id="mask-3" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="43">
|
||||
<rect x="-1" y="-1" width="72" height="43" fill="white"></rect>
|
||||
<use xlink:href="#path-1" fill="black"></use>
|
||||
</mask>
|
||||
<rect id="path-4" x="0" y="0" width="70" height="31"></rect>
|
||||
<mask id="mask-5" maskContentUnits="userSpaceOnUse" maskUnits="objectBoundingBox" x="-1" y="-1" width="72" height="33">
|
||||
<rect x="-1" y="-1" width="72" height="33" fill="white"></rect>
|
||||
<use xlink:href="#path-4" fill="black"></use>
|
||||
</mask>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="nav-icon-left" transform="translate(-1.000000, 1.000000)">
|
||||
<g id="nav-icon" transform="translate(2.000000, 0.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<g id="Mask">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-3)" stroke-width="2" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="Rectangle-45-Copy-18" mask="url(#mask-2)">
|
||||
<use fill-opacity="0.01" fill="#00A0D2" fill-rule="evenodd" xlink:href="#path-4"></use>
|
||||
<use stroke="#3498DB" mask="url(#mask-5)" stroke-width="2" xlink:href="#path-4"></use>
|
||||
</g>
|
||||
<rect id="Rectangle-45-Copy-23" fill="#3498DB" opacity="0.420359142" mask="url(#mask-2)" x="48" y="13" width="15" height="6"></rect>
|
||||
<rect id="Rectangle-45-Copy-16" fill="#3498DB" mask="url(#mask-2)" x="7.04767167" y="18.443983" width="11.5615234" height="1.65943265"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#3498DB" mask="url(#mask-2)" x="7.04767167" y="15.1251177" width="11.5615234" height="1.65943265"></rect>
|
||||
<rect id="Rectangle-45-Copy-20" fill="#3498DB" mask="url(#mask-2)" x="7.04767167" y="11.8062524" width="11.5615234" height="1.65943265"></rect>
|
||||
</g>
|
||||
<text id="Icon-Left" font-family="HelveticaNeue, Helvetica Neue" font-size="13" font-weight="normal" fill="#8B8B8B">
|
||||
<tspan x="0.598" y="56">Icon Left</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |