docs(website): update top navbar
This commit is contained in:
parent
40ffa04e9f
commit
df428e562e
8 changed files with 123 additions and 56 deletions
|
|
@ -4,11 +4,7 @@
|
|||
<div class="container-fluid">
|
||||
<div class="navbar-header">
|
||||
<a class="logo-community" href="https://community.algolia.com/">
|
||||
<img src="{{site.baseurl}}/img/logo-community-sm.svg" alt="Algolia Community" />
|
||||
Community
|
||||
</a>
|
||||
<a class="logo-algolia" href="https://www.algolia.com">
|
||||
<img src="{{site.baseurl}}/img/algolia-logo.svg" alt="Algolia" />
|
||||
<img src="{{site.baseurl}}/img/logo-community-inline-dark.svg" width="150px" alt="Algolia Community" />
|
||||
</a>
|
||||
<a class="project-title" href="{{ site.baseurl }}/">
|
||||
DocSearch
|
||||
|
|
|
|||
|
|
@ -25,22 +25,31 @@
|
|||
</form>
|
||||
<!--Js: focus search input after reset-->
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
document.querySelector('.searchbox [type="reset"]').addEventListener('click', function() {
|
||||
document.querySelector('.aa-input').focus();
|
||||
this.className += " hide";
|
||||
});
|
||||
|
||||
$(function(){
|
||||
$('.searchbox .aa-input').on('change', function() {
|
||||
$('.aa-input').addClass('filled');
|
||||
});
|
||||
|
||||
$('.searchbox .aa-input').on('blur', function() {
|
||||
if ($(this).val().length === 0){
|
||||
$(this).removeClass('filled');
|
||||
}
|
||||
});
|
||||
|
||||
$('.searchbox [type="reset"]').on('click', function() {
|
||||
myDocSearch.autocomplete.autocomplete.setVal('');
|
||||
$('.aa-input').focus();
|
||||
$(this).addClass("hide");
|
||||
});
|
||||
});
|
||||
function updateReset() {
|
||||
var searchbox = document.querySelector('.aa-input');
|
||||
var reset = document.querySelector('.searchbox [type="reset"]');
|
||||
reset.className = "";
|
||||
reset.className = "sbx-custom__reset";
|
||||
if (searchbox.value.length === 0){
|
||||
reset.className += " hide";
|
||||
var searchbox = $('.aa-input');
|
||||
var reset = $('.searchbox [type="reset"]');
|
||||
reset.removeClass("hide");
|
||||
if (searchbox.val().length === 0){
|
||||
reset.addClass("hide");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//]]>
|
||||
</script>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.5 KiB |
|
|
@ -40,6 +40,8 @@
|
|||
|
||||
<link rel="stylesheet" media="screen" href="{{ "/css/main.css" | prepend: site.baseurl }}" />
|
||||
<link rel="stylesheet" media="screen" href="//cdn.jsdelivr.net/fontawesome/4.4.0/css/font-awesome.min.css" />
|
||||
|
||||
<script src="//cdn.jsdelivr.net/jquery/2.1/jquery.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
@ -51,7 +53,6 @@
|
|||
{% include footer.html %}
|
||||
{% endif %}
|
||||
|
||||
<script src="//cdn.jsdelivr.net/jquery/2.1/jquery.min.js"></script>
|
||||
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }}"></script>
|
||||
|
||||
{% if site.env == 'development' %}
|
||||
|
|
@ -62,7 +63,7 @@
|
|||
|
||||
<script type="text/javascript" src="//cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
docsearch({
|
||||
var myDocSearch = docsearch({
|
||||
apiKey: '25626fae796133dc1e734c6bcaaeac3c',
|
||||
indexName: 'docsearch',
|
||||
inputSelector: '.sbx-custom__input',
|
||||
|
|
|
|||
|
|
@ -18,31 +18,20 @@ html, body {
|
|||
|
||||
/* HEADER
|
||||
// ------------------------- */
|
||||
.logo-algolia {
|
||||
position: absolute;
|
||||
left: 72px;
|
||||
top: 5px;
|
||||
display: block;
|
||||
line-height: 1;
|
||||
img {
|
||||
height: 18px;
|
||||
position: relative;
|
||||
margin-right: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo-community {
|
||||
color: white;
|
||||
font-size: 1.8em;
|
||||
font-size: 26px;
|
||||
font-weight: 100 !important;
|
||||
margin-right: 8px;
|
||||
position: relative;
|
||||
top: 6px;
|
||||
margin-right: 12px;
|
||||
border-right: #FF2E6C 2px solid;
|
||||
padding-left: 8px;
|
||||
|
||||
img {
|
||||
position: relative;
|
||||
top: -8px;
|
||||
height: 46px;
|
||||
width: 46px;
|
||||
top: -3px;
|
||||
width: 200px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
&:hover, &:active, &:focus {
|
||||
color: white;
|
||||
|
|
@ -78,7 +67,10 @@ html, body {
|
|||
}
|
||||
}
|
||||
.navbar-nav > li {
|
||||
padding: 14px 8px;
|
||||
padding: 14px;
|
||||
&:last-child {
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
.navbar-nav > li > a {
|
||||
padding: 0 0 4px 0;
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@
|
|||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
.page-content {
|
||||
font-size: .9em;
|
||||
font-family: "Open Sans", helvetica, arial, sans-serif;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: .8em;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ $custom:(
|
|||
icon-color: #1D96C7,
|
||||
icon-background: #FFFFFF,
|
||||
icon-background-opacity: 0,
|
||||
icon-clear-size: 12px
|
||||
icon-clear-size: 12px,
|
||||
);
|
||||
|
||||
@mixin searchbox(
|
||||
|
|
@ -28,39 +28,44 @@ $custom:(
|
|||
$input-focus-background: $input-background,
|
||||
$font-size: 14px,
|
||||
$placeholder-color: #aaa,
|
||||
$icon: 'sbx-icon-search-1',
|
||||
$icon-size: 18px,
|
||||
$icon-position: right,
|
||||
$icon-color: #fff,
|
||||
$icon-background: #3e82f7,
|
||||
$icon-background-opacity: 1,
|
||||
$icon-clear: 'sbx-icon-clear-1',
|
||||
$icon-clear-size: 12px
|
||||
$icon-clear-size: 12px,
|
||||
$font-family: "Open Sans"
|
||||
) {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
width: $input-width;
|
||||
height: $input-height;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
|
||||
&__input {
|
||||
display: inline-block;
|
||||
transition: box-shadow .4s ease, background .4s ease, padding .4s ease;
|
||||
transition: box-shadow .4s ease, background .4s ease;
|
||||
border: 0;
|
||||
border-radius: $border-radius;
|
||||
box-shadow: inset 0 0 0 $border-width $input-border-color;
|
||||
background: $input-background;
|
||||
padding: 0;
|
||||
padding-right: if($icon-position == 'right', $input-height, 0) + $icon-clear-size * 2 + 8px;
|
||||
padding-left: if($icon-position == 'right', $font-size, $input-height + if($icon-background-opacity == 0, 0, 8px));
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 38px;
|
||||
vertical-align: middle;
|
||||
white-space: normal;
|
||||
font-size: $font-size;
|
||||
appearance: none;
|
||||
color: white;
|
||||
font-family: $font-family;
|
||||
opacity: .5;
|
||||
color: transparent;
|
||||
|
||||
&::-webkit-input-placeholder{
|
||||
color: transparent;
|
||||
}
|
||||
&::placeholder{
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
&::-webkit-search-decoration,
|
||||
&::-webkit-search-cancel-button,
|
||||
|
|
@ -74,21 +79,30 @@ $custom:(
|
|||
}
|
||||
|
||||
&:focus,
|
||||
&:active {
|
||||
&:active,
|
||||
&.filled {
|
||||
outline: 0;
|
||||
padding-right: if($icon-position == 'right', $input-height, 0) + $icon-clear-size * 2 + 8px;
|
||||
padding-left: if($icon-position == 'right', $font-size, $input-height + if($icon-background-opacity == 0, 0, 8px));
|
||||
width: 100%;
|
||||
box-shadow: inset 0 0 0 $border-width $input-focus-border-color;
|
||||
background: $input-focus-background;
|
||||
opacity: 1;
|
||||
color: white;
|
||||
&::-webkit-input-placeholder{
|
||||
color: #777;
|
||||
}
|
||||
&::placeholder{
|
||||
color: #777;
|
||||
}
|
||||
// color: white;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: $placeholder-color;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&__submit {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
pointer-events: none;
|
||||
#{$icon-position}: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
|
|
|
|||
BIN
docs/img/.DS_Store
vendored
BIN
docs/img/.DS_Store
vendored
Binary file not shown.
50
docs/img/logo-community-inline-dark.svg
Normal file
50
docs/img/logo-community-inline-dark.svg
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="289px" height="46px" viewBox="0 0 289 46" 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: sketchtool 3.5.2 (25235) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>logos/logo-community-inline-dark</title>
|
||||
<desc>Created with sketchtool.</desc>
|
||||
<defs>
|
||||
<path d="M50.6720671,10.7487207 L49.5632815,14.8209014 L53.1342683,12.7924512 C52.6156526,11.8068765 51.7307035,11.061647 50.6720671,10.7487207 Z M41.9093449,14.9050279 C41.9093449,19.2673858 45.3211863,22.8045977 49.531249,22.8045977 C53.7413117,22.8045977 57.1531532,19.2673858 57.1531532,14.9050279 C57.1531532,10.54267 53.7413117,7.00545805 49.531249,7.00545805 C45.3211863,7.00545805 41.9093449,10.54267 41.9093449,14.9050279 Z M49.531249,9.262478 C52.5330543,9.262478 54.9754663,11.7938669 54.9754663,14.9050279 C54.9754663,18.0161888 52.5330543,20.5475778 49.531249,20.5475778 C46.5294437,20.5475778 44.0870318,18.0161888 44.0870318,14.9050279 C44.0870318,11.7938669 46.5294437,9.262478 49.531249,9.262478 Z M52.1619475,6.02838314 C52.1639998,5.99776053 52.1704985,5.96856223 52.1704985,5.93722746 L52.1704985,5.22507374 C52.1701564,4.43885602 51.5579076,3.80112236 50.8023447,3.80076628 L48.4077335,3.80076628 C47.6525126,3.80112236 47.0399217,4.43849995 47.0399217,5.22507374 L47.0399217,5.92476477 C47.8023254,5.70257281 48.6044056,5.5811506 49.4341909,5.5811506 C50.3853998,5.5811506 51.3017208,5.73924873 52.1619475,6.02838314 Z M43.8028698,7.42242406 C43.2686057,6.866232 42.4018803,6.86658807 41.8676162,7.42242406 L41.625795,7.6741704 C41.091531,8.23000638 41.091873,9.13230515 41.625795,9.68849721 L41.88335,9.95626702 C42.4316376,9.04043732 43.1297381,8.23214284 43.9410533,7.56663519 L43.8028698,7.42242406 Z" id="path-1"></path>
|
||||
<path d="M1.04907851,9.64668402 C1.04907851,13.4344306 4.01755991,16.5057197 7.68053575,16.5057197 C11.3435116,16.5057197 14.311993,13.4344306 14.311993,9.64668402 C14.311993,5.85893745 11.3435116,2.78764833 7.68053575,2.78764833 C4.01755991,2.78764833 1.04907851,5.85893745 1.04907851,9.64668402 L1.04907851,9.64668402 Z M7.68053575,4.55215043 C10.3963334,4.55215043 12.6060359,6.83768556 12.6060359,9.64668402 C12.6060359,12.4556825 10.3963334,14.7412176 7.68053575,14.7412176 C4.96473808,14.7412176 2.75503555,12.4556825 2.75503555,9.64668402 C2.75503555,6.83768556 4.96473808,4.55215043 7.68053575,4.55215043 L7.68053575,4.55215043 Z" id="path-2"></path>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
|
||||
<g id="logo" sketch:type="MSArtboardGroup" transform="translate(-38.000000, -26.000000)">
|
||||
<g id="logos/logo-community-inline-dark" sketch:type="MSLayerGroup" transform="translate(38.000000, 26.000000)">
|
||||
<text id="Community-Copy-2" sketch:type="MSTextLayer" font-family="Raleway" font-size="25.2972973" font-weight="normal" sketch:alignment="middle" fill="#FFFFFF">
|
||||
<tspan x="153.039676" y="31">Community</tspan>
|
||||
</text>
|
||||
<g id="Algolia_logo_bg-dark" transform="translate(59.000000, 9.137931)">
|
||||
<g id="Fill-4">
|
||||
<use fill="#46AEDA" fill-rule="evenodd" sketch:type="MSShapeGroup" xlink:href="#path-1"></use>
|
||||
<use fill="none" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<path d="M14.8852779,21.9042146 C14.5731086,21.0811993 14.2799616,20.2724032 14.0048178,19.4771491 C13.729674,18.6818949 13.4450191,17.8727603 13.1518721,17.0500836 L4.5123578,17.0500836 L2.77895206,21.9042146 L0,21.9042146 C0.733377032,19.8932271 1.42123645,18.033233 2.06357826,16.3235551 C2.70558039,14.6142158 3.3333158,12.9915453 3.94848292,11.4562207 C4.56263098,9.92021897 5.17270284,8.45328149 5.77801913,7.05473112 C6.38333542,5.65618076 7.01616609,4.27151095 7.67651113,2.90038314 L10.1252907,2.90038314 C10.7856357,4.27151095 11.4184664,5.65618076 12.0237827,7.05473112 C12.629099,8.45328149 13.2388311,9.92021897 13.8536586,11.4562207 C14.4678066,12.9915453 15.0958817,14.6142158 15.7382235,16.3235551 C16.3802257,18.033233 17.0680851,19.8932271 17.8018018,21.9042146 L14.8852779,21.9042146 L14.8852779,21.9042146 Z M12.3814696,14.8566176 C11.7941565,13.2657708 11.2119387,11.7260451 10.6344765,10.2357476 C10.0563349,8.74578875 9.45543448,7.31541468 8.83211496,5.94394833 C8.18977315,7.31541468 7.58004097,8.74578875 7.00257874,10.2357476 C6.42477683,11.7260451 5.85105112,13.2657708 5.28276035,14.8566176 L12.3814696,14.8566176 L12.3814696,14.8566176 Z" id="Fill-5" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M25.0041633,21.8544061 C23.433243,21.8173333 22.3193238,21.4747534 21.6617292,20.8256364 C21.0037964,20.1772059 20.6756757,19.1669726 20.6756757,17.7949363 L20.6756757,0.444873407 L23.223178,0 L23.223178,17.3778675 C23.223178,17.804891 23.2600493,18.1567392 23.3327771,18.4347851 C23.4061815,18.7124877 23.5249138,18.9352677 23.6889742,19.1020952 C23.8533728,19.2685795 24.0729093,19.3938717 24.346907,19.4772855 C24.621243,19.5606993 24.9588353,19.6303824 25.3603604,19.6859915 L25.0041633,21.8544061" id="Fill-6" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M36.822158,20.8776636 C36.6050066,21.0261685 36.1834577,21.2150503 35.5581825,21.4460199 C34.9329073,21.6769894 34.2032518,21.7926453 33.3695515,21.7926453 C32.5177273,21.7926453 31.7155761,21.6537214 30.963769,21.3769001 C30.2116264,21.0993944 29.5544665,20.6699621 28.992625,20.0879188 C28.4307835,19.5055333 27.9867475,18.7808021 27.660517,17.9123565 C27.3346221,17.0439109 27.1711712,16.0091672 27.1711712,14.8081254 C27.1711712,13.7549042 27.3248889,12.7892803 27.6333311,11.9115959 C27.9414377,11.0342537 28.3898369,10.2763313 28.9791999,9.63885529 C29.5678916,9.00137927 30.2881496,8.50248499 31.1403094,8.14217246 C31.9921336,7.78185992 32.9527013,7.60153257 34.0220126,7.60153257 C35.2000673,7.60153257 36.2284319,7.68981427 37.1077776,7.86500897 C37.9867877,8.04088802 38.7251695,8.20239563 39.3232589,8.34987398 L39.3232589,21.210602 C39.3232589,23.4279099 38.761753,25.0351159 37.63807,26.0329045 C36.5137158,27.030693 34.810403,27.5292451 32.5267892,27.5292451 C31.6387172,27.5292451 30.8006538,27.4560192 30.0122633,27.3081987 C29.2238728,27.1596938 28.5395271,26.9848413 27.9598973,26.7815881 L28.4220572,24.5365638 C28.9291913,24.7391327 29.5501034,24.9198022 30.2841221,25.0768615 C31.0181408,25.2335787 31.7837086,25.3126216 32.581161,25.3126216 C34.0854463,25.3126216 35.1681826,25.0077418 35.8300413,24.3976399 C36.4915643,23.7882224 36.822158,22.817808 36.822158,21.4874233 L36.822158,20.8776636 L36.822158,20.8776636 Z M35.7756695,9.97145147 C35.3494218,9.90712217 34.7741552,9.87427316 34.0495341,9.87427316 C32.6902401,9.87427316 31.643416,10.3276579 30.9093973,11.2327164 C30.1753786,12.1381172 29.808537,13.3388168 29.808537,14.8354996 C29.808537,15.6673322 29.9122461,16.3787185 30.1210068,16.9700006 C30.3294319,17.5616249 30.6103526,18.050596 30.963769,18.4389671 C31.3171855,18.8266538 31.7249736,19.1133983 32.1871336,19.2978317 C32.6492935,19.4829496 33.1252142,19.5749952 33.61456,19.5749952 C34.2848094,19.5749952 34.9010226,19.4781591 35.4628641,19.2841446 C36.02437,19.089788 36.4687416,18.8639511 36.7949722,18.6052652 L36.7949722,10.1794952 C36.5409017,10.1055849 36.2015816,10.0364651 35.7756695,9.97145147 Z" id="Fill-7" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M64.3555661,21.8544061 C62.7845344,21.8169901 61.670776,21.4747534 61.0132764,20.8256364 C60.3557768,20.1772059 60.027027,19.1666293 60.027027,17.7949363 L60.027027,0.444873407 L62.5751762,0 L62.5751762,17.3775242 C62.5751762,17.8045478 62.6113658,18.1563959 62.6844213,18.4344418 C62.7574768,18.7124877 62.876192,18.9349244 63.0409051,19.1017519 C63.2049418,19.2685795 63.4237701,19.3938717 63.6980665,19.4772855 C63.9720247,19.5606993 64.3095682,19.6300391 64.7117117,19.6856483 L64.3555661,21.8544061" id="Fill-8" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M69.3960108,4.41529235 C68.8758759,4.41529235 68.4328551,4.25890347 68.0692619,3.946827 C67.7045119,3.63404923 67.5225225,3.21327196 67.5225225,2.68274196 C67.5225225,2.15256261 67.7045119,1.73108405 68.0692619,1.41900757 C68.4328551,1.10622981 68.8758759,0.950191571 69.3960108,0.950191571 C69.9165313,0.950191571 70.3591666,1.10622981 70.7239165,1.41900757 C71.0875097,1.73108405 71.2702703,2.15256261 71.2702703,2.68274196 C71.2702703,3.21327196 71.0875097,3.63404923 70.7239165,3.946827 C70.3591666,4.25890347 69.9165313,4.41529235 69.3960108,4.41529235 L69.3960108,4.41529235 Z M67.9597598,7.0851241 L70.8642643,7.0851241 L70.8642643,21.8544061 L67.9597598,21.8544061 L67.9597598,7.0851241 Z" id="Fill-9" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M79.7721054,5.651341 C80.8085196,5.651341 81.6828227,5.79540939 82.3957002,6.08207984 C83.1078923,6.36911688 83.6816215,6.77492787 84.1165454,7.29914621 C84.5514692,7.82409772 84.8616394,8.44766094 85.0467134,9.17020245 C85.2314446,9.89274396 85.3243243,10.6893359 85.3243243,11.5603448 L85.3243243,21.2110946 C85.1022356,21.2506859 84.7920653,21.3049406 84.394499,21.3742254 C83.9962473,21.4435102 83.5476143,21.5076628 83.0479146,21.5670498 C82.5482149,21.6264368 82.0067022,21.6806915 81.4240619,21.7301807 C80.8407362,21.7793032 80.2622087,21.8045977 79.6888222,21.8045977 C78.874154,21.8045977 78.1249472,21.7155172 77.4401735,21.5373563 C76.7553998,21.3591954 76.1631632,21.076924 75.6634635,20.6912752 C75.1637638,20.3052599 74.7751084,19.795705 74.4974975,19.1618774 C74.2198866,18.5284163 74.0810811,17.7662835 74.0810811,16.8754789 C74.0810811,16.0246322 74.2428494,15.2918263 74.5670716,14.6781609 C74.8902656,14.0648621 75.3299876,13.5699707 75.8855522,13.1934866 C76.4407741,12.8177357 77.088533,12.5402299 77.8288288,12.362069 C78.568782,12.183908 79.3460926,12.0948276 80.1607608,12.0948276 C80.4195216,12.0948276 80.6882216,12.109491 80.9658325,12.1391845 C81.2434434,12.168878 81.5073452,12.2092025 81.7568523,12.2583251 C82.0067022,12.3078142 82.2243354,12.3521711 82.4097521,12.3917625 C82.5944834,12.4317204 82.7240351,12.4614138 82.7980647,12.4808429 L82.7980647,11.7088123 C82.7980647,11.2535121 82.7517962,10.8033442 82.6592593,10.3575753 C82.5663795,9.91217303 82.399813,9.51662646 82.1595596,9.17020245 C81.9189634,8.82377844 81.5902858,8.54663923 81.1738693,8.33841824 C80.7574529,8.13093042 80.2159402,8.02681992 79.5500167,8.02681992 C78.6983337,8.02681992 77.9539251,8.0913391 77.3150772,8.22001088 C76.6769148,8.34868265 76.200178,8.48248664 75.8855522,8.62068966 L75.5801802,6.33429119 C75.9133133,6.17629251 76.4688779,6.02269287 77.2458458,5.87422544 C78.0231565,5.72539142 78.865243,5.651341 79.7721054,5.651341 L79.7721054,5.651341 Z M79.9941942,19.4885057 C80.6049383,19.4885057 81.146451,19.4734757 81.6183896,19.4437822 C82.0903282,19.4140887 82.483439,19.3602006 82.7980647,19.2806513 L82.7980647,14.6781609 C82.612648,14.5795492 82.3120742,14.4952344 81.8960005,14.4259496 C81.4792414,14.3566648 80.9750862,14.3214725 80.3828495,14.3214725 C79.9941942,14.3214725 79.5822333,14.3515326 79.1476522,14.4109195 C78.7127284,14.4703065 78.3144766,14.5942127 77.9539251,14.7819048 C77.5926882,14.9703302 77.2917716,15.2273071 77.0515182,15.5543021 C76.810922,15.8805638 76.690624,16.3113027 76.690624,16.8457854 C76.690624,17.8355683 76.9863996,18.5232841 77.578979,18.9092995 C78.1712157,19.2956814 78.9762874,19.4885057 79.9941942,19.4885057 L79.9941942,19.4885057 Z" id="Fill-10" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
<g id="Group-14-Copy-2">
|
||||
<g id="Group-4" transform="translate(22.627417, 22.627417) rotate(-315.000000) translate(-22.627417, -22.627417) translate(6.627417, 6.627417)" sketch:type="MSShapeGroup">
|
||||
<rect id="Rectangle-194" fill="#1D3657" x="-7.10542736e-14" y="-3.87245791e-13" width="32" height="32"></rect>
|
||||
<path d="M2,7 L2,2 L8,2 L8,4 L4,4 L4,7 L2,7 L2,7 Z" id="Path" fill="#46AEDA"></path>
|
||||
<path d="M30,25 L30,30 L13,30 L13,28 L28,28 L28,25 L30,25 L30,25 Z" id="Path" fill="#FE336F"></path>
|
||||
<path d="M30,23 L30,2 L10,2 L10,4 L28,4 L28,23 L30,23 L30,23 Z" id="Path" fill="#F5A623"></path>
|
||||
<path d="M2,21 L2,30 L11,30 L11,28 L4,28 L4,21 L2,21 L2,21 Z" id="Path" fill="#50E3C2"></path>
|
||||
<path d="M2,19 L2,9 L4,9 L4,19 L2,19 L2,19 Z" id="Path" fill="#BD0FE1"></path>
|
||||
</g>
|
||||
<g id="Group-2" transform="translate(15.000000, 14.000000)">
|
||||
<g id="Fill-4">
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" sketch:type="MSShapeGroup" xlink:href="#path-2"></use>
|
||||
<use fill="none" xlink:href="#path-2"></use>
|
||||
</g>
|
||||
<path d="M8.95899884,5.69084925 L7.9902439,9.24149653 L11.110244,7.47283451 C10.6571253,6.61348461 9.88393806,5.96369839 8.95899884,5.69084925 L8.95899884,5.69084925 Z" id="Path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M9.94961398,1.95238446 L9.94961398,1.34136238 C9.94931991,0.666793997 9.42294281,0.11962372 8.77335229,0.119318209 L6.71460027,0.119318209 C6.06530381,0.11962372 5.53863264,0.666488486 5.53863264,1.34136238 L5.53863264,1.94169158 C6.19410447,1.75105269 6.88368788,1.64687342 7.5970906,1.64687342 C8.41488654,1.64687342 9.2026878,1.78252032 9.94226234,2.03059529 C9.94402673,2.00432134 9.94961398,1.97926943 9.94961398,1.95238446 Z" id="Path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
<path d="M2.75559749,3.22667102 C2.2962673,2.74946277 1.55110552,2.74976828 1.09177533,3.22667102 L0.883871072,3.44266733 C0.424540883,3.91957006 0.424834948,4.69373504 0.883871072,5.17094329 L1.10530234,5.4006876 C1.57668921,4.61491319 2.17687673,3.92140313 2.87439992,3.35040299 L2.75559749,3.22667102 L2.75559749,3.22667102 Z" id="Path" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
Loading…
Reference in a new issue