Removes party, layout updates

This commit is contained in:
Moritz Kröger 2017-08-27 00:50:47 +02:00
parent 3f08c27148
commit be611a497b
20 changed files with 263 additions and 464 deletions

View file

@ -3,6 +3,7 @@
"extends": "stylelint-config-standard",
"rules": {
"no-empty-source": null,
"color-hex-case": null
"color-hex-case": null,
"comment-empty-line-before": null
}
}

View file

@ -10,52 +10,65 @@
</div>
<div class="about-people">
<h2>
<a :href="$t('about.teamLabel.polis.url')" tagret="_blank">
{{ $t('about.teamLabel.polis.label') }}
</a>
</h2>
<ul>
<li v-for="(member, index) of $t('about.members.polis')">
<a :href="$t(`about.members.polis[${index}].profile`)" target="_blank">
<span>{{ $t(`about.members.polis[${index}].name`) }}</span>
<div class="people-group">
<h2>
<a :href="$t('about.teamLabel.polis.url')" target="_blank">
<svgicon class="team-logo" name="polis-logo" width="150" height="100" />
<span hidden>{{ $t('about.teamLabel.polis.label') }}</span>
</a>
</li>
</ul>
</h2>
<ul>
<li v-for="(member, index) of $t('about.members.polis')">
<a :href="$t(`about.members.polis[${index}].profile`)" target="_blank">
{{ $t(`about.members.polis[${index}].name`) }}
<feather-external-link />
</a>
</li>
</ul>
</div>
<h2>
<a :href="$t('about.teamLabel.poe.url')" tagret="_blank">
{{ $t('about.teamLabel.poe.label') }}
</a>
</h2>
<ul>
<li v-for="(member, index) of $t('about.members.poe')">
<a :href="$t(`about.members.poe[${index}].profile`)" target="_blank">
<span>{{ $t(`about.members.poe[${index}].name`) }}</span>
<div class="people-group">
<h2>
<a :href="$t('about.teamLabel.poe.url')" target="_blank">
<svgicon class="team-logo" name="poe-logo" width="400" height="60" />
<span hidden>{{ $t('about.teamLabel.poe.label') }}</span>
</a>
</li>
</ul>
</h2>
<ul>
<li v-for="(member, index) of $t('about.members.poe')">
<a :href="$t(`about.members.poe[${index}].profile`)" target="_blank">
{{ $t(`about.members.poe[${index}].name`) }}
<feather-external-link />
</a>
</li>
</ul>
</div>
<h2>{{ $t('about.teamLabel.dev') }}</h2>
<ul>
<li v-for="(member, index) of $t('about.members.dev')">
<a :href="$t(`about.members.dev[${index}].profile`)" target="_blank">
<span>{{ $t(`about.members.dev[${index}].name`) }}</span>
</a>
</li>
</ul>
<div class="people-group">
<h2>{{ $t('about.teamLabel.dev') }}</h2>
<ul>
<li v-for="(member, index) of $t('about.members.dev')">
<a :href="$t(`about.members.dev[${index}].profile`)" target="_blank">
{{ $t(`about.members.dev[${index}].name`) }}
<feather-external-link />
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
</template>
<script>
import '@/assets/icons'
export default {
name: 'About'
}
</script>
<style lang="scss" scoped>
@import "~styles/colors";
@import "~styles/layout";
h1,
@ -65,11 +78,18 @@
.about-content {
display: flex;
flex-direction: column;
}
.about-people {
flex: 1 0 350px;
margin-left: $base-gap;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
.people-group {
flex: 1 0 50%;
text-align: center;
}
h2 {
margin-bottom: $small-gap;
@ -79,5 +99,15 @@
list-style: none;
margin-bottom: $base-gap;
}
li:not(:last-child) {
margin-bottom: $small-gap;
}
svg:not(.team-logo) {
stroke: $transparent-white;
width: 1em;
height: 1em;
}
}
</style>

View file

@ -2,7 +2,7 @@
<div id="app">
<header class="app-header">
<router-link :to="{ path: '/' }">
<img class="header-logo" :src="euromatLogo" width="90" height="90" />
<img class="header-logo" :src="euromatLogo" :width="logoSize" :height="logoSize" />
</router-link>
<app-menu :main="topMenu" :languages="languages" />
@ -80,6 +80,7 @@
data () {
return {
euromatLogo: require('@/assets/svg/euromat-logo.svg'),
logoSize: 110,
languages: [
{ icon: require('@/assets/svg/flag-de.svg'), locale: 'de' },
{ icon: require('@/assets/svg/flag-uk.svg'), locale: 'en' }
@ -202,7 +203,7 @@
a {
color: $text-color-base;
text-decoration: none;
transition: color 150ms $easeInOutQuint;
transition: color 150ms $easeOutBack;
&:not(.btn):hover {
color: $text-color-special;

View file

@ -148,8 +148,8 @@
opacity: 1;
transform: translate(-70px, -50%);
transition:
transform 150ms $easeInOutQuint,
opacity 200ms $easeInOutQuint;
transform 150ms $easeOutBack,
opacity 200ms $easeOutBack;
}
@media (max-width: $breakpoint) {
@ -185,8 +185,8 @@
box-shadow: $button-shadow;
transform: translate(-70px, -47%);
transition:
transform 150ms $easeInOutQuint,
opacity 200ms $easeInOutQuint;
transform 150ms $easeOutBack,
opacity 200ms $easeOutBack;
}
&::before {

View file

@ -7,7 +7,10 @@
<ul class="party-results">
<li v-for="party of parties">
<router-link :to="{ path: getPartyPath(party.token.toLowerCase()) }">
<h2>{{ party.token }} ({{ getScorePercentage(party.score) }} %)</h2>
<h2>
{{ party.token }}
<span>({{ getScorePercentage(party.score) }}%)</span>
</h2>
<!-- <svgicon :name="getPartyLogoName(item.token)" width="50" height="50" /> -->
<party-percentage
class="result-percentage"
@ -16,6 +19,16 @@
</router-link>
</li>
</ul>
<div class="results-ctrls">
<router-link
tag="a"
class="btn"
:to="{ path: this.isGermanLocale ? '/thesen' : '/theses' }">
{{ $t('euromat.results.buttons.back') }}
<feather-corner-up-left />
</router-link>
</div>
</section>
</template>
@ -157,24 +170,77 @@
</script>
<style lang="scss" scoped>
@import "~styles/colors";
@import "~styles/layout";
section {
width: 95%;
margin: 0 auto;
}
.results-header {
margin-bottom: $base-gap;
margin-bottom: $base-gap * 2;
display: flex;
}
.party-results {
list-style: none;
width: 100%;
counter-reset: result;
li {
display: flex;
flex-direction: column;
align-items: flex-end;
margin-bottom: $base-gap;
position: relative;
&::before {
counter-increment: result;
content: counter(result) ".";
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
color: $text-color-secondary;
font-size: $font-size-xlarge;
font-weight: 600;
}
}
a {
height: 80px;
width: 92%;
position: relative;
display: flex;
justify-content: flex-start;
align-items: center;
padding: $small-gap;
}
h2 {
position: relative;
z-index: 1;
color: $text-color-base;
font-weight: 600;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
span {
font-weight: 400;
}
}
.result-percentage {
height: 40px;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
}
.results-ctrls {
margin-top: $base-gap * 2;
border-top: 4px solid $transparent-white;
padding-top: $base-gap * 2;
}
</style>

View file

@ -11,7 +11,10 @@ export default {
back: 'Zurück'
},
results: {
headline: 'Dein Ergebnis'
headline: 'Dein Ergebnis',
buttons: {
back: 'Zurück zum Anfang'
}
},
emphasis: {
headline: 'Welche Thesen sind dir wichtig?',
@ -32,7 +35,10 @@ export default {
back: 'Back'
},
results: {
headline: 'Your results'
headline: 'Your results',
buttons: {
back: 'Back to beginning'
}
},
emphasis: {
headline: 'Which theses are important for you?',

View file

@ -29,7 +29,7 @@ export default {
represented: {
polis: {
label: 'Vertretungsberechtigte Personen:',
text: ' Christian Freudlsperger, Co-Vorsitzender Sonja Schiffers, Co-Vorsitzende Julian Zuber, Schatzmeiste'
text: ' Christian Freudlsperger, Co-Vorsitzender Sonja Schiffers, Co-Vorsitzende Julian Zuber, Schatzmeister.'
},
poe: {
label: 'Vertreten durch:',

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,4 @@
/* eslint-disable */
require('./afd-logo')
require('./cdu-logo')
require('./euromat-logo')
require('./european-stars')
@ -8,4 +7,6 @@ require('./flag-de')
require('./flag-uk')
require('./grüne-logo')
require('./linke-logo')
require('./poe-logo')
require('./polis-logo')
require('./spd-logo')

View file

@ -0,0 +1,11 @@
/* eslint-disable */
var icon = require('vue-svgicon')
icon.register({
'poe-logo': {
width: 171,
height: 15,
viewBox: '0 0 171 15',
data: '<defs><path pid="0" id="svgicon-poe-logo-a" d="M9.33 14.708V.18H.56v14.528h8.77z"/><path pid="1" id="svgicon-poe-logo-c" d="M.346.223v14.485h11.04V.223H.345z"/></defs><g fill-rule="evenodd"><path pid="2" d="M72.207 5.292a4.094 4.094 0 0 0-4.09 4.087 4.095 4.095 0 0 0 4.09 4.09 4.093 4.093 0 0 0 4.087-4.09 4.092 4.092 0 0 0-4.087-4.087" fill-opacity=".496"/><path pid="3" d="M45.864 2.8c-.443 0-.802.117-1.084.352-.28.234-.424.57-.424 1.01 0 .44.131.793.392 1.063.26.268.603.475 1.022.62.42.144.887.28 1.403.413.516.13 1.027.289 1.538.472a6.9 6.9 0 0 1 1.392.692c.42.275.761.665 1.022 1.167.261.503.39 1.104.39 1.806 0 1.224-.499 2.273-1.495 3.145-.997.875-2.309 1.313-3.94 1.313-1.63 0-2.945-.395-3.943-1.176-.997-.784-1.496-1.901-1.496-3.345H44.4c.096 1.155.687 1.736 1.773 1.736.511 0 .91-.137 1.197-.404.29-.27.433-.608.433-1.024 0-.411-.13-.746-.392-1.01-.26-.26-.602-.466-1.022-.618-.419-.15-.887-.291-1.402-.423a13.895 13.895 0 0 1-1.539-.486 7.434 7.434 0 0 1-1.392-.691c-.419-.268-.758-.653-1.022-1.154-.259-.503-.392-1.098-.392-1.786 0-1.35.503-2.426 1.508-3.24C43.153.422 44.434.017 45.996.017c1.562 0 2.824.354 3.787 1.062.964.708 1.467 1.826 1.506 3.355h-3.838c-.054-.525-.224-.926-.505-1.21-.283-.282-.644-.422-1.082-.422M63.898.18v2.682h-5.242V5.98h4.622v2.68h-4.622v3.363h5.242v2.685h-8.77V.18zM84.483 4.267v1.406h-2.188v9.033h-1.75V5.673h-1.351V4.267h1.351v-.874c0-1.143.305-1.971.914-2.492.61-.52 1.566-.78 2.872-.78v1.408c-.763 0-1.291.142-1.587.429-.299.285-.449.763-.449 1.435v.874h2.188zM96.11.18v2.682h-5.24V5.98h4.623v2.68H90.87v3.363h5.24v2.685h-8.77V.18zM99.91 8.867V.221h3.525v8.646c0 .866.212 1.535.64 2.001.426.468 1.054.702 1.877.702.827 0 1.461-.234 1.898-.702.442-.466.661-1.135.661-2V.22h3.53v8.646c0 1.28-.299 2.383-.9 3.312-.596.93-1.353 1.606-2.267 2.034a6.994 6.994 0 0 1-2.982.637c-1.679 0-3.095-.523-4.25-1.566-1.156-1.045-1.733-2.518-1.733-4.417M119.407 2.904V6.39h2.188c.535 0 .959-.158 1.27-.473.308-.319.466-.734.466-1.248 0-.517-.162-.94-.478-1.27-.316-.332-.735-.495-1.258-.495h-2.188zm0 6.168v5.636h-3.528V.222h5.716c1.679 0 2.984.433 3.92 1.3.936.864 1.402 1.912 1.402 3.137 0 .84-.253 1.657-.764 2.453-.507.798-1.34 1.363-2.496 1.692l3.549 5.904h-4.125l-3.26-5.636h-.414zM139.844 10.456c.696-.757 1.043-1.767 1.043-3.034 0-1.266-.347-2.275-1.043-3.03-.694-.759-1.623-1.138-2.783-1.138-1.162 0-2.091.38-2.784 1.137-.697.756-1.044 1.765-1.044 3.031 0 1.267.347 2.277 1.044 3.034.693.76 1.622 1.135 2.784 1.135 1.16 0 2.089-.376 2.783-1.135m-8.044 2.291c-1.441-1.404-2.157-3.179-2.157-5.325 0-2.146.716-3.916 2.157-5.313 1.433-1.396 3.196-2.094 5.28-2.094 2.083 0 3.839.698 5.262 2.094 1.426 1.397 2.136 3.167 2.136 5.313s-.716 3.921-2.146 5.325c-1.43 1.402-3.184 2.105-5.261 2.105s-3.838-.703-5.271-2.105M151.102 6.39h2.188c.535 0 .958-.157 1.268-.475.31-.316.464-.731.464-1.246 0-.516-.158-.94-.474-1.27-.318-.33-.737-.495-1.258-.495h-2.188V6.39zm7.51-1.73c0 .976-.351 1.917-1.053 2.825-.371.468-.924.848-1.658 1.145-.74.296-1.61.443-2.611.443h-2.188v5.635h-3.53V.223h5.718c1.677 0 2.984.433 3.92 1.299.932.865 1.402 1.913 1.402 3.138z"/><g transform="translate(161)"><mask id="svgicon-poe-logo-b" fill="#fff"><use xlink:href="#svgicon-poe-logo-a"/></mask><path pid="4" mask="url(#svgicon-poe-logo-b)" d="M9.33.18v2.682H4.09V5.98h4.625v2.68H4.09v3.363h5.24v2.685H.56V.18z"/></g><path pid="5" d="M72.207 5.292a4.094 4.094 0 0 0-4.09 4.087 4.095 4.095 0 0 0 4.09 4.09 4.093 4.093 0 0 0 4.087-4.09 4.092 4.092 0 0 0-4.087-4.087m0 9.604a5.522 5.522 0 0 1-5.515-5.517 5.522 5.522 0 0 1 5.515-5.513 5.521 5.521 0 0 1 5.515 5.513 5.522 5.522 0 0 1-5.515 5.517M14.272 8.867V.221H17.8v8.646c0 .866.215 1.535.64 2.001.427.468 1.055.702 1.877.702.828 0 1.46-.234 1.9-.702.44-.466.657-1.135.657-2V.22h3.53v8.646c0 1.28-.299 2.383-.897 3.312-.599.93-1.356 1.606-2.268 2.034-.915.425-1.909.637-2.984.637-1.677 0-3.093-.523-4.249-1.566-1.156-1.045-1.734-2.518-1.734-4.417M30.243.22h3.528v11.804h4.395v2.683h-7.923z"/><g><mask id="svgicon-poe-logo-d" fill="#fff"><use xlink:href="#svgicon-poe-logo-c"/></mask><path pid="6" d="M3.873 6.39h2.188c.536 0 .96-.157 1.27-.475.308-.316.462-.731.462-1.246 0-.516-.156-.94-.474-1.27-.316-.33-.738-.495-1.258-.495H3.873V6.39zm7.512-1.73c0 .976-.35 1.917-1.053 2.825-.37.468-.926.848-1.66 1.145-.737.296-1.607.443-2.61.443H3.872v5.635H.345V.223h5.716c1.68 0 2.984.433 3.92 1.299.934.865 1.404 1.913 1.404 3.138z" mask="url(#svgicon-poe-logo-d)"/></g></g>'
}
})

File diff suppressed because one or more lines are too long

View file

@ -1,237 +0,0 @@
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="270.94965mm"
height="124.74815mm"
viewBox="0 0 960.0578 442.02099"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Alternative-fuer-Deutschland-Logo-2013.svg">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="247.9485"
inkscape:cy="441.95185"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(517.17175,-677.066)">
<g
id="g3369"
transform="translate(-549.17176,642.10877)">
<path
style="fill:#009ee0;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2438"
d="m 32.000008,81.947477 886.918392,0 0,371.141223 -886.918392,0 0,-371.141223 z"
inkscape:connector-curvature="0" />
<path
style="fill:#e2001a;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2440"
d="m 212.46757,424.95862 c 25.44856,55.84637 117.04488,68.63326 250.00464,27.52028 C 526.75516,432.60027 664.46543,380.35557 743.97449,324.49015 845.43662,253.20527 890.86182,214.7439 903.12875,198.49417 L 955.49867,264.31796 991.6597,53.931733 775.80698,35.362557 827.30302,102.27257 c 0,0 -69.90188,70.30207 -183.46215,120.09664 -86.20605,37.79984 -224.15861,83.26592 -262.27157,63.99165 -64.15499,-32.43957 25.92226,-119.18193 25.92226,-119.18193 -107.42953,24.53658 -186.16001,74.73129 -203.77364,174.87313 -4.33671,24.65635 -3.18787,56.71207 8.74965,82.90656"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ed1c24;stroke-width:0.68058848;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2442"
d="m 212.46757,424.95862 c 25.44856,55.84637 117.04488,68.63326 250.00464,27.52028 C 526.75516,432.60027 664.46543,380.35557 743.97449,324.49015 845.43662,253.20527 890.86182,214.7439 903.12875,198.49417 L 955.49867,264.31796 991.6597,53.931733 775.80698,35.362557 827.30302,102.27257 c 0,0 -69.90188,70.30207 -183.46215,120.09664 -86.20605,37.79984 -224.15861,83.26592 -262.27157,63.99165 -64.15499,-32.43957 25.92226,-119.18193 25.92226,-119.18193 -107.42953,24.53658 -186.16001,74.73129 -203.77364,174.87313 -4.33671,24.65635 -3.18787,56.71207 8.74965,82.90656 z"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2446"
d="m 627.58298,130.35637 0,22.34781 -8.51825,0 0,21.48481 8.39574,0 0,52.10309 26.05293,0 0,-52.22832 15.06278,0 0,-21.6046 -15.06278,0 0,-22.22529 -25.93042,0.1225"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2448"
d="m 228.7418,130.39176 0,22.34781 -8.51824,0 0,21.48209 8.39576,0 0,52.10309 26.05292,0 0,-52.22559 15.06277,0 0,-21.60733 -15.06277,0 0,-22.22257 -25.93044,0.1225"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2450"
d="m 555.5141,372.18307 0,12.2887 -4.68517,0 0,11.81774 4.61711,0 0,28.6555 14.32775,0 0,-28.72083 8.28685,0 0,-11.8858 -8.28685,0 0,-12.22337 -14.25969,0.0681"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2452"
d="m 397.16839,315.09803 0,3.15793 -3.27771,0 0,8.27323 3.23143,0 0,20.05831 10.02915,0 0,-20.10731 7.05362,-0.0653 0,-8.11805 -7.02095,0.0463 -0.14156,-6.11169 c -0.0381,-2.78224 1.85392,-3.52817 2.94014,-3.63434 2.96464,-0.28857 4.08353,1.44557 4.08353,1.44557 l 0.0436,-8.55368 c -11.98653,-2.10434 -17.19167,4.77505 -16.94121,13.60909"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.68058848;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2454"
d="m 397.16839,315.09803 0,3.15793 -3.27771,0 0,8.27323 3.23143,0 0,20.05831 10.02915,0 0,-20.10731 7.05362,-0.0653 0,-8.11805 -7.02095,0.0463 -0.14156,-6.11169 c -0.0381,-2.78224 1.85392,-3.52817 2.94014,-3.63434 2.96464,-0.28857 4.08353,1.44557 4.08353,1.44557 l 0.0436,-8.55368 c -11.98653,-2.10434 -17.19167,4.77505 -16.94121,13.60909 z"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2456"
d="m 677.5899,152.7069 -0.12251,73.46272 25.92498,0 0,-73.58523 -25.80247,0.12251"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2458"
d="m 703.39509,123.93979 c 0,7.22512 -5.85851,13.08635 -13.08908,13.08635 -7.22785,0 -13.08635,-5.86123 -13.08635,-13.08635 0,-7.23058 5.8585,-13.08908 13.08635,-13.08908 7.23057,0 13.08908,5.8585 13.08908,13.08908"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:2.72235394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2460"
d="m 703.39509,123.93979 c 0,7.22512 -5.85851,13.08635 -13.08908,13.08635 -7.22785,0 -13.08635,-5.86123 -13.08635,-13.08635 0,-7.23058 5.8585,-13.08908 13.08635,-13.08908 7.23057,0 13.08908,5.8585 13.08908,13.08908 z"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2462"
d="m 710.18464,152.58439 38.52403,73.58791 17.15899,0 38.2763,-73.95815 -29.51032,0 -17.16171,37.5331 -17.9022,-37.40787 -29.38509,0.24501"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2464"
d="m 182.84836,106.78079 26.42317,0 0,119.26904 -26.42317,0 0,-119.26904 z"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2466"
d="m 713.50591,359.30089 14.53737,0 0,65.60056 -14.53737,0 0,-65.60056 z"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2468"
d="m 106.14876,185.75355 11.71701,-34.57934 11.374,34.57934 -23.09101,0 z m 27.22354,-68.12418 -30.78438,0.22868 -41.932415,108.21629 30.212683,0 7.467417,-18.61006 38.597535,0 7.23874,18.72439 30.32702,0 -41.1266,-108.5593"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2470"
d="m 366.34862,152.46189 0.11434,73.61245 26.07743,0 c 0,0 -0.22868,-14.02013 -0.11434,-27.8633 -0.91743,-34.85974 29.40959,-21.64815 29.40959,-21.64815 l 0,-25.27434 c -24.23984,-1.37751 -29.40959,13.61177 -29.40959,13.61177 l 0,-12.43843 -26.07743,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2472"
d="m 454.02747,318.38936 0.0463,28.15458 9.97199,0 c 0,0 -0.0871,-5.36032 -0.0436,-10.65529 -0.35119,-13.33409 11.24876,-8.27868 11.24876,-8.27868 l 0,-9.66708 c -9.27233,-0.52814 -11.24876,5.20514 -11.24876,5.20514 l 0,-4.75867 -9.97471,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2474"
d="m 832.17876,178.51481 c 0,0 1.95193,-11.60267 15.27785,-11.60267 13.32592,0 14.82049,11.60267 14.82049,11.60267 l -30.09834,0 z m 14.70343,-28.60377 c -42.86618,0 -41.35527,38.82893 -41.35527,38.82893 -0.11434,8.61353 2.29766,40.20645 41.81535,40.09207 34.81619,-0.10069 38.54037,-25.15995 38.54037,-25.15995 l -25.55746,0 c 0,0 -2.96465,6.89023 -13.21159,6.66427 -10.3395,-0.2314 -15.50925,-5.62978 -15.50925,-16.65804 l 55.25834,-0.11433 c 0,0 2.86936,-43.65295 -39.98049,-43.65295"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2476"
d="m 466.26718,398.56268 c 0,0 1.0726,-6.3812 8.40118,-6.3812 7.3313,0 8.15345,6.3812 8.15345,6.3812 l -16.55463,0 z m 8.08539,-15.73249 c -23.57559,0 -22.74527,21.35415 -22.74527,21.35415 -0.0626,4.73962 1.26589,22.11368 22.99845,22.05106 19.14903,-0.0544 21.19897,-13.83772 21.19897,-13.83772 l -14.05824,0 c 0,0 -1.63069,3.79224 -7.26596,3.66701 -5.687,-0.12795 -8.4393,-3.29405 -8.4393,-9.36217 l 30.2998,0.13339 c 0,0 1.57896,-24.00572 -21.98845,-24.00572"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2478"
d="m 299.50669,178.52026 c 0,0 1.9519,-11.60267 15.27783,-11.60267 13.32592,0 14.82049,11.60267 14.82049,11.60267 l -30.09832,0 z m 14.70341,-28.60377 c -42.86616,0 -41.35526,38.82893 -41.35526,38.82893 -0.11433,8.61625 2.29765,40.20644 41.81534,40.0921 34.81618,-0.10072 38.54036,-25.15727 38.54036,-25.15727 l -25.55746,0 c 0,0 -2.96464,6.89028 -13.21158,6.66156 -10.3395,-0.22868 -15.50925,-5.62979 -15.50925,-16.65532 l 55.25834,-0.11706 c 0,0 2.86936,-43.65294 -39.98049,-43.65294"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2480"
d="m 431.80218,152.54083 0,73.58795 26.00392,0 0,-40.57124 c 0,0 0.32396,-15.21251 13.38037,-14.99744 13.05369,0.21506 12.08453,14.99744 12.08453,14.99744 l 0,40.68014 26.21899,-0.0681 c 0,0 0,-34.88424 0,-40.30445 0,-5.42021 1.93831,-35.74179 -26.11282,-35.74179 -19.43216,0 -25.4649,12.19343 -25.4649,12.19343 l -0.10617,-9.77598 -26.00392,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2482"
d="m 791.06033,384.39827 0,40.47323 14.2978,0 0,-22.31241 c 0,0 0.1824,-8.36851 7.36124,-8.25145 7.18157,0.11706 6.64799,8.25145 6.64799,8.25145 l 0,22.37231 14.42031,-0.0381 c 0,0 0,-19.18442 0,-22.16812 0,-2.97826 1.06444,-19.6554 -14.36314,-19.6554 -10.68796,0 -14.00379,6.70244 -14.00379,6.70244 l -0.0626,-5.37393 -14.2978,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2484"
d="m 661.66413,359.88347 0,64.97442 14.2978,0 0,-22.31241 c 0,0 0.17967,-8.36852 7.36124,-8.24873 7.18157,0.11706 6.64527,8.24873 6.64527,8.24873 l 0,22.3723 14.42031,-0.0381 c 0,0 0,-19.18443 0,-22.16813 0,-2.97825 1.06716,-19.65539 -14.36042,-19.65539 -10.68796,0 -14.00651,6.70516 -14.00651,6.70516 l -0.0599,-29.87784 -14.2978,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2486"
d="m 565.49425,206.91713 c -9.59085,0 -17.36589,-7.77504 -17.36589,-17.36317 0,-9.58813 7.77504,-17.36317 17.36589,-17.36317 9.58813,0 17.36318,7.77504 17.36318,17.36317 0,9.58813 -7.77505,17.36317 -17.36318,17.36317 z m 16.0755,-54.58864 0,7.76688 c 0,0 -6.58265,-9.92571 -22.55198,-9.92571 -19.63634,-0.21506 -37.44053,14.13447 -37.54942,39.70826 1.07805,31.50576 26.43405,39.06029 37.0104,38.95139 15.96932,0.10618 23.091,-10.79136 23.091,-10.79136 l 0,8.30862 26.32789,0 0,-74.01808 -26.32789,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2488"
d="m 758.36758,414.31149 c -5.27048,0 -9.5473,-4.27681 -9.5473,-9.55274 0,-5.27047 4.27682,-9.54457 9.5473,-9.54457 5.27592,0 9.55274,4.2741 9.55274,9.54457 0,5.27593 -4.27682,9.55274 -9.55274,9.55274 z m 8.84221,-30.02484 0,4.27138 c 0,0 -3.61801,-5.46105 -12.40033,-5.46105 -10.8023,-0.11706 -20.59188,7.77777 -20.6545,21.84145 0.5962,17.32778 14.54282,21.48209 20.35777,21.4222 8.78231,0.0572 12.69706,-5.93473 12.69706,-5.93473 l 0,4.57083 14.48292,0 0,-40.71008 -14.48292,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2490"
d="m 864.48221,414.25977 c -5.27592,0 -9.55002,-4.27954 -9.55002,-9.55002 0,-5.27592 4.2741,-9.55002 9.55002,-9.55002 5.2732,0 9.55002,4.2741 9.55002,9.55002 0,5.27048 -4.27682,9.55002 -9.55002,9.55002 z m 8.84221,-54.52875 0,28.778 c 0,0 -3.62073,-5.46104 -12.40577,-5.46104 -10.79686,-0.11978 -20.58916,7.77232 -20.65178,21.836 0.5962,17.32779 14.5401,21.48754 20.35777,21.42221 8.78231,0.0626 12.69978,-5.93201 12.69978,-5.93201 l 0,4.57083 14.4802,0 0,-65.21399 -14.4802,0"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2492"
d="m 411.50431,411.94577 0,-32.73086 c 0,0 20.16719,-2.25683 20.36048,16.75336 0.18784,18.55285 -20.36048,15.9775 -20.36048,15.9775 z m 4.4456,-45.80905 c -0.6452,0.005 -19.45666,0 -19.45666,0 l 0,58.69395 c 0,0 9.83586,0.0245 19.56555,-0.0299 11.40394,-0.0681 31.91416,-4.60894 31.65553,-29.41231 -0.22051,-21.19897 -18.55556,-29.38236 -31.76442,-29.25169"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2494"
d="m 502.95089,384.37649 13.66078,0 0.12795,23.25979 c 0,8.44202 14.55915,8.50464 14.55915,0 l 0,-23.32513 13.85405,-0.0653 0,25.13005 c 0,0 2.12616,16.4294 -20.87501,16.4294 -23.00116,0 -21.32692,-16.55735 -21.32692,-16.55735 l 0,-24.87143"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2496"
d="m 417.40092,318.52003 9.56363,0 0.0898,16.2824 c 0,5.9075 10.18977,5.95106 10.18977,0 l 0,-16.32868 9.69975,-0.049 0,17.59185 c 0,0 1.48913,11.50194 -14.6136,11.50194 -16.1,0 -14.92939,-11.58906 -14.92939,-11.58906 l 0,-17.40945"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2498"
d="m 609.82234,394.35936 c -1.68514,-1.60619 -12.08181,-3.81129 -12.37038,0.96916 -0.38929,6.37303 19.06465,0.29946 18.16899,15.9775 -0.64247,11.27054 -9.34856,14.49381 -18.04103,14.49381 -5.57266,0 -13.40215,-1.99821 -16.94666,-4.63617 l 4.96285,-9.86037 c 2.51001,2.12616 15.09273,7.19518 16.17079,1.22778 1.09438,-6.06268 -18.84958,-0.89293 -18.10366,-15.46569 1.03177,-20.16992 25.83786,-14.3713 30.66732,-11.3386 l -4.50822,8.63258"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2500"
d="m 652.53607,385.4001 c -7.40752,-4.63889 -31.31523,-3.02998 -31.63647,18.49295 -0.36207,24.41679 26.67634,23.25979 31.76442,19.522 l -0.12795,-11.85586 c 0,0 -6.75688,4.85941 -12.95023,1.22506 -6.69972,-3.93108 -4.60895,-13.87856 -0.32396,-16.55735 7.73148,-4.8349 13.33953,1.28767 13.33953,1.28767 l -0.0653,-12.11447"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2502"
d="m 430.15787,308.0063 c 0,2.76046 -2.23505,4.99552 -4.99552,4.99552 -2.76046,0 -4.99824,-2.23506 -4.99824,-4.99552 0,-2.76047 2.23778,-4.99824 4.99824,-4.99824 2.76047,0 4.99552,2.23777 4.99552,4.99824"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.68058848;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2504"
d="m 430.15787,308.0063 c 0,2.76046 -2.23505,4.99552 -4.99552,4.99552 -2.76046,0 -4.99824,-2.23506 -4.99824,-4.99552 0,-2.76047 2.23778,-4.99824 4.99824,-4.99824 2.76047,0 4.99552,2.23777 4.99552,4.99824 z"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2506"
d="m 444.04732,308.0063 c 0,2.76046 -2.23505,4.99552 -4.99552,4.99552 -2.76046,0 -4.99551,-2.23506 -4.99551,-4.99552 0,-2.76047 2.23505,-4.99824 4.99551,-4.99824 2.76047,0 4.99552,2.23777 4.99552,4.99824"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.68058848;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2508"
d="m 444.04732,308.0063 c 0,2.76046 -2.23505,4.99552 -4.99552,4.99552 -2.76046,0 -4.99551,-2.23506 -4.99551,-4.99552 0,-2.76047 2.23505,-4.99824 4.99551,-4.99824 2.76047,0 4.99552,2.23777 4.99552,4.99824 z"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="171px" height="15px" viewBox="0 0 171 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>Group 43</title>
<desc>Created with Sketch.</desc>
<defs>
<polygon id="path-1" points="9.33 14.7078 9.33 0.1798 0.5607 0.1798 0.5607 14.7078 9.33 14.7078"></polygon>
<polygon id="path-3" points="0.346 0.2227 0.346 14.7077 11.3852 14.7077 11.3852 0.2227 0.346 0.2227"></polygon>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard-Copy" transform="translate(-481.000000, -32.000000)">
<g id="Group-43" transform="translate(481.000000, 32.000000)">
<path d="M72.2067,5.2921 C69.9527,5.2921 68.1177,7.1271 68.1177,9.3791 C68.1177,11.6341 69.9527,13.4691 72.2067,13.4691 C74.4607,13.4691 76.2937,11.6341 76.2937,9.3791 C76.2937,7.1271 74.4607,5.2921 72.2067,5.2921" id="Fill-13" fill-opacity="0.495838995" fill="#FFFFFF"></path>
<path d="M45.8644,2.8009 C45.4214,2.8009 45.0624,2.9169 44.7804,3.1519 C44.4994,3.3859 44.3564,3.7229 44.3564,4.1629 C44.3564,4.6029 44.4874,4.9549 44.7484,5.2249 C45.0084,5.4929 45.3514,5.6999 45.7704,5.8449 C46.1904,5.9889 46.6574,6.1249 47.1734,6.2579 C47.6894,6.3889 48.2004,6.5469 48.7114,6.7299 C49.2204,6.9169 49.6824,7.1479 50.1034,7.4219 C50.5234,7.6969 50.8644,8.0869 51.1254,8.5889 C51.3864,9.0919 51.5154,9.6929 51.5154,10.3949 C51.5154,11.6189 51.0164,12.6679 50.0204,13.5399 C49.0234,14.4149 47.7114,14.8529 46.0804,14.8529 C44.4504,14.8529 43.1354,14.4579 42.1374,13.6769 C41.1404,12.8929 40.6414,11.7759 40.6414,10.3319 L44.3994,10.3319 C44.4954,11.4869 45.0864,12.0679 46.1724,12.0679 C46.6834,12.0679 47.0814,11.9309 47.3694,11.6639 C47.6584,11.3949 47.8024,11.0559 47.8024,10.6399 C47.8024,10.2289 47.6724,9.8939 47.4104,9.6299 C47.1494,9.3699 46.8084,9.1639 46.3884,9.0119 C45.9694,8.8619 45.5014,8.7209 44.9864,8.5889 C44.4694,8.4579 43.9594,8.2979 43.4474,8.1029 C42.9394,7.9119 42.4744,7.6799 42.0554,7.4119 C41.6364,7.1439 41.2974,6.7589 41.0334,6.2579 C40.7744,5.7549 40.6414,5.1599 40.6414,4.4719 C40.6414,3.1219 41.1444,2.0459 42.1494,1.2329 C43.1534,0.4209 44.4344,0.0159 45.9964,0.0159 C47.5584,0.0159 48.8204,0.3699 49.7834,1.0779 C50.7474,1.7859 51.2504,2.9039 51.2894,4.4329 L47.4514,4.4329 C47.3974,3.9079 47.2274,3.5069 46.9464,3.2239 C46.6634,2.9409 46.3024,2.8009 45.8644,2.8009" id="Fill-15" fill="#FFFFFF"></path>
<polygon id="Fill-17" fill="#FFFFFF" points="63.8976 0.1798 63.8976 2.8618 58.6556 2.8618 58.6556 5.9798 63.2776 5.9798 63.2776 8.6598 58.6556 8.6598 58.6556 12.0228 63.8976 12.0228 63.8976 14.7078 55.1276 14.7078 55.1276 0.1798"></polygon>
<path d="M84.483,4.2667 L84.483,5.6727 L82.295,5.6727 L82.295,14.7057 L80.545,14.7057 L80.545,5.6727 L79.194,5.6727 L79.194,4.2667 L80.545,4.2667 L80.545,3.3927 C80.545,2.2497 80.85,1.4217 81.459,0.9007 C82.069,0.3817 83.025,0.1207 84.331,0.1207 L84.331,1.5287 C83.568,1.5287 83.04,1.6707 82.744,1.9577 C82.445,2.2427 82.295,2.7207 82.295,3.3927 L82.295,4.2667 L84.483,4.2667 Z" id="Fill-19" fill="#FFFFFF"></path>
<polygon id="Fill-21" fill="#FFFFFF" points="96.1105 0.1798 96.1105 2.8618 90.8705 2.8618 90.8705 5.9798 95.4925 5.9798 95.4925 8.6598 90.8705 8.6598 90.8705 12.0228 96.1105 12.0228 96.1105 14.7078 87.3405 14.7078 87.3405 0.1798"></polygon>
<path d="M99.9093,8.8673 L99.9093,0.2213 L103.4353,0.2213 L103.4353,8.8673 C103.4353,9.7333 103.6473,10.4023 104.0753,10.8683 C104.5013,11.3363 105.1293,11.5703 105.9523,11.5703 C106.7793,11.5703 107.4133,11.3363 107.8503,10.8683 C108.2923,10.4023 108.5113,9.7333 108.5113,8.8673 L108.5113,0.2213 L112.0413,0.2213 L112.0413,8.8673 C112.0413,10.1463 111.7423,11.2503 111.1413,12.1793 C110.5453,13.1083 109.7883,13.7853 108.8743,14.2133 C107.9593,14.6383 106.9643,14.8503 105.8923,14.8503 C104.2133,14.8503 102.7973,14.3273 101.6423,13.2843 C100.4863,12.2393 99.9093,10.7663 99.9093,8.8673" id="Fill-23" fill="#FFFFFF"></path>
<path d="M119.4069,2.9044 L119.4069,6.3904 L121.5949,6.3904 C122.1299,6.3904 122.5539,6.2324 122.8649,5.9174 C123.1729,5.5984 123.3309,5.1834 123.3309,4.6694 C123.3309,4.1524 123.1689,3.7284 122.8529,3.3994 C122.5369,3.0674 122.1179,2.9044 121.5949,2.9044 L119.4069,2.9044 Z M119.4069,9.0724 L119.4069,14.7084 L115.8789,14.7084 L115.8789,0.2224 L121.5949,0.2224 C123.2739,0.2224 124.5789,0.6554 125.5149,1.5214 C126.4509,2.3864 126.9169,3.4344 126.9169,4.6594 C126.9169,5.4984 126.6639,6.3164 126.1529,7.1124 C125.6459,7.9104 124.8129,8.4754 123.6569,8.8044 L127.2059,14.7084 L123.0809,14.7084 L119.8209,9.0724 L119.4069,9.0724 Z" id="Fill-25" fill="#FFFFFF"></path>
<path d="M139.8439,10.4562 C140.5399,9.6992 140.8869,8.6892 140.8869,7.4222 C140.8869,6.1562 140.5399,5.1472 139.8439,4.3912 C139.1499,3.6332 138.2209,3.2542 137.0609,3.2542 C135.8989,3.2542 134.9699,3.6332 134.2769,4.3912 C133.5799,5.1472 133.2329,6.1562 133.2329,7.4222 C133.2329,8.6892 133.5799,9.6992 134.2769,10.4562 C134.9699,11.2152 135.8989,11.5912 137.0609,11.5912 C138.2209,11.5912 139.1499,11.2152 139.8439,10.4562 M131.7999,12.7472 C130.3589,11.3432 129.6429,9.5682 129.6429,7.4222 C129.6429,5.2762 130.3589,3.5062 131.7999,2.1092 C133.2329,0.7132 134.9959,0.0152 137.0809,0.0152 C139.1629,0.0152 140.9189,0.7132 142.3419,2.1092 C143.7679,3.5062 144.4779,5.2762 144.4779,7.4222 C144.4779,9.5682 143.7619,11.3432 142.3319,12.7472 C140.9029,14.1492 139.1479,14.8522 137.0709,14.8522 C134.9939,14.8522 133.2329,14.1492 131.7999,12.7472" id="Fill-27" fill="#FFFFFF"></path>
<path d="M151.1017,6.3907 L153.2897,6.3907 C153.8247,6.3907 154.2477,6.2327 154.5577,5.9147 C154.8677,5.5987 155.0217,5.1837 155.0217,4.6687 C155.0217,4.1527 154.8637,3.7287 154.5477,3.3997 C154.2297,3.0697 153.8107,2.9037 153.2897,2.9037 L151.1017,2.9037 L151.1017,6.3907 Z M158.6117,4.6597 C158.6117,5.6357 158.2607,6.5767 157.5587,7.4847 C157.1877,7.9527 156.6347,8.3327 155.9007,8.6297 C155.1617,8.9257 154.2917,9.0727 153.2897,9.0727 L151.1017,9.0727 L151.1017,14.7077 L147.5717,14.7077 L147.5717,0.2227 L153.2897,0.2227 C154.9667,0.2227 156.2737,0.6557 157.2097,1.5217 C158.1417,2.3867 158.6117,3.4347 158.6117,4.6597 L158.6117,4.6597 Z" id="Fill-29" fill="#FFFFFF"></path>
<g id="Group-33" transform="translate(161.000000, 0.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-32"></g>
<polygon id="Fill-31" fill="#FFFFFF" mask="url(#mask-2)" points="9.3307 0.1798 9.3307 2.8618 4.0907 2.8618 4.0907 5.9798 8.7147 5.9798 8.7147 8.6598 4.0907 8.6598 4.0907 12.0228 9.3307 12.0228 9.3307 14.7078 0.5607 14.7078 0.5607 0.1798"></polygon>
</g>
<path d="M72.2067,5.2921 C69.9527,5.2921 68.1177,7.1271 68.1177,9.3791 C68.1177,11.6341 69.9527,13.4691 72.2067,13.4691 C74.4607,13.4691 76.2937,11.6341 76.2937,9.3791 C76.2937,7.1271 74.4607,5.2921 72.2067,5.2921 M72.2067,14.8961 C69.1667,14.8961 66.6917,12.4221 66.6917,9.3791 C66.6917,6.3411 69.1667,3.8661 72.2067,3.8661 C75.2477,3.8661 77.7217,6.3411 77.7217,9.3791 C77.7217,12.4221 75.2477,14.8961 72.2067,14.8961" id="Fill-34" fill="#FFFFFF"></path>
<path d="M14.2721,8.8673 L14.2721,0.2213 L17.8001,0.2213 L17.8001,8.8673 C17.8001,9.7333 18.0151,10.4023 18.4391,10.8683 C18.8671,11.3363 19.4951,11.5703 20.3171,11.5703 C21.1451,11.5703 21.7761,11.3363 22.2171,10.8683 C22.6561,10.4023 22.8741,9.7333 22.8741,8.8673 L22.8741,0.2213 L26.4041,0.2213 L26.4041,8.8673 C26.4041,10.1463 26.1051,11.2503 25.5071,12.1793 C24.9081,13.1083 24.1511,13.7853 23.2391,14.2133 C22.3241,14.6383 21.3301,14.8503 20.2551,14.8503 C18.5781,14.8503 17.1621,14.3273 16.0061,13.2843 C14.8501,12.2393 14.2721,10.7663 14.2721,8.8673" id="Fill-36" fill="#FFFFFF"></path>
<polygon id="Fill-38" fill="#FFFFFF" points="30.2433 0.2208 33.7713 0.2208 33.7713 12.0238 38.1663 12.0238 38.1663 14.7068 30.2433 14.7068"></polygon>
<g id="Group-42">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-41"></g>
<path d="M3.8732,6.3907 L6.0612,6.3907 C6.5972,6.3907 7.0202,6.2327 7.3312,5.9147 C7.6392,5.5987 7.7932,5.1837 7.7932,4.6687 C7.7932,4.1527 7.6372,3.7287 7.3192,3.3997 C7.0032,3.0697 6.5812,2.9037 6.0612,2.9037 L3.8732,2.9037 L3.8732,6.3907 Z M11.3852,4.6597 C11.3852,5.6357 11.0342,6.5767 10.3322,7.4847 C9.9612,7.9527 9.4062,8.3327 8.6722,8.6297 C7.9352,8.9257 7.0652,9.0727 6.0612,9.0727 L3.8732,9.0727 L3.8732,14.7077 L0.3452,14.7077 L0.3452,0.2227 L6.0612,0.2227 C7.7402,0.2227 9.0452,0.6557 9.9812,1.5217 C10.9152,2.3867 11.3852,3.4347 11.3852,4.6597 L11.3852,4.6597 Z" id="Fill-40" fill="#FFFFFF" mask="url(#mask-4)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9 KiB

View file

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="61px" height="34px" viewBox="0 0 61 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
<title>Group 58</title>
<desc>Created with Sketch.</desc>
<defs>
<path d="M13.378,8.245 C13.378,3.995 16.836,0.537 21.086,0.537 C25.336,0.537 28.793,3.995 28.793,8.245 C28.793,12.496 25.336,15.953 21.086,15.953 C16.836,15.953 13.378,12.496 13.378,8.245 Z M16.931,8.245 C16.931,10.536 18.795,12.399 21.086,12.399 C23.376,12.399 25.24,10.536 25.24,8.245 C25.24,5.954 23.376,4.091 21.086,4.091 C18.795,4.091 16.931,5.954 16.931,8.245 Z M49.722,4.999 C49.722,8.068 52.43,8.901 54.584,9.604 C55.99,10.052 57.142,10.457 57.142,11.396 C57.142,12.142 56.204,12.674 55.095,12.674 C53.858,12.674 52.537,12.184 51.172,11.566 C50.98,11.48 50.746,11.544 50.661,11.737 L49.487,13.911 C49.402,14.103 49.466,14.338 49.658,14.423 C51.471,15.36 53.154,15.873 55.224,15.873 C58.485,15.873 60.745,13.846 60.745,11.246 C60.745,8.517 58.465,7.493 56.395,6.769 C54.732,6.171 53.24,5.766 53.154,4.849 C53.134,4.039 53.965,3.762 54.861,3.762 C56.055,3.762 57.825,4.402 58.762,4.742 C58.976,4.828 59.189,4.742 59.274,4.551 L60.234,2.354 C60.319,2.141 60.234,1.928 60.042,1.822 C57.547,0.67 55.585,0.542 54.648,0.542 C51.79,0.542 49.722,2.205 49.722,4.999 Z M43.131,0.777 C42.919,0.777 42.748,0.948 42.748,1.16 L42.748,15.319 C42.748,15.531 42.919,15.702 43.131,15.702 L45.776,15.702 C45.989,15.702 46.16,15.531 46.16,15.319 L46.16,1.16 C46.16,0.948 45.989,0.777 45.776,0.777 L43.131,0.777 Z M32.162,0.777 C31.95,0.777 31.779,0.948 31.779,1.16 L31.779,15.319 C31.779,15.531 31.95,15.702 32.162,15.702 L39.461,15.702 C39.674,15.702 39.844,15.531 39.844,15.319 L39.844,12.91 C39.844,12.695 39.674,12.525 39.461,12.525 L35.211,12.525 L35.211,1.16 C35.211,0.948 35.041,0.777 34.828,0.777 L32.162,0.777 Z M0.73,0.777 L6.103,0.777 C10.24,0.777 11.498,3.676 11.498,5.702 C11.498,8.688 8.874,10.692 6.359,10.692 L3.779,10.692 L3.779,15.319 C3.779,15.531 3.609,15.702 3.395,15.702 L0.73,15.702 C0.517,15.702 0.346,15.531 0.346,15.319 L0.346,1.16 C0.346,0.948 0.517,0.777 0.73,0.777 Z M3.779,3.932 L3.779,7.493 L6.273,7.493 C7.745,7.45 8.086,6.256 8.086,5.702 C8.086,5.083 7.745,3.932 6.21,3.932 L3.779,3.932 Z M33.01,26.02 C33.01,21.77 36.467,18.311 40.717,18.311 C44.967,18.311 48.425,21.77 48.425,26.02 C48.425,30.27 44.967,33.727 40.717,33.727 C36.467,33.727 33.01,30.27 33.01,26.02 Z M36.563,26.02 C36.563,28.31 38.426,30.174 40.717,30.174 C43.008,30.174 44.872,28.31 44.872,26.02 C44.872,23.729 43.008,21.865 40.717,21.865 C38.426,21.865 36.563,23.729 36.563,26.02 Z M20.495,22.861 C20.495,21.202 21.459,18.311 25.605,18.311 C29.75,18.311 30.736,21.247 30.669,22.861 C30.646,23.645 30.265,25.169 28.92,25.997 C30.242,26.737 30.669,28.126 30.669,29.112 C30.669,30.748 29.75,33.727 25.605,33.727 C21.459,33.727 20.54,30.771 20.54,29.135 C20.54,28.103 21.19,26.513 22.199,25.976 C21.124,25.438 20.495,24.25 20.495,22.861 Z M23.834,22.861 C23.834,23.914 24.708,24.451 25.605,24.451 C26.501,24.451 27.352,23.914 27.352,22.861 C27.352,21.83 26.501,21.337 25.605,21.337 C24.708,21.337 23.834,21.83 23.834,22.861 Z M23.834,29.135 C23.834,30.188 24.708,30.703 25.605,30.703 C26.501,30.703 27.352,30.12 27.352,29.135 C27.352,28.081 26.501,27.544 25.605,27.544 C24.708,27.544 23.834,28.081 23.834,29.135 Z M14.582,18.557 C14.369,18.557 14.198,18.728 14.198,18.94 L14.198,33.099 C14.198,33.312 14.369,33.483 14.582,33.483 L17.227,33.483 C17.439,33.483 17.61,33.312 17.61,33.099 L17.61,18.94 C17.61,18.728 17.439,18.557 17.227,18.557 L14.582,18.557 Z" id="path-1"></path>
<path d="M21.0055,15.9525863 C16.7924206,15.9092633 13.378,12.4691285 13.378,8.245 C13.378,4.0218652 16.7924206,0.580749236 21.0055,0.53741385 L21.0055,4.0917678 C18.7514956,4.13479669 16.931,5.98089295 16.931,8.245 C16.931,10.5091071 18.7514956,12.3552033 21.0055,12.3982322 L21.0055,15.9525863 L21.0055,15.9525863 Z M21.0055,24.8463253 C20.6744631,24.2875171 20.495,23.6029327 20.495,22.861 C20.495,22.2459553 20.6274944,21.4615815 21.0055,20.7179634 L21.0055,24.8463253 Z M21.0055,27.3405719 C20.7079012,27.9418527 20.54,28.6104947 20.54,29.135 C20.54,29.7242498 20.6592196,30.48474 21.0055,31.2166749 L21.0055,27.3405719 L21.0055,27.3405719 Z M0.73,0.777 L6.103,0.777 C10.24,0.777 11.498,3.676 11.498,5.702 C11.498,8.688 8.874,10.692 6.359,10.692 L3.779,10.692 L3.779,15.319 C3.779,15.531 3.609,15.702 3.395,15.702 L0.73,15.702 C0.517,15.702 0.346,15.531 0.346,15.319 L0.346,1.16 C0.346,0.948 0.517,0.777 0.73,0.777 Z M3.779,3.932 L3.779,7.493 L6.273,7.493 C7.745,7.45 8.086,6.256 8.086,5.702 C8.086,5.083 7.745,3.932 6.21,3.932 L3.779,3.932 Z M14.582,18.557 C14.369,18.557 14.198,18.728 14.198,18.94 L14.198,33.099 C14.198,33.312 14.369,33.483 14.582,33.483 L17.227,33.483 C17.439,33.483 17.61,33.312 17.61,33.099 L17.61,18.94 C17.61,18.728 17.439,18.557 17.227,18.557 L14.582,18.557 Z" id="path-3"></path>
<path d="M28.7924874,0.1554 C28.7928288,0.185226831 28.793,0.215093807 28.793,0.245 C28.793,4.496 25.336,7.953 21.086,7.953 C16.836,7.953 13.378,4.496 13.378,0.245 C13.378,0.215093807 13.3781712,0.185226831 13.3785127,0.1554 L16.9319519,0.1554 C16.9313184,0.185191431 16.931,0.215059165 16.931,0.245 C16.931,2.536 18.795,4.399 21.086,4.399 C23.376,4.399 25.24,2.536 25.24,0.245 C25.24,0.215059165 25.2396816,0.185191431 25.2390481,0.1554 L28.7924874,0.1554 L28.7924874,0.1554 Z M51.2993669,0.1554 C51.6484986,0.41217462 52.0358984,0.627330606 52.4405,0.814468753 L52.4405,0.1554 L51.2993669,0.1554 L51.2993669,0.1554 Z M52.4405,4.09792931 C52.0228032,3.94059478 51.5995601,3.75957666 51.172,3.566 C50.98,3.48 50.746,3.544 50.661,3.737 L49.487,5.911 C49.402,6.103 49.466,6.338 49.658,6.423 C50.5964307,6.90800254 51.5000316,7.27940603 52.4405,7.52486797 L52.4405,4.09792931 L52.4405,4.09792931 Z M42.748,0.1554 L42.748,7.319 C42.748,7.531 42.919,7.702 43.131,7.702 L45.776,7.702 C45.989,7.702 46.16,7.531 46.16,7.319 L46.16,0.1554 L42.748,0.1554 L42.748,0.1554 Z M31.779,0.1554 L31.779,7.319 C31.779,7.531 31.95,7.702 32.162,7.702 L39.461,7.702 C39.674,7.702 39.844,7.531 39.844,7.319 L39.844,4.91 C39.844,4.695 39.674,4.525 39.461,4.525 L35.211,4.525 L35.211,0.1554 L31.779,0.1554 L31.779,0.1554 Z M0.346,0.1554 L0.346,7.319 C0.346,7.531 0.517,7.702 0.73,7.702 L3.395,7.702 C3.609,7.702 3.779,7.531 3.779,7.319 L3.779,2.692 L6.359,2.692 C8.09803399,2.692 9.88918344,1.73384035 10.8289032,0.1554 L0.346,0.1554 L0.346,0.1554 Z M33.01,18.02 C33.01,13.77 36.467,10.311 40.717,10.311 C44.967,10.311 48.425,13.77 48.425,18.02 C48.425,22.27 44.967,25.727 40.717,25.727 C36.467,25.727 33.01,22.27 33.01,18.02 Z M36.563,18.02 C36.563,20.31 38.426,22.174 40.717,22.174 C43.008,22.174 44.872,20.31 44.872,18.02 C44.872,15.729 43.008,13.865 40.717,13.865 C38.426,13.865 36.563,15.729 36.563,18.02 Z M20.495,14.861 C20.495,13.202 21.459,10.311 25.605,10.311 C29.75,10.311 30.736,13.247 30.669,14.861 C30.646,15.645 30.265,17.169 28.92,17.997 C30.242,18.737 30.669,20.126 30.669,21.112 C30.669,22.748 29.75,25.727 25.605,25.727 C21.459,25.727 20.54,22.771 20.54,21.135 C20.54,20.103 21.19,18.513 22.199,17.976 C21.124,17.438 20.495,16.25 20.495,14.861 Z M23.834,14.861 C23.834,15.914 24.708,16.451 25.605,16.451 C26.501,16.451 27.352,15.914 27.352,14.861 C27.352,13.83 26.501,13.337 25.605,13.337 C24.708,13.337 23.834,13.83 23.834,14.861 Z M23.834,21.135 C23.834,22.188 24.708,22.703 25.605,22.703 C26.501,22.703 27.352,22.12 27.352,21.135 C27.352,20.081 26.501,19.544 25.605,19.544 C24.708,19.544 23.834,20.081 23.834,21.135 Z M14.582,10.557 C14.369,10.557 14.198,10.728 14.198,10.94 L14.198,25.099 C14.198,25.312 14.369,25.483 14.582,25.483 L17.227,25.483 C17.439,25.483 17.61,25.312 17.61,25.099 L17.61,10.94 C17.61,10.728 17.439,10.557 17.227,10.557 L14.582,10.557 Z" id="path-5"></path>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard-Copy" transform="translate(-622.000000, -85.000000)">
<g id="Group-58" transform="translate(622.000000, 85.000000)">
<g id="Group-51">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-50"></g>
<path d="M21.0055,8.1554 L-10.4285,-20.1486 C5.2025,-37.5086 31.9485,-38.9096 49.3095,-23.2796 C66.6705,-7.6476 68.0715,19.0984 52.4405,36.4594 L21.0055,8.1554 Z" id="Fill-49" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
<g id="Group-54">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<g id="Clip-53"></g>
<path d="M21.0055,8.1554 L-7.2985,39.5904 C-24.6585,23.9584 -26.0605,-2.7866 -10.4285,-20.1486 L21.0055,8.1554 Z" id="Fill-52" fill="#FFFFFF" mask="url(#mask-4)"></path>
</g>
<g id="Group-57" transform="translate(0.000000, 8.000000)">
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<g id="Clip-56"></g>
<path d="M21.0055,0.1554 L52.4405,28.4594 C36.8085,45.8194 10.0625,47.2214 -7.2985,31.5904 L21.0055,0.1554 Z" id="Fill-55" fill="#FFFFFF" mask="url(#mask-6)"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

@ -187,7 +187,7 @@
width: auto;
font-size: $font-size-small;
opacity: 0;
transition: opacity 150ms $easeInOutQuint;
transition: opacity 150ms $easeOutBack;
@media (max-width: $breakpoint) {
left: 50%;

View file

@ -102,14 +102,10 @@
border-radius: 100%;
width: $language-btn-size;
height: $language-btn-size;
transform: scale(1);
transition:
transform 150ms $easeInOutQuint,
background 150ms $easeInOutQuint;
transition: background 150ms $easeOutBack;
&:hover {
background: rgba(0, 0, 0, 0.15);
transform: scale(1.2);
}
&:focus {

View file

@ -22,7 +22,7 @@
progress[value] {
appearance: none;
width: 100%;
height: 20px;
height: 60px;
background: $dark-blue;
color: $yellow;
border: none;
@ -34,9 +34,9 @@
}
&::-webkit-progress-value {
background: linear-gradient(90deg, $yellow, $orange);
background: $button-background-primary;
border-radius: $border-radius;
box-shadow: 0 5px 34px transparentize($yellow, 0.6);
box-shadow: $button-shadow;
}
}
</style>

View file

@ -783,162 +783,5 @@
"statement": ""
}
]
},
{
"name": "Alternative für Deutschland",
"token": "AfD",
"id": 5,
"positions": [
{
"thesis": 0,
"position": "positive",
"statement": ""
},
{
"thesis": 1,
"position": "neutral",
"statement": ""
},
{
"thesis": 2,
"position": "neutral",
"statement": ""
},
{
"thesis": 3,
"position": "neutral",
"statement": ""
},
{
"thesis": 4,
"position": "negative",
"statement": ""
},
{
"thesis": 5,
"position": "neutral",
"statement": ""
},
{
"thesis": 6,
"position": "positive",
"statement": ""
},
{
"thesis": 7,
"position": "negative",
"statement": ""
},
{
"thesis": 8,
"position": "negative",
"statement": ""
},
{
"thesis": 9,
"position": "neutral",
"statement": ""
},
{
"thesis": 10,
"position": "neutral",
"statement": ""
},
{
"thesis": 11,
"position": "neutral",
"statement": ""
},
{
"thesis": 12,
"position": "positive",
"statement": ""
},
{
"thesis": 13,
"position": "neutral",
"statement": ""
},
{
"thesis": 14,
"position": "positive",
"statement": ""
},
{
"thesis": 15,
"position": "neutral",
"statement": ""
},
{
"thesis": 16,
"position": "neutral",
"statement": ""
},
{
"thesis": 17,
"position": "negative",
"statement": ""
},
{
"thesis": 18,
"position": "negative",
"statement": ""
},
{
"thesis": 19,
"position": "negative",
"statement": ""
},
{
"thesis": 20,
"position": "positive",
"statement": ""
},
{
"thesis": 21,
"position": "positive",
"statement": ""
},
{
"thesis": 22,
"position": "neutral",
"statement": ""
},
{
"thesis": 23,
"position": "neutral",
"statement": ""
},
{
"thesis": 24,
"position": "positive",
"statement": ""
},
{
"thesis": 25,
"position": "neutral",
"statement": ""
},
{
"thesis": 26,
"position": "positive",
"statement": ""
},
{
"thesis": 27,
"position": "neutral",
"statement": ""
},
{
"thesis": 28,
"position": "positive",
"statement": ""
},
{
"thesis": 29,
"position": "positive",
"statement": ""
}
]
}
]

View file

@ -1 +1,2 @@
$easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
$easeOutBack: cubic-bezier(0.86, 0, 0.07, 1);
$easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);

View file

@ -22,8 +22,8 @@ button,
box-shadow: $button-shadow;
transform: translateY(0);
transition:
transform 150ms $easeInOutQuint,
box-shadow 150ms $easeInOutQuint;
transform 150ms $easeOutBack,
box-shadow 150ms $easeOutBack;
&:hover {
transform: translateY(-3px);
@ -76,7 +76,7 @@ button,
color: $button-color;
box-shadow: none;
text-shadow: none;
transition: background 150ms $easeInOutQuint;
transition: background 150ms $easeOutBack;
&:hover {
transform: translateY(0);