Lint some more code
This commit is contained in:
parent
6bc6f5fa33
commit
c4195916a7
|
|
@ -9,7 +9,7 @@
|
||||||
"analyze": "webpack --profile --json --config build/webpack.dev.conf.js > dist/stats.json && webpack-bundle-analyzer dist/stats.json",
|
"analyze": "webpack --profile --json --config build/webpack.dev.conf.js > dist/stats.json && webpack-bundle-analyzer dist/stats.json",
|
||||||
"start": ". ../server/.env && npm run dev",
|
"start": ". ../server/.env && npm run dev",
|
||||||
"lint": "eslint --ext .js,.vue,.ts src",
|
"lint": "eslint --ext .js,.vue,.ts src",
|
||||||
"fix-lint": "eslint --ext .js,.vue --fix src",
|
"fix-lint": "eslint --ext .js,.vue,.ts --fix src",
|
||||||
"build": "node build/build.js",
|
"build": "node build/build.js",
|
||||||
"open:cypress:e2e": "npm run cypress:e2e:open",
|
"open:cypress:e2e": "npm run cypress:e2e:open",
|
||||||
"open:cypress:frontend": "npm run cypress:frontend:open",
|
"open:cypress:frontend": "npm run cypress:frontend:open",
|
||||||
|
|
|
||||||
|
|
@ -2,16 +2,19 @@
|
||||||
<div
|
<div
|
||||||
:class="{'no-scroll': showModal || showMobileNavigation}"
|
:class="{'no-scroll': showModal || showMobileNavigation}"
|
||||||
class="app"
|
class="app"
|
||||||
id="app">
|
id="app"
|
||||||
<read-only-banner/>
|
>
|
||||||
<scroll-up/>
|
<read-only-banner />
|
||||||
|
<scroll-up />
|
||||||
<component
|
<component
|
||||||
:is="showModalDeprecated"
|
:is="showModalDeprecated"
|
||||||
v-if="showModalDeprecated"/>
|
v-if="showModalDeprecated"
|
||||||
|
/>
|
||||||
<component
|
<component
|
||||||
:is="showModal"
|
:is="showModal"
|
||||||
v-if="showModal"/>
|
v-if="showModal"
|
||||||
<component :is="layout"/>
|
/>
|
||||||
|
<component :is="layout" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,9 @@
|
||||||
<div class="add-content">
|
<div class="add-content">
|
||||||
<a
|
<a
|
||||||
class="add-content__button"
|
class="add-content__button"
|
||||||
@click="addContent">
|
@click="addContent"
|
||||||
<add-pointer class="add-content__icon"/>
|
>
|
||||||
|
<add-pointer class="add-content__icon" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="add-content-element"
|
class="add-content-element"
|
||||||
@click="$emit('add-element', index)">
|
@click="$emit('add-element', index)"
|
||||||
<add-icon class="add-content-element__icon"/>
|
>
|
||||||
|
<add-icon class="add-content-element__icon" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<component
|
<component
|
||||||
:is="component"
|
|
||||||
v-bind="properties"
|
v-bind="properties"
|
||||||
:class="{ 'add-widget--reverse': reverse }"
|
:class="{ 'add-widget--reverse': reverse }"
|
||||||
class="add-widget"
|
class="add-widget"
|
||||||
@click="$emit('click')">
|
:is="component"
|
||||||
<add-icon class="add-widget__add"/>
|
@click="$emit('click')"
|
||||||
|
>
|
||||||
|
<add-icon class="add-widget__add" />
|
||||||
</component>
|
</component>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,46 +1,63 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="assignment-with-submissions">
|
<div class="assignment-with-submissions">
|
||||||
<p class="assignment-with-submissions__text">{{ assignment.assignment }}</p>
|
<p class="assignment-with-submissions__text">
|
||||||
|
{{ assignment.assignment }}
|
||||||
|
</p>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
class="button button--primary submissions-page__back"
|
class="button button--primary submissions-page__back"
|
||||||
@click="$emit('back')">Aufgabe im Modul anzeigen</a>
|
@click="$emit('back')"
|
||||||
|
>Aufgabe im Modul anzeigen</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="assignment-with-submissions__solution"
|
class="assignment-with-submissions__solution"
|
||||||
v-if="assignment.solution">
|
v-if="assignment.solution"
|
||||||
<h4 class="assignment-with-submissions__heading">Lösung</h4>
|
>
|
||||||
|
<h4 class="assignment-with-submissions__heading">
|
||||||
|
Lösung
|
||||||
|
</h4>
|
||||||
<p
|
<p
|
||||||
class="assignment-with-submissions__solution-text"
|
class="assignment-with-submissions__solution-text"
|
||||||
data-cy="assignment-solution"
|
data-cy="assignment-solution"
|
||||||
v-html="assignment.solution" />
|
v-html="assignment.solution"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<p
|
<p
|
||||||
class="assignment-with-submissions__no-submissions"
|
class="assignment-with-submissions__no-submissions"
|
||||||
v-if="!assignment.submissions.length">Zu diesem Auftrag sind noch keine Ergebnisse vorhanden.</p>
|
v-if="!assignment.submissions.length"
|
||||||
|
>
|
||||||
|
Zu diesem Auftrag sind noch keine Ergebnisse vorhanden.
|
||||||
|
</p>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="assignment-with-submissions__submissions submissions"
|
class="assignment-with-submissions__submissions submissions"
|
||||||
v-if="assignment.submissions.length">
|
v-if="assignment.submissions.length"
|
||||||
|
>
|
||||||
<div class="submissions__header student-submission-row submission-header">
|
<div class="submissions__header student-submission-row submission-header">
|
||||||
<p class="submission-header__title">Lernende</p>
|
<p class="submission-header__title">
|
||||||
<p class="submission-header__title">Ergebnisse</p>
|
Lernende
|
||||||
<p class="submission-header__title">Feedback</p>
|
</p>
|
||||||
|
<p class="submission-header__title">
|
||||||
|
Ergebnisse
|
||||||
|
</p>
|
||||||
|
<p class="submission-header__title">
|
||||||
|
Feedback
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<router-link
|
<router-link
|
||||||
:to="submissionLink(submission)"
|
:to="submissionLink(submission)"
|
||||||
:key="submission.id"
|
|
||||||
class="assignment-with-submissions__link"
|
class="assignment-with-submissions__link"
|
||||||
v-for="submission in submissions">
|
v-for="submission in submissions"
|
||||||
|
:key="submission.id"
|
||||||
|
>
|
||||||
<student-submission
|
<student-submission
|
||||||
:submission="submission"
|
:submission="submission"
|
||||||
class="assignment-with-submissions__submission"
|
class="assignment-with-submissions__submission"
|
||||||
/>
|
/>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<router-link
|
<router-link
|
||||||
:to="to"
|
:to="to"
|
||||||
class="sub-navigation-item back-link">
|
class="sub-navigation-item back-link"
|
||||||
<chevron-left class="back-link__icon sub-navigation-item__icon"/>
|
>
|
||||||
|
<chevron-left class="back-link__icon sub-navigation-item__icon" />
|
||||||
{{ fullTitle }}
|
{{ fullTitle }}
|
||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,18 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:data-scrollto="chapter.id"
|
:data-scrollto="chapter.id"
|
||||||
class="chapter">
|
class="chapter"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
:class="{'hideable-element--greyed-out': titleGreyedOut}"
|
:class="{'hideable-element--greyed-out': titleGreyedOut}"
|
||||||
class="hideable-element"
|
class="hideable-element"
|
||||||
v-if="!titleHidden">
|
v-if="!titleHidden"
|
||||||
|
>
|
||||||
<h3
|
<h3
|
||||||
:id="'chapter-' + index"
|
:id="'chapter-' + index"
|
||||||
>{{ chapter.title }}</h3>
|
>
|
||||||
|
{{ chapter.title }}
|
||||||
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<visibility-action
|
<visibility-action
|
||||||
|
|
@ -37,20 +41,23 @@
|
||||||
v-if="editModule"
|
v-if="editModule"
|
||||||
/>
|
/>
|
||||||
<p
|
<p
|
||||||
class="chapter__description">
|
class="chapter__description"
|
||||||
|
>
|
||||||
{{ chapter.description }}
|
{{ chapter.description }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<add-content-button
|
<add-content-button
|
||||||
:parent="chapter"
|
:parent="chapter"
|
||||||
v-if="editModule"/>
|
v-if="editModule"
|
||||||
|
/>
|
||||||
|
|
||||||
<content-block
|
<content-block
|
||||||
:content-block="contentBlock"
|
:content-block="contentBlock"
|
||||||
:parent="chapter.id"
|
:parent="chapter.id"
|
||||||
|
v-for="contentBlock in filteredContentBlocks"
|
||||||
:key="contentBlock.id"
|
:key="contentBlock.id"
|
||||||
v-for="contentBlock in filteredContentBlocks"/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,21 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="color-chooser">
|
<div class="color-chooser">
|
||||||
<div
|
<div
|
||||||
:key="index"
|
|
||||||
:class="{'color-chooser__color-wrapper--selected': selectedColor === color.name}"
|
:class="{'color-chooser__color-wrapper--selected': selectedColor === color.name}"
|
||||||
class="color-chooser__color-wrapper"
|
class="color-chooser__color-wrapper"
|
||||||
data-cy="color-select"
|
data-cy="color-select"
|
||||||
v-for="(color, index) in colors"
|
v-for="(color, index) in colors"
|
||||||
@click="$emit('input', color.name)">
|
:key="index"
|
||||||
|
@click="$emit('input', color.name)"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
:class="'color-chooser__color--' + color.name"
|
:class="'color-chooser__color--' + color.name"
|
||||||
class="color-chooser__color">
|
class="color-chooser__color"
|
||||||
|
>
|
||||||
<tick
|
<tick
|
||||||
class="color-chooser__selected-icon"
|
class="color-chooser__selected-icon"
|
||||||
v-if="selectedColor === color.name"/>
|
v-if="selectedColor === color.name"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,63 +1,73 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="{'hideable-element--greyed-out': hidden}"
|
:class="{'hideable-element--greyed-out': hidden}"
|
||||||
class="content-block__container hideable-element content-list__parent">
|
class="content-block__container hideable-element content-list__parent"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
:class="specialClass"
|
:class="specialClass"
|
||||||
class="content-block">
|
class="content-block"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="block-actions"
|
class="block-actions"
|
||||||
v-if="canEditContentBlock && editModule">
|
v-if="canEditContentBlock && editModule"
|
||||||
|
>
|
||||||
<user-widget
|
<user-widget
|
||||||
v-bind="me"
|
v-bind="me"
|
||||||
class="block-actions__user-widget content-block__user-widget"/>
|
class="block-actions__user-widget content-block__user-widget"
|
||||||
|
/>
|
||||||
<more-options-widget>
|
<more-options-widget>
|
||||||
<li class="popover-links__link">
|
<li class="popover-links__link">
|
||||||
<popover-link
|
<popover-link
|
||||||
data-cy="delete-content-block-link"
|
data-cy="delete-content-block-link"
|
||||||
text="Löschen"
|
text="Löschen"
|
||||||
@link-action="deleteContentBlock(contentBlock)" />
|
@link-action="deleteContentBlock(contentBlock)"
|
||||||
|
/>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="popover-links__link">
|
<li class="popover-links__link">
|
||||||
<popover-link
|
<popover-link
|
||||||
text="Bearbeiten"
|
text="Bearbeiten"
|
||||||
@link-action="editContentBlock(contentBlock)" />
|
@link-action="editContentBlock(contentBlock)"
|
||||||
|
/>
|
||||||
</li>
|
</li>
|
||||||
</more-options-widget>
|
</more-options-widget>
|
||||||
</div>
|
</div>
|
||||||
<div class="content-block__visibility">
|
<div class="content-block__visibility">
|
||||||
<visibility-action
|
<visibility-action
|
||||||
:block="contentBlock"
|
:block="contentBlock"
|
||||||
v-if="canEditModule"/>
|
v-if="canEditModule"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3
|
<h3
|
||||||
class="content-block__instrument-label"
|
class="content-block__instrument-label"
|
||||||
v-if="instrumentLabel !== ''">{{ instrumentLabel }}</h3>
|
v-if="instrumentLabel !== ''"
|
||||||
|
>
|
||||||
|
{{ instrumentLabel }}
|
||||||
|
</h3>
|
||||||
<h4
|
<h4
|
||||||
class="content-block__title"
|
class="content-block__title"
|
||||||
v-if="!contentBlock.indent">{{ contentBlock.title }}</h4>
|
v-if="!contentBlock.indent"
|
||||||
|
>
|
||||||
|
{{ contentBlock.title }}
|
||||||
|
</h4>
|
||||||
|
|
||||||
<content-component
|
<content-component
|
||||||
:key="component.id"
|
|
||||||
:component="component"
|
:component="component"
|
||||||
:root="root"
|
:root="root"
|
||||||
:parent="contentBlock"
|
:parent="contentBlock"
|
||||||
:bookmarks="contentBlock.bookmarks"
|
:bookmarks="contentBlock.bookmarks"
|
||||||
:notes="contentBlock.notes"
|
:notes="contentBlock.notes"
|
||||||
v-for="component in contentBlocksWithContentLists.contents"
|
v-for="component in contentBlocksWithContentLists.contents"
|
||||||
|
:key="component.id"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<add-content-button
|
<add-content-button
|
||||||
:after="contentBlock"
|
:after="contentBlock"
|
||||||
v-if="canEditModule"/>
|
v-if="canEditModule"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,13 @@
|
||||||
<modal
|
<modal
|
||||||
:hide-header="true"
|
:hide-header="true"
|
||||||
:fullscreen="true"
|
:fullscreen="true"
|
||||||
class="fullscreen-image">
|
class="fullscreen-image"
|
||||||
|
>
|
||||||
<img
|
<img
|
||||||
:src="imageUrl"
|
:src="imageUrl"
|
||||||
class="fullscreen-image__image">
|
class="fullscreen-image__image"
|
||||||
|
>
|
||||||
</modal>
|
</modal>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<modal :fullscreen="true">
|
<modal :fullscreen="true">
|
||||||
<component
|
<component
|
||||||
|
:value="value"
|
||||||
:is="type"
|
:is="type"
|
||||||
:value="value"/>
|
/>
|
||||||
</modal>
|
</modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
<modal
|
<modal
|
||||||
:hide-header="true"
|
:hide-header="true"
|
||||||
:fullscreen="true"
|
:fullscreen="true"
|
||||||
class="fullscreen-video">
|
class="fullscreen-video"
|
||||||
|
>
|
||||||
<iframe
|
<iframe
|
||||||
:src="src"
|
:src="src"
|
||||||
width="2000"
|
width="2000"
|
||||||
|
|
@ -11,9 +12,9 @@
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
webkitallowfullscreen
|
webkitallowfullscreen
|
||||||
mozallowfullscreen
|
mozallowfullscreen
|
||||||
allowfullscreen/>
|
allowfullscreen
|
||||||
|
/>
|
||||||
</modal>
|
</modal>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -3,22 +3,26 @@
|
||||||
<a
|
<a
|
||||||
class="header-bar__sidebar-link"
|
class="header-bar__sidebar-link"
|
||||||
data-cy="open-sidebar-link"
|
data-cy="open-sidebar-link"
|
||||||
@click.stop="openSidebar('navigation')">
|
@click.stop="openSidebar('navigation')"
|
||||||
<hamburger class="header-bar__sidebar-icon"/>
|
>
|
||||||
|
<hamburger class="header-bar__sidebar-icon" />
|
||||||
</a>
|
</a>
|
||||||
<content-navigation class="header-bar__content-navigation"/>
|
<content-navigation class="header-bar__content-navigation" />
|
||||||
<div class="user-header">
|
<div class="user-header">
|
||||||
<a
|
<a
|
||||||
class="user-header__sidebar-link" >
|
class="user-header__sidebar-link"
|
||||||
|
>
|
||||||
<current-class
|
<current-class
|
||||||
class="user-header__current-class"
|
class="user-header__current-class"
|
||||||
@click.native.stop="openSidebar('profile')"/>
|
@click.native.stop="openSidebar('profile')"
|
||||||
|
/>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<user-widget
|
<user-widget
|
||||||
v-bind="me"
|
v-bind="me"
|
||||||
data-cy="header-user-widget"
|
data-cy="header-user-widget"
|
||||||
@click.native.stop="openSidebar('profile')"/>
|
@click.native.stop="openSidebar('profile')"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="helpful-tooltip">
|
<div class="helpful-tooltip">
|
||||||
<info-icon class="helpful-tooltip__icon"/>
|
<info-icon class="helpful-tooltip__icon" />
|
||||||
<div class="helpful-tooltip__tooltip">
|
<div class="helpful-tooltip__tooltip">
|
||||||
<div class="helpful-tooltip__text">
|
<div class="helpful-tooltip__text">
|
||||||
{{ text }}
|
{{ text }}
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,15 @@
|
||||||
<template>
|
<template>
|
||||||
<button
|
<button
|
||||||
:disabled="loading || disabled"
|
:disabled="loading || disabled"
|
||||||
class="loading-button button button--primary button--big">
|
class="loading-button button button--primary button--big"
|
||||||
<template v-if="!loading">{{ label }}</template>
|
>
|
||||||
|
<template v-if="!loading">
|
||||||
|
{{ label }}
|
||||||
|
</template>
|
||||||
<loading-icon
|
<loading-icon
|
||||||
class="loading-button__icon"
|
class="loading-button__icon"
|
||||||
v-else/>
|
v-else
|
||||||
|
/>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,8 @@
|
||||||
<a
|
<a
|
||||||
class="logout-widget__logout"
|
class="logout-widget__logout"
|
||||||
data-cy="logout"
|
data-cy="logout"
|
||||||
@click="logout()">Abmelden</a>
|
@click="logout()"
|
||||||
|
>Abmelden</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="mobile-header">
|
<div class="mobile-header">
|
||||||
<a @click="showMobileNavigation">
|
<a @click="showMobileNavigation">
|
||||||
<hamburger class="mobile-header__hamburger"/>
|
<hamburger class="mobile-header__hamburger" />
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<router-link
|
<router-link
|
||||||
to="/"
|
to="/"
|
||||||
data-cy="mobile-home-link">
|
data-cy="mobile-home-link"
|
||||||
<logo/>
|
>
|
||||||
|
<logo />
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<user-widget
|
<user-widget
|
||||||
v-bind="me"
|
v-bind="me"
|
||||||
@click.native.stop="openSidebar('profile')"/>
|
@click.native.stop="openSidebar('profile')"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,16 +2,18 @@
|
||||||
<div class="modal__backdrop">
|
<div class="modal__backdrop">
|
||||||
<div
|
<div
|
||||||
:class="{'modal--hide-header': hideHeader || fullscreen, 'modal--fullscreen': fullscreen, 'modal--small': small}"
|
:class="{'modal--hide-header': hideHeader || fullscreen, 'modal--fullscreen': fullscreen, 'modal--small': small}"
|
||||||
class="modal">
|
class="modal"
|
||||||
|
>
|
||||||
<div class="modal__header">
|
<div class="modal__header">
|
||||||
<slot name="header"/>
|
<slot name="header" />
|
||||||
</div>
|
</div>
|
||||||
<div class="modal__body">
|
<div class="modal__body">
|
||||||
<slot/>
|
<slot />
|
||||||
<div
|
<div
|
||||||
class="modal__close-button"
|
class="modal__close-button"
|
||||||
@click="hideModal">
|
@click="hideModal"
|
||||||
<cross class="modal__close-icon"/>
|
>
|
||||||
|
<cross class="modal__close-icon" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal__footer">
|
<div class="modal__footer">
|
||||||
|
|
@ -19,7 +21,8 @@
|
||||||
<!--<a class="button button--active">Speichern</a>-->
|
<!--<a class="button button--active">Speichern</a>-->
|
||||||
<a
|
<a
|
||||||
class="button"
|
class="button"
|
||||||
@click="hideModal">Abbrechen</a>
|
@click="hideModal"
|
||||||
|
>Abbrechen</a>
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -5,10 +5,12 @@
|
||||||
:class="{'skillbox-input--error': error}"
|
:class="{'skillbox-input--error': error}"
|
||||||
:value="value"
|
:value="value"
|
||||||
class="modal-input__inputfield skillbox-input"
|
class="modal-input__inputfield skillbox-input"
|
||||||
@input="$emit('input', $event.target.value)">
|
@input="$emit('input', $event.target.value)"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="modal-input__error"
|
class="modal-input__error"
|
||||||
v-if="error">
|
v-if="error"
|
||||||
|
>
|
||||||
Für Inhaltsblöcke muss zwingend ein Titel erfasst werden.
|
Für Inhaltsblöcke muss zwingend ein Titel erfasst werden.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,16 @@
|
||||||
<a
|
<a
|
||||||
class="more-options__more-link"
|
class="more-options__more-link"
|
||||||
data-cy="more-options-link"
|
data-cy="more-options-link"
|
||||||
@click.stop="showMenu = !showMenu">
|
@click.stop="showMenu = !showMenu"
|
||||||
<ellipses class="more-options__ellipses"/>
|
>
|
||||||
|
<ellipses class="more-options__ellipses" />
|
||||||
</a>
|
</a>
|
||||||
<widget-popover
|
<widget-popover
|
||||||
class="more-options__popover"
|
class="more-options__popover"
|
||||||
v-if="showMenu"
|
v-if="showMenu"
|
||||||
@hide-me="showMenu = false">
|
@hide-me="showMenu = false"
|
||||||
<slot/>
|
>
|
||||||
|
<slot />
|
||||||
</widget-popover>
|
</widget-popover>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
<div
|
<div
|
||||||
class="read-only-banner"
|
class="read-only-banner"
|
||||||
data-cy="read-only-banner"
|
data-cy="read-only-banner"
|
||||||
v-if="me.readOnly || me.selectedClass.readOnly">
|
v-if="me.readOnly || me.selectedClass.readOnly"
|
||||||
|
>
|
||||||
<div class="read-only-banner__content">
|
<div class="read-only-banner__content">
|
||||||
<p class="read-only-banner__text">
|
<p class="read-only-banner__text">
|
||||||
{{ readOnlyText }} Sie können Inhalte lesen, aber nicht
|
{{ readOnlyText }} Sie können Inhalte lesen, aber nicht
|
||||||
|
|
@ -13,14 +14,16 @@
|
||||||
:to="licenseActivationLink"
|
:to="licenseActivationLink"
|
||||||
data-cy="license-activation-link"
|
data-cy="license-activation-link"
|
||||||
class="read-only-banner__link button button--primary"
|
class="read-only-banner__link button button--primary"
|
||||||
v-if="me.readOnly">Neuen Lizenzcode eingeben
|
v-if="me.readOnly"
|
||||||
|
>
|
||||||
|
Neuen Lizenzcode eingeben
|
||||||
</router-link>
|
</router-link>
|
||||||
<a
|
<a
|
||||||
target="_blank"
|
target="_blank"
|
||||||
href="https://myskillbox.ch/lesemodus"
|
href="https://myskillbox.ch/lesemodus"
|
||||||
class="button button--secondary">Mehr Informationen zum Lesemodus</a>
|
class="button button--secondary"
|
||||||
|
>Mehr Informationen zum Lesemodus</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,9 @@
|
||||||
<a
|
<a
|
||||||
class="scroll-up"
|
class="scroll-up"
|
||||||
v-if="scroll>200"
|
v-if="scroll>200"
|
||||||
@click="scrollTop">
|
@click="scrollTop"
|
||||||
<arrow-up class="scroll-up__icon"/>
|
>
|
||||||
|
<arrow-up class="scroll-up__icon" />
|
||||||
</a>
|
</a>
|
||||||
</transition>
|
</transition>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -3,16 +3,22 @@
|
||||||
<div
|
<div
|
||||||
:class="{'section-block--navigatable': route}"
|
:class="{'section-block--navigatable': route}"
|
||||||
class="section-block__illustration"
|
class="section-block__illustration"
|
||||||
@click="navigate()">
|
@click="navigate()"
|
||||||
<slot/>
|
>
|
||||||
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
:class="{'section-block--navigatable': route}"
|
:class="{'section-block--navigatable': route}"
|
||||||
class="section-block__title block-title"
|
class="section-block__title block-title"
|
||||||
@click="navigate()">
|
@click="navigate()"
|
||||||
<h2 class="block-title__title">{{ title }}</h2>
|
>
|
||||||
<h3 class="block-title__subtitle small-emph">{{ subtitle }}</h3>
|
<h2 class="block-title__title">
|
||||||
|
{{ title }}
|
||||||
|
</h2>
|
||||||
|
<h3 class="block-title__subtitle small-emph">
|
||||||
|
{{ subtitle }}
|
||||||
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="section-block__content section-content">
|
<div class="section-block__content section-content">
|
||||||
<div class="section-content__subsection subsection">
|
<div class="section-content__subsection subsection">
|
||||||
|
|
@ -20,12 +26,14 @@
|
||||||
:class="{'section-block--navigatable': route}"
|
:class="{'section-block--navigatable': route}"
|
||||||
class="subsection__content button button--primary"
|
class="subsection__content button button--primary"
|
||||||
v-if="route"
|
v-if="route"
|
||||||
@click="navigate()">
|
@click="navigate()"
|
||||||
|
>
|
||||||
{{ linkText }}
|
{{ linkText }}
|
||||||
</a>
|
</a>
|
||||||
<span
|
<span
|
||||||
class="subsection__content subsection__content--disabled"
|
class="subsection__content subsection__content--disabled"
|
||||||
v-if="!route">Noch nicht verfügbar</span>
|
v-if="!route"
|
||||||
|
>Noch nicht verfügbar</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -7,18 +7,24 @@
|
||||||
<p>{{ submission.text | trimToLength(50) }}</p>
|
<p>{{ submission.text | trimToLength(50) }}</p>
|
||||||
<p
|
<p
|
||||||
class="entry__document"
|
class="entry__document"
|
||||||
v-if="submission.document && submission.document.length > 0">
|
v-if="submission.document && submission.document.length > 0"
|
||||||
|
>
|
||||||
<student-submission-document
|
<student-submission-document
|
||||||
:document="submission.document"
|
:document="submission.document"
|
||||||
class="entry-document"/>
|
class="entry-document"
|
||||||
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="student-submission__feedback entry"
|
class="student-submission__feedback entry"
|
||||||
v-if="submission.submissionFeedback">
|
v-if="submission.submissionFeedback"
|
||||||
|
>
|
||||||
<p
|
<p
|
||||||
:class="{'entry__text--final': submission.submissionFeedback.final}"
|
:class="{'entry__text--final': submission.submissionFeedback.final}"
|
||||||
class="entry__text">{{ submission.submissionFeedback.text | trimToLength(50) }}</p>
|
class="entry__text"
|
||||||
|
>
|
||||||
|
{{ submission.submissionFeedback.text | trimToLength(50) }}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,9 @@
|
||||||
<div class="submission-document">
|
<div class="submission-document">
|
||||||
<p
|
<p
|
||||||
class="submission-document__content content"
|
class="submission-document__content content"
|
||||||
v-if="document && document.length > 0">
|
v-if="document && document.length > 0"
|
||||||
<document-icon class="content__icon"/><span class="content__text">{{ filename }}</span>
|
>
|
||||||
|
<document-icon class="content__icon" /><span class="content__text">{{ filename }}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,8 @@
|
||||||
<span class="user-widget__name">{{ firstName }} {{ lastName }}</span>
|
<span class="user-widget__name">{{ firstName }} {{ lastName }}</span>
|
||||||
<span
|
<span
|
||||||
class="user-widget__date"
|
class="user-widget__date"
|
||||||
v-if="date">{{ date }}</span>
|
v-if="date"
|
||||||
|
>{{ date }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="{'user-widget--is-profile': isProfile}"
|
:class="{'user-widget--is-profile': isProfile}"
|
||||||
class="user-widget">
|
class="user-widget"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="user-widget__avatar"
|
class="user-widget__avatar"
|
||||||
data-cy="user-widget-avatar">
|
data-cy="user-widget-avatar"
|
||||||
|
>
|
||||||
<avatar
|
<avatar
|
||||||
:avatar-url="avatarUrl"
|
:avatar-url="avatarUrl"
|
||||||
:icon-highlighted="isProfile"
|
:icon-highlighted="isProfile"
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,13 @@
|
||||||
<router-link
|
<router-link
|
||||||
:to="{name: 'topic', params: {topicSlug: topic.slug}}"
|
:to="{name: 'topic', params: {topicSlug: topic.slug}}"
|
||||||
:class="{'book-topics__topic--active': topic.active, 'book-subnavigation__item--mobile': mobile}"
|
:class="{'book-topics__topic--active': topic.active, 'book-subnavigation__item--mobile': mobile}"
|
||||||
:key="topic.id"
|
|
||||||
tag="div"
|
tag="div"
|
||||||
active-class="book-subnavigation__item--active"
|
active-class="book-subnavigation__item--active"
|
||||||
class="book-topics__topic book-subnavigation__item"
|
class="book-topics__topic book-subnavigation__item"
|
||||||
v-for="topic in topics"
|
v-for="topic in topics"
|
||||||
@click.native="closeSidebar('navigation')">
|
:key="topic.id"
|
||||||
|
@click.native="closeSidebar('navigation')"
|
||||||
|
>
|
||||||
{{ topic.order }}.
|
{{ topic.order }}.
|
||||||
{{ topic.title }}
|
{{ topic.title }}
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<nav
|
<nav
|
||||||
:class="{'content-navigation--sidebar': isSidebar}"
|
:class="{'content-navigation--sidebar': isSidebar}"
|
||||||
class="content-navigation">
|
class="content-navigation"
|
||||||
|
>
|
||||||
<div class="content-navigation__primary">
|
<div class="content-navigation__primary">
|
||||||
<div class="content-navigation__item">
|
<div class="content-navigation__item">
|
||||||
<router-link
|
<router-link
|
||||||
|
|
@ -9,13 +10,14 @@
|
||||||
:to="topicRoute"
|
:to="topicRoute"
|
||||||
active-class="content-navigation__link--active"
|
active-class="content-navigation__link--active"
|
||||||
class="content-navigation__link"
|
class="content-navigation__link"
|
||||||
@click.native="close">Themen
|
@click.native="close"
|
||||||
|
>
|
||||||
|
Themen
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<book-topic-navigation
|
<book-topic-navigation
|
||||||
v-if="isSidebar"
|
v-if="isSidebar"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content-navigation__item">
|
<div class="content-navigation__item">
|
||||||
|
|
@ -23,7 +25,9 @@
|
||||||
to="/instruments"
|
to="/instruments"
|
||||||
active-class="content-navigation__link--active"
|
active-class="content-navigation__link--active"
|
||||||
class="content-navigation__link"
|
class="content-navigation__link"
|
||||||
@click.native="close">Instrumente
|
@click.native="close"
|
||||||
|
>
|
||||||
|
Instrumente
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -34,7 +38,9 @@
|
||||||
class="content-navigation__link"
|
class="content-navigation__link"
|
||||||
data-cy="news-navigation-link"
|
data-cy="news-navigation-link"
|
||||||
v-if="!me.readOnly"
|
v-if="!me.readOnly"
|
||||||
@click.native="close">News
|
@click.native="close"
|
||||||
|
>
|
||||||
|
News
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -45,7 +51,7 @@
|
||||||
data-cy="home-link"
|
data-cy="home-link"
|
||||||
v-if="!isSidebar"
|
v-if="!isSidebar"
|
||||||
>
|
>
|
||||||
<logo class="content-navigation__logo-icon"/>
|
<logo class="content-navigation__logo-icon" />
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
||||||
<div class="content-navigation__secondary">
|
<div class="content-navigation__secondary">
|
||||||
|
|
@ -55,28 +61,35 @@
|
||||||
to="/rooms"
|
to="/rooms"
|
||||||
active-class="content-navigation__link--active"
|
active-class="content-navigation__link--active"
|
||||||
class="content-navigation__link content-navigation__link--secondary"
|
class="content-navigation__link content-navigation__link--secondary"
|
||||||
@click.native="close">Räume
|
@click.native="close"
|
||||||
|
>
|
||||||
|
Räume
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="content-navigation__item content-navigation__item--secondary"
|
class="content-navigation__item content-navigation__item--secondary"
|
||||||
v-if="showPortfolio">
|
v-if="showPortfolio"
|
||||||
|
>
|
||||||
<router-link
|
<router-link
|
||||||
to="/portfolio"
|
to="/portfolio"
|
||||||
active-class="content-navigation__link--active"
|
active-class="content-navigation__link--active"
|
||||||
class="content-navigation__link content-navigation__link--secondary"
|
class="content-navigation__link content-navigation__link--secondary"
|
||||||
@click.native="close">Portfolio
|
@click.native="close"
|
||||||
|
>
|
||||||
|
Portfolio
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="content-navigation__item content-navigation__item--secondary"
|
class="content-navigation__item content-navigation__item--secondary"
|
||||||
v-if="isSidebar">
|
v-if="isSidebar"
|
||||||
|
>
|
||||||
<a
|
<a
|
||||||
href="https://myskillbox.ch/support"
|
href="https://myskillbox.ch/support"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
class="content-navigation__link content-navigation__link--secondary"
|
class="content-navigation__link content-navigation__link--secondary"
|
||||||
@click="close">Support
|
@click="close"
|
||||||
|
>Support
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,19 @@
|
||||||
<template>
|
<template>
|
||||||
<transition name="slide">
|
<transition name="slide">
|
||||||
<div
|
<div
|
||||||
v-click-outside="close"
|
|
||||||
class="navigation-sidebar"
|
class="navigation-sidebar"
|
||||||
v-if="sidebar.navigation"
|
v-if="sidebar.navigation"
|
||||||
|
v-click-outside="close"
|
||||||
>
|
>
|
||||||
<content-navigation
|
<content-navigation
|
||||||
:is-sidebar="true"
|
:is-sidebar="true"
|
||||||
class="navigation-sidebar__main"/>
|
class="navigation-sidebar__main"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="navigation-sidebar__close-button"
|
class="navigation-sidebar__close-button"
|
||||||
@click="close">
|
@click="close"
|
||||||
<cross class="navigation-sidebar__close-icon"/>
|
>
|
||||||
|
<cross class="navigation-sidebar__close-icon" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</transition>
|
</transition>
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="{ 'sub-navigation-item--active': show}"
|
:class="{ 'sub-navigation-item--active': show}"
|
||||||
|
class="sub-navigation-item"
|
||||||
v-click-outside="close"
|
v-click-outside="close"
|
||||||
class="sub-navigation-item">
|
>
|
||||||
<div
|
<div
|
||||||
class="sub-navigation-item__title"
|
class="sub-navigation-item__title"
|
||||||
@click="show = !show">
|
@click="show = !show"
|
||||||
|
>
|
||||||
{{ title }}
|
{{ title }}
|
||||||
<chevron-down class="sub-navigation-item__icon sub-navigation-item__chevron-down"/>
|
<chevron-down class="sub-navigation-item__icon sub-navigation-item__chevron-down" />
|
||||||
<chevron-up class="sub-navigation-item__icon sub-navigation-item__chevron-up"/>
|
<chevron-up class="sub-navigation-item__icon sub-navigation-item__chevron-up" />
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="sub-navigation-item__nav-items book-subnavigation"
|
class="sub-navigation-item__nav-items book-subnavigation"
|
||||||
v-if="show">
|
v-if="show"
|
||||||
<slot/>
|
>
|
||||||
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<modal>
|
<modal>
|
||||||
<template v-slot:header>
|
<template #header>
|
||||||
<modal-input
|
<modal-input
|
||||||
:placeholder="titlePlaceholder"
|
:placeholder="titlePlaceholder"
|
||||||
:value="localContentBlock.title"
|
:value="localContentBlock.title"
|
||||||
|
|
@ -24,13 +24,15 @@
|
||||||
@add-element="addElement"
|
@add-element="addElement"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
:key="index"
|
|
||||||
class="contents-form__element"
|
class="contents-form__element"
|
||||||
v-for="(element, index) in localContentBlock.contents">
|
v-for="(element, index) in localContentBlock.contents"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
<content-element
|
<content-element
|
||||||
:element="element"
|
:element="element"
|
||||||
@update="update(index, $event)"
|
@update="update(index, $event)"
|
||||||
@remove="remove(index)"/>
|
@remove="remove(index)"
|
||||||
|
/>
|
||||||
|
|
||||||
<add-content-element
|
<add-content-element
|
||||||
:index="index"
|
:index="index"
|
||||||
|
|
@ -39,16 +41,18 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template v-slot:footer>
|
<template #footer>
|
||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
:class="{'button--disabled': disableSave}"
|
:class="{'button--disabled': disableSave}"
|
||||||
class="button button--primary"
|
class="button button--primary"
|
||||||
data-cy="modal-save-button"
|
data-cy="modal-save-button"
|
||||||
@click="save">Speichern</a>
|
@click="save"
|
||||||
|
>Speichern</a>
|
||||||
<a
|
<a
|
||||||
class="button"
|
class="button"
|
||||||
@click="$emit('hide')">Abbrechen</a>
|
@click="$emit('hide')"
|
||||||
|
>Abbrechen</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</modal>
|
</modal>
|
||||||
|
|
|
||||||
|
|
@ -9,11 +9,12 @@
|
||||||
v-if="showBookmarkActions"
|
v-if="showBookmarkActions"
|
||||||
@add-note="addNote(component.id)"
|
@add-note="addNote(component.id)"
|
||||||
@edit-note="editNote"
|
@edit-note="editNote"
|
||||||
@bookmark="bookmarkContent(component.id, !bookmarked)"/>
|
@bookmark="bookmarkContent(component.id, !bookmarked)"
|
||||||
|
/>
|
||||||
<component
|
<component
|
||||||
:is="component.type"
|
|
||||||
v-bind="component"
|
v-bind="component"
|
||||||
:parent="parent"
|
:parent="parent"
|
||||||
|
:is="component.type"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<ol class="content-list">
|
<ol class="content-list">
|
||||||
<li
|
<li
|
||||||
:key="item.id"
|
|
||||||
class="content-list__item"
|
class="content-list__item"
|
||||||
v-for="(item, index) in items">
|
v-for="(item, index) in items"
|
||||||
|
:key="item.id"
|
||||||
|
>
|
||||||
<slot
|
<slot
|
||||||
:item="item"
|
:item="item"
|
||||||
:index="index">
|
:index="index"
|
||||||
|
>
|
||||||
{{ item.id }}
|
{{ item.id }}
|
||||||
</slot>
|
</slot>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<content-list
|
<content-list
|
||||||
:items="contentBlocks"
|
:items="contentBlocks"
|
||||||
:starting-index="startingIndex">
|
:starting-index="startingIndex"
|
||||||
<template v-slot:default="{ item }">
|
>
|
||||||
|
<template #default="{ item }">
|
||||||
<content-block
|
<content-block
|
||||||
:content-block="item"
|
:content-block="item"
|
||||||
:parent="parent"
|
:parent="parent"
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,17 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="document-block">
|
<div class="document-block">
|
||||||
<document-icon class="document-block__icon"/>
|
<document-icon class="document-block__icon" />
|
||||||
<a
|
<a
|
||||||
:href="value.url"
|
:href="value.url"
|
||||||
class="document-block__link"
|
class="document-block__link"
|
||||||
target="_blank">{{ urlName }}</a>
|
target="_blank"
|
||||||
|
>{{ urlName }}</a>
|
||||||
<a
|
<a
|
||||||
class="document-block__remove"
|
class="document-block__remove"
|
||||||
v-if="showTrashIcon"
|
v-if="showTrashIcon"
|
||||||
@click="$emit('trash')">
|
@click="$emit('trash')"
|
||||||
<trash-icon class="document-block__trash-icon"/>
|
>
|
||||||
|
<trash-icon class="document-block__trash-icon" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,8 @@
|
||||||
allowscriptaccess="always"
|
allowscriptaccess="always"
|
||||||
allowfullscreen="true"
|
allowfullscreen="true"
|
||||||
scrolling="yes"
|
scrolling="yes"
|
||||||
allownetworking="all"/>
|
allownetworking="all"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,8 @@
|
||||||
:src="value.path"
|
:src="value.path"
|
||||||
alt=""
|
alt=""
|
||||||
class="image-block"
|
class="image-block"
|
||||||
@click="openFullscreen">
|
@click="openFullscreen"
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,8 @@
|
||||||
:src="value.url"
|
:src="value.url"
|
||||||
alt=""
|
alt=""
|
||||||
class="image-block"
|
class="image-block"
|
||||||
@click="openFullscreen">
|
@click="openFullscreen"
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,8 @@
|
||||||
class="infogram-block__iframe"
|
class="infogram-block__iframe"
|
||||||
scrolling="no"
|
scrolling="no"
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
style="border:none;"/>
|
style="border:none;"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="instruction"
|
class="instruction"
|
||||||
v-if="me.isTeacher">
|
v-if="me.isTeacher"
|
||||||
<bulb-icon class="instruction__icon"/>
|
>
|
||||||
|
<bulb-icon class="instruction__icon" />
|
||||||
<a
|
<a
|
||||||
:href="value.url"
|
:href="value.url"
|
||||||
class="instruction__link">{{ text }}</a>
|
class="instruction__link"
|
||||||
|
>{{ text }}</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,13 @@
|
||||||
<div class="instrument-widget">
|
<div class="instrument-widget">
|
||||||
<div
|
<div
|
||||||
class="instrument-widget__description"
|
class="instrument-widget__description"
|
||||||
v-html="value.description"/>
|
v-html="value.description"
|
||||||
|
/>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{name: 'instrument', params: { slug: value.slug }}"
|
:to="{name: 'instrument', params: { slug: value.slug }}"
|
||||||
class="instrument-widget__button button">Instrument anzeigen
|
class="instrument-widget__button button"
|
||||||
|
>
|
||||||
|
Instrument anzeigen
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:class="{ 'link-block--no-margin': noMargin}"
|
:class="{ 'link-block--no-margin': noMargin}"
|
||||||
class="link-block">
|
class="link-block"
|
||||||
<link-icon class="link-block__icon"/>
|
>
|
||||||
|
<link-icon class="link-block__icon" />
|
||||||
<a
|
<a
|
||||||
:href="href"
|
:href="href"
|
||||||
class="link-block__link"
|
class="link-block__link"
|
||||||
target="_blank">{{ value.text }}</a>
|
target="_blank"
|
||||||
|
>{{ value.text }}</a>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,9 @@
|
||||||
<div class="module-slug">
|
<div class="module-slug">
|
||||||
<router-link
|
<router-link
|
||||||
:to="{name: 'moduleRoom', params: { slug: value.slug }}"
|
:to="{name: 'moduleRoom', params: { slug: value.slug }}"
|
||||||
class="button button--primary">Raum anzeigen
|
class="button button--primary"
|
||||||
|
>
|
||||||
|
Raum anzeigen
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<h4
|
<h4
|
||||||
class="section-title"
|
class="section-title"
|
||||||
v-html="value.text"/>
|
v-html="value.text"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="solution"
|
class="solution"
|
||||||
data-cy="solution">
|
data-cy="solution"
|
||||||
|
>
|
||||||
<a
|
<a
|
||||||
class="solution__toggle"
|
class="solution__toggle"
|
||||||
data-cy="show-solution"
|
data-cy="show-solution"
|
||||||
@click="toggle">Lösung
|
@click="toggle"
|
||||||
|
>Lösung
|
||||||
<template v-if="!visible">anzeigen</template>
|
<template v-if="!visible">anzeigen</template>
|
||||||
<template v-else>ausblenden</template>
|
<template v-else>ausblenden</template>
|
||||||
</a>
|
</a>
|
||||||
|
|
@ -15,7 +17,8 @@
|
||||||
data-cy="solution-text"
|
data-cy="solution-text"
|
||||||
|
|
||||||
v-if="visible"
|
v-if="visible"
|
||||||
v-html="value.text"/>
|
v-html="value.text"
|
||||||
|
/>
|
||||||
</transition>
|
</transition>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<h5
|
<h5
|
||||||
class="subtitle"
|
class="subtitle"
|
||||||
v-html="value.text"/>
|
v-html="value.text"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:data-scrollto="value.id"
|
:data-scrollto="value.id"
|
||||||
class="survey-block">
|
class="survey-block"
|
||||||
|
>
|
||||||
<router-link
|
<router-link
|
||||||
:to="{name: 'survey', params: {id:value.id}}"
|
:to="{name: 'survey', params: {id:value.id}}"
|
||||||
class="button button--primary">Übung anzeigen
|
class="button button--primary"
|
||||||
|
>
|
||||||
|
Übung anzeigen
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
<div class="task">
|
<div class="task">
|
||||||
<div
|
<div
|
||||||
class="task__text"
|
class="task__text"
|
||||||
v-html="value.text"/>
|
v-html="value.text"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="text-block"
|
class="text-block"
|
||||||
v-html="value.text"/>
|
v-html="value.text"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,8 @@
|
||||||
scrolling="no"
|
scrolling="no"
|
||||||
allowscriptaccess="always"
|
allowscriptaccess="always"
|
||||||
allowfullscreen="true"
|
allowfullscreen="true"
|
||||||
allownetworking="all"/>
|
allownetworking="all"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,16 @@
|
||||||
<div class="video-block">
|
<div class="video-block">
|
||||||
<youtube-embed
|
<youtube-embed
|
||||||
:url="value.url"
|
:url="value.url"
|
||||||
v-if="isYoutube"/>
|
v-if="isYoutube"
|
||||||
|
/>
|
||||||
<vimeo-embed
|
<vimeo-embed
|
||||||
:url="value.url"
|
:url="value.url"
|
||||||
v-if="isVimeo"/>
|
v-if="isVimeo"
|
||||||
|
/>
|
||||||
<srf-embed
|
<srf-embed
|
||||||
:url="value.url"
|
:url="value.url"
|
||||||
v-if="isSrf"/>
|
v-if="isSrf"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,16 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
:data-scrollto="value.id"
|
:data-scrollto="value.id"
|
||||||
class="assignment">
|
class="assignment"
|
||||||
|
>
|
||||||
<p class="assignment__assignment-text">
|
<p class="assignment__assignment-text">
|
||||||
{{ assignment.assignment }}
|
{{ assignment.assignment }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<solution
|
<solution
|
||||||
:value="solution"
|
:value="solution"
|
||||||
v-if="assignment.solution"/>
|
v-if="assignment.solution"
|
||||||
|
/>
|
||||||
|
|
||||||
<template v-if="isStudent">
|
<template v-if="isStudent">
|
||||||
<submission-form
|
<submission-form
|
||||||
|
|
@ -30,17 +32,21 @@
|
||||||
|
|
||||||
<spell-check
|
<spell-check
|
||||||
:corrections="corrections"
|
:corrections="corrections"
|
||||||
:text="submission.text"/>
|
:text="submission.text"
|
||||||
|
/>
|
||||||
|
|
||||||
<p
|
<p
|
||||||
class="assignment__feedback"
|
class="assignment__feedback"
|
||||||
v-if="assignment.submission.submissionFeedback"
|
v-if="assignment.submission.submissionFeedback"
|
||||||
v-html="feedbackText"/>
|
v-html="feedbackText"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="!isStudent">
|
<template v-if="!isStudent">
|
||||||
<router-link
|
<router-link
|
||||||
:to="{name: 'submissions', params: { id: assignment.id }}"
|
:to="{name: 'submissions', params: { id: assignment.id }}"
|
||||||
class="button button--primary">Zu den
|
class="button button--primary"
|
||||||
|
>
|
||||||
|
Zu den
|
||||||
Ergebnissen
|
Ergebnissen
|
||||||
</router-link>
|
</router-link>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="final-submission"
|
class="final-submission"
|
||||||
data-cy="final-submission">
|
data-cy="final-submission"
|
||||||
|
>
|
||||||
<document-block
|
<document-block
|
||||||
:value="{url: userInput.document}"
|
:value="{url: userInput.document}"
|
||||||
class="final-submission__document"
|
class="final-submission__document"
|
||||||
v-if="userInput.document"
|
v-if="userInput.document"
|
||||||
/>
|
/>
|
||||||
<div class="final-submission__explanation">
|
<div class="final-submission__explanation">
|
||||||
<info-icon class="final-submission__explanation-icon"/>
|
<info-icon class="final-submission__explanation-icon" />
|
||||||
<span class="final-submission__explanation-text">{{ sharedMsg }}</span>
|
<span class="final-submission__explanation-text">{{ sharedMsg }}</span>
|
||||||
<a
|
<a
|
||||||
class="final-submission__reopen"
|
class="final-submission__reopen"
|
||||||
data-cy="final-submission-reopen"
|
data-cy="final-submission-reopen"
|
||||||
v-if="showReopen"
|
v-if="showReopen"
|
||||||
@click="$emit('reopen')">Bearbeiten</a>
|
@click="$emit('reopen')"
|
||||||
|
>Bearbeiten</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<p
|
<p
|
||||||
class="spellcheck"
|
class="spellcheck"
|
||||||
v-if="corrections">
|
v-if="corrections"
|
||||||
<span class="inline-title">Rechtschreibung:</span> <span v-html="highlightedText"/>
|
>
|
||||||
|
<span class="inline-title">Rechtschreibung:</span> <span v-html="highlightedText" />
|
||||||
</p>
|
</p>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,25 +12,29 @@
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="submission-form-container__actions"
|
class="submission-form-container__actions"
|
||||||
v-if="!isFinalOrReadOnly">
|
v-if="!isFinalOrReadOnly"
|
||||||
|
>
|
||||||
<button
|
<button
|
||||||
class="submission-form-container__submit button button--primary button--white-bg"
|
class="submission-form-container__submit button button--primary button--white-bg"
|
||||||
data-cy="submission-form-submit"
|
data-cy="submission-form-submit"
|
||||||
@click="$emit('turnIn')"
|
@click="$emit('turnIn')"
|
||||||
>{{ action }}
|
>
|
||||||
|
{{ action }}
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="submission-form-container__submit submission-form-container__spellcheck button button--primary button--white-bg"
|
class="submission-form-container__submit submission-form-container__spellcheck button button--primary button--white-bg"
|
||||||
data-cy="spellcheck-button"
|
data-cy="spellcheck-button"
|
||||||
v-if="showSpellcheckButton"
|
v-if="showSpellcheckButton"
|
||||||
@click="$emit('spellcheck')"
|
@click="$emit('spellcheck')"
|
||||||
>{{ spellcheckText }}
|
>
|
||||||
|
{{ spellcheckText }}
|
||||||
</button>
|
</button>
|
||||||
<file-upload
|
<file-upload
|
||||||
:document="userInput.document"
|
:document="userInput.document"
|
||||||
v-if="allowsDocuments"
|
v-if="allowsDocuments"
|
||||||
@change-document-url="changeDocumentUrl"/>
|
@change-document-url="changeDocumentUrl"
|
||||||
<slot/>
|
/>
|
||||||
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<final-submission
|
<final-submission
|
||||||
|
|
@ -38,7 +42,8 @@
|
||||||
:shared-msg="sharedMsg"
|
:shared-msg="sharedMsg"
|
||||||
:show-reopen="!readOnly"
|
:show-reopen="!readOnly"
|
||||||
v-if="isFinalOrReadOnly"
|
v-if="isFinalOrReadOnly"
|
||||||
@reopen="$emit('reopen')"/>
|
@reopen="$emit('reopen')"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="submission-form__text-answer submission-form">
|
<div class="submission-form__text-answer submission-form">
|
||||||
<textarea
|
<textarea
|
||||||
v-auto-grow
|
|
||||||
:placeholder="placeholder"
|
:placeholder="placeholder"
|
||||||
:readonly="readonly"
|
:readonly="readonly"
|
||||||
:value="inputText"
|
:value="inputText"
|
||||||
|
|
@ -9,17 +8,20 @@
|
||||||
data-cy="submission-textarea"
|
data-cy="submission-textarea"
|
||||||
rows="1"
|
rows="1"
|
||||||
class="submission-form__textarea"
|
class="submission-form__textarea"
|
||||||
|
v-auto-grow
|
||||||
@input="$emit('input', $event.target.value)"
|
@input="$emit('input', $event.target.value)"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
class="submission-form__save-status submission-form__save-status--saved"
|
class="submission-form__save-status submission-form__save-status--saved"
|
||||||
v-if="saved">
|
v-if="saved"
|
||||||
<tick-circle-icon class="submission-form__save-status-icon"/>
|
>
|
||||||
|
<tick-circle-icon class="submission-form__save-status-icon" />
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="submission-form__save-status submission-form__save-status--unsaved"
|
class="submission-form__save-status submission-form__save-status--unsaved"
|
||||||
v-if="!saved">
|
v-if="!saved"
|
||||||
<loading-icon class="submission-form__save-status-icon submission-form__saving-icon"/>
|
>
|
||||||
|
<loading-icon class="submission-form__save-status-icon submission-form__saving-icon" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
placeholder="Aufgabe erfassen..."
|
placeholder="Aufgabe erfassen..."
|
||||||
@input="$emit('assignment-change-assignment', $event.target.value, index)"
|
@input="$emit('assignment-change-assignment', $event.target.value, index)"
|
||||||
/>
|
/>
|
||||||
<info-icon class="assignment-form__help-icon help-text__icon"/>
|
<info-icon class="assignment-form__help-icon help-text__icon" />
|
||||||
<p class="assignment-form__help-description help-text__description">
|
<p class="assignment-form__help-description help-text__description">
|
||||||
Ein Eingabefeld für die Antwort wird automatisch hinzugefügt.
|
Ein Eingabefeld für die Antwort wird automatisch hinzugefügt.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="document-form"
|
class="document-form"
|
||||||
ref="documentform">
|
ref="documentform"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
v-if="!value.url"
|
v-if="!value.url"
|
||||||
ref="uploadcare-panel"/>
|
ref="uploadcare-panel"
|
||||||
|
/>
|
||||||
<div
|
<div
|
||||||
class="document-form__uploaded"
|
class="document-form__uploaded"
|
||||||
v-if="value.url">
|
v-if="value.url"
|
||||||
<document-icon class="document-form__icon"/>
|
>
|
||||||
|
<document-icon class="document-form__icon" />
|
||||||
<a
|
<a
|
||||||
:href="previewUrl"
|
:href="previewUrl"
|
||||||
class="document-form__link"
|
class="document-form__link"
|
||||||
target="_blank">{{ previewLink }}</a>
|
target="_blank"
|
||||||
|
>{{ previewLink }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,19 +2,23 @@
|
||||||
<div class="image-form">
|
<div class="image-form">
|
||||||
<div
|
<div
|
||||||
class="image-form__error"
|
class="image-form__error"
|
||||||
v-if="hadError">
|
v-if="hadError"
|
||||||
|
>
|
||||||
Ups, das scheint kein Bild zu sein. Bitte versuche es nochmal mit einer anderen Datei, oder lade die Datei als <a
|
Ups, das scheint kein Bild zu sein. Bitte versuche es nochmal mit einer anderen Datei, oder lade die Datei als <a
|
||||||
class="image-form__link"
|
class="image-form__link"
|
||||||
@click="switchToDocument">Dokument</a> hoch.
|
@click="switchToDocument"
|
||||||
|
>Dokument</a> hoch.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="!value.url"
|
v-if="!value.url"
|
||||||
ref="uploadcare-panel"/>
|
ref="uploadcare-panel"
|
||||||
|
/>
|
||||||
<div v-if="value.url && !hadError">
|
<div v-if="value.url && !hadError">
|
||||||
<img
|
<img
|
||||||
:src="previewUrl"
|
:src="previewUrl"
|
||||||
@error="error">
|
@error="error"
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -4,13 +4,15 @@
|
||||||
:value="value.text"
|
:value="value.text"
|
||||||
placeholder="Name erfassen..."
|
placeholder="Name erfassen..."
|
||||||
class="link-form__text skillbox-input"
|
class="link-form__text skillbox-input"
|
||||||
@input="$emit('link-change-text', $event.target.value, index)">
|
@input="$emit('link-change-text', $event.target.value, index)"
|
||||||
|
>
|
||||||
|
|
||||||
<input
|
<input
|
||||||
:value="value.url"
|
:value="value.url"
|
||||||
placeholder="URL einfügen..."
|
placeholder="URL einfügen..."
|
||||||
class="link-form__url skillbox-input"
|
class="link-form__url skillbox-input"
|
||||||
@input="$emit('link-change-url', $event.target.value, index)">
|
@input="$emit('link-change-url', $event.target.value, index)"
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,8 @@
|
||||||
class="text-form__input skillbox-textarea"
|
class="text-form__input skillbox-textarea"
|
||||||
data-cy="text-form-input"
|
data-cy="text-form-input"
|
||||||
placeholder="Text erfassen..."
|
placeholder="Text erfassen..."
|
||||||
@input="$emit('text-change-value', $event.target.value, index)"/>
|
@input="$emit('text-change-value', $event.target.value, index)"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="text-form-with-help-text">
|
<div class="text-form-with-help-text">
|
||||||
<h3 class="text-form-with-help-text__heading"><span class="text-form-with-help-text__title">{{ title }}</span>
|
<h3 class="text-form-with-help-text__heading">
|
||||||
<helpful-tooltip :text="helpText"/>
|
<span class="text-form-with-help-text__title">{{ title }}</span>
|
||||||
|
<helpful-tooltip :text="helpText" />
|
||||||
</h3>
|
</h3>
|
||||||
<text-form
|
<text-form
|
||||||
:value="v"
|
:value="v"
|
||||||
@text-change-value="$emit('change', $event)"/>
|
@text-change-value="$emit('change', $event)"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,17 +2,20 @@
|
||||||
<div>
|
<div>
|
||||||
<div
|
<div
|
||||||
class="video-form"
|
class="video-form"
|
||||||
v-if="!isVimeo && !isYoutube && !isSrf">
|
v-if="!isVimeo && !isYoutube && !isSrf"
|
||||||
<info-icon class="video-form__help-icon help-text__icon"/>
|
>
|
||||||
|
<info-icon class="video-form__help-icon help-text__icon" />
|
||||||
<p class="video-form__help-description help-text__description">
|
<p class="video-form__help-description help-text__description">
|
||||||
Sie können Videos auf <a
|
Sie können Videos auf <a
|
||||||
class="video-form__platform-link help-text__link"
|
class="video-form__platform-link help-text__link"
|
||||||
href="https://youtube.com/"
|
href="https://youtube.com/"
|
||||||
target="_blank">Youtube</a>
|
target="_blank"
|
||||||
|
>Youtube</a>
|
||||||
oder <a
|
oder <a
|
||||||
class="video-form__platform-link help-text__link"
|
class="video-form__platform-link help-text__link"
|
||||||
href="https://vimeo.com/"
|
href="https://vimeo.com/"
|
||||||
target="_blank">Vimeo</a>
|
target="_blank"
|
||||||
|
>Vimeo</a>
|
||||||
hochladen und anschliessen einen Link hier einfügen.
|
hochladen und anschliessen einen Link hier einfügen.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
@ -20,19 +23,19 @@
|
||||||
:value="value.url"
|
:value="value.url"
|
||||||
class="video-form__video-link skillbox-input"
|
class="video-form__video-link skillbox-input"
|
||||||
placeholder="Bsp: https://www.youtube.com/watch?v=dQw4w9WgXcQ"
|
placeholder="Bsp: https://www.youtube.com/watch?v=dQw4w9WgXcQ"
|
||||||
@input="$emit('video-change-url', $event.target.value, index)">
|
@input="$emit('video-change-url', $event.target.value, index)"
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="isYoutube">
|
<div v-if="isYoutube">
|
||||||
<youtube-embed :url="value.url"/>
|
<youtube-embed :url="value.url" />
|
||||||
</div>
|
</div>
|
||||||
<div v-if="isVimeo">
|
<div v-if="isVimeo">
|
||||||
<vimeo-embed :url="value.url"/>
|
<vimeo-embed :url="value.url" />
|
||||||
</div>
|
</div>
|
||||||
<div v-if="isSrf">
|
<div v-if="isSrf">
|
||||||
<srf-embed :url="value.url"/>
|
<srf-embed :url="value.url" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,13 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="6 6 88 88"
|
viewBox="6 6 88 88"
|
||||||
id="shape">
|
id="shape"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M50,6.48A43.62,43.62,0,0,0,6.56,47.08S6.5,48.46,6.5,50s.06,2.83.06,2.92A43.52,43.52,0,1,0,50,6.48Zm0,82.15A38.62,38.62,0,1,1,88.6,50,38.67,38.67,0,0,1,50,88.62Z"/>
|
d="M50,6.48A43.62,43.62,0,0,0,6.56,47.08S6.5,48.46,6.5,50s.06,2.83.06,2.92A43.52,43.52,0,1,0,50,6.48Zm0,82.15A38.62,38.62,0,1,1,88.6,50,38.67,38.67,0,0,1,50,88.62Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M67.71,47.55H52.43V32.27a2.45,2.45,0,1,0-4.9,0V47.55H32.25a2.45,2.45,0,0,0,0,4.9H47.53V67.73a2.45,2.45,0,1,0,4.9,0V52.45H67.71a2.45,2.45,0,0,0,0-4.9Z"/>
|
d="M67.71,47.55H52.43V32.27a2.45,2.45,0,1,0-4.9,0V47.55H32.25a2.45,2.45,0,0,0,0,4.9H47.53V67.73a2.45,2.45,0,1,0,4.9,0V52.45H67.71a2.45,2.45,0,0,0,0-4.9Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,13 @@
|
||||||
<svg
|
<svg
|
||||||
class="add-note-icon"
|
class="add-note-icon"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M81.5,88.39746H18.7627a2.49981,2.49981,0,0,1-2.5-2.5V35.35352L1.72559,20.71191A2.50054,2.50054,0,0,1,3.5,16.4502h78a2.49981,2.49981,0,0,1,2.5,2.5V85.89746A2.49981,2.49981,0,0,1,81.5,88.39746Zm-60.2373-5H79V21.4502H9.50488L20.53711,32.56152a2.5013,2.5013,0,0,1,.72559,1.76172Z"/>
|
d="M81.5,88.39746H18.7627a2.49981,2.49981,0,0,1-2.5-2.5V35.35352L1.72559,20.71191A2.50054,2.50054,0,0,1,3.5,16.4502h78a2.49981,2.49981,0,0,1,2.5,2.5V85.89746A2.49981,2.49981,0,0,1,81.5,88.39746Zm-60.2373-5H79V21.4502H9.50488L20.53711,32.56152a2.5013,2.5013,0,0,1,.72559,1.76172Z"
|
||||||
<path d="M64.9209,55.08447H36.18457a2.5,2.5,0,0,1,0-5H64.9209a2.5,2.5,0,0,1,0,5Z"/>
|
/>
|
||||||
<path d="M48.26318,66.95313V38.21582a2.5,2.5,0,0,1,5,0v28.7373a2.5,2.5,0,0,1-5,0Z"/>
|
<path d="M64.9209,55.08447H36.18457a2.5,2.5,0,0,1,0-5H64.9209a2.5,2.5,0,0,1,0,5Z" />
|
||||||
|
<path d="M48.26318,66.95313V38.21582a2.5,2.5,0,0,1,5,0v28.7373a2.5,2.5,0,0,1-5,0Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,13 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape">
|
id="shape"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M61.74,13.24a36.43,36.43,0,0,0-22.06,7.35L2.52,48a2.5,2.5,0,0,0,0,4L39.66,79.39A36.76,36.76,0,1,0,61.74,13.24Zm0,68.52a31.5,31.5,0,0,1-19.09-6.38L8.21,50,42.66,24.6A31.76,31.76,0,1,1,61.74,81.76Z"/>
|
d="M61.74,13.24a36.43,36.43,0,0,0-22.06,7.35L2.52,48a2.5,2.5,0,0,0,0,4L39.66,79.39A36.76,36.76,0,1,0,61.74,13.24Zm0,68.52a31.5,31.5,0,0,1-19.09-6.38L8.21,50,42.66,24.6A31.76,31.76,0,1,1,61.74,81.76Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M79.64,47.5H64.51V32.38a2.5,2.5,0,0,0-5,0V47.5H44.39a2.5,2.5,0,0,0,0,5H59.51V67.63a2.5,2.5,0,0,0,5,0V52.5H79.64a2.5,2.5,0,0,0,0-5Z"/>
|
d="M79.64,47.5H64.51V32.38a2.5,2.5,0,0,0-5,0V47.5H44.39a2.5,2.5,0,0,0,0,5H59.51V67.63a2.5,2.5,0,0,0,5,0V52.5H79.64a2.5,2.5,0,0,0,0-5Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,10 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
width="100"
|
width="100"
|
||||||
height="100"
|
height="100"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M85.56934,50.543l-33.5-49.44531a2.49942,2.49942,0,0,0-4.13867,0l-33.5,49.44531A2.49925,2.49925,0,0,0,16.5,54.44531H32.36035V97.5a2.49981,2.49981,0,0,0,2.5,2.5h30.2793a2.49981,2.49981,0,0,0,2.5-2.5V54.44531H83.5A2.49925,2.49925,0,0,0,85.56934,50.543ZM62.63965,49.44531V95H37.36035V49.44531H21.21387L50,6.957,78.78613,49.44531Z"/>
|
d="M85.56934,50.543l-33.5-49.44531a2.49942,2.49942,0,0,0-4.13867,0l-33.5,49.44531A2.49925,2.49925,0,0,0,16.5,54.44531H32.36035V97.5a2.49981,2.49981,0,0,0,2.5,2.5h30.2793a2.49981,2.49981,0,0,0,2.5-2.5V54.44531H83.5A2.49925,2.49925,0,0,0,85.56934,50.543ZM62.63965,49.44531V95H37.36035V49.44531H21.21387L50,6.957,78.78613,49.44531Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
class="bookmark-icon">
|
class="bookmark-icon"
|
||||||
|
>
|
||||||
<g :class="{'bookmark-icon--bookmarked': bookmarked}">
|
<g :class="{'bookmark-icon--bookmarked': bookmarked}">
|
||||||
<path
|
<path
|
||||||
class="bookmark-icon__background"
|
class="bookmark-icon__background"
|
||||||
|
|
@ -10,7 +11,8 @@
|
||||||
/>
|
/>
|
||||||
<path
|
<path
|
||||||
d="M84.5,93.07715a2.49662,2.49662,0,0,1-1.43359-.45215L51,70.17871,18.93359,92.625A2.49964,2.49964,0,0,1,15,90.57715V11.42285a2.49981,2.49981,0,0,1,2.5-2.5h67a2.49981,2.49981,0,0,1,2.5,2.5v79.1543a2.49947,2.49947,0,0,1-2.5,2.5ZM51,65.15527a4.8673,4.8673,0,0,1,2.80762.88574L82,85.77539V13.92285H20V85.77539L48.19434,66.04A4.863,4.863,0,0,1,51,65.15527Z"
|
d="M84.5,93.07715a2.49662,2.49662,0,0,1-1.43359-.45215L51,70.17871,18.93359,92.625A2.49964,2.49964,0,0,1,15,90.57715V11.42285a2.49981,2.49981,0,0,1,2.5-2.5h67a2.49981,2.49981,0,0,1,2.5,2.5v79.1543a2.49947,2.49947,0,0,1-2.5,2.5ZM51,65.15527a4.8673,4.8673,0,0,1,2.80762.88574L82,85.77539V13.92285H20V85.77539L48.19434,66.04A4.863,4.863,0,0,1,51,65.15527Z"
|
||||||
id="bookmark-icon__outline"/>
|
id="bookmark-icon__outline"
|
||||||
|
/>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -3,19 +3,23 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
width="100"
|
width="100"
|
||||||
height="100"
|
height="100"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<g id="shape">
|
<g id="shape">
|
||||||
<circle
|
<circle
|
||||||
cx="50"
|
cx="50"
|
||||||
cy="50"
|
cy="50"
|
||||||
r="50"
|
r="50"
|
||||||
style="fill:#17a887"/>
|
style="fill:#17a887"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M57.96318,62.73515H41.99379A2.48236,2.48236,0,0,1,39.51288,60.34c-.06061-1.72061-.21515-2.61273-3.23576-5.60545a20.69086,20.69086,0,1,1,27.55152-.18485l-.27394.26848c-2.89273,2.86424-3.04424,3.76485-3.11091,5.52848A2.48231,2.48231,0,0,1,57.96318,62.73515ZM44.17652,57.7703H55.77409c.50667-2.1903,1.72788-3.94606,4.29636-6.48909l.317-.3103c.02364-.023.04727-.04545.07212-.06788a15.62483,15.62483,0,1,0-20.85788.14364c.03848.03333.07606.06848.11273.10424C42.38379,53.78848,43.65439,55.58424,44.17652,57.7703Z"
|
d="M57.96318,62.73515H41.99379A2.48236,2.48236,0,0,1,39.51288,60.34c-.06061-1.72061-.21515-2.61273-3.23576-5.60545a20.69086,20.69086,0,1,1,27.55152-.18485l-.27394.26848c-2.89273,2.86424-3.04424,3.76485-3.11091,5.52848A2.48231,2.48231,0,0,1,57.96318,62.73515ZM44.17652,57.7703H55.77409c.50667-2.1903,1.72788-3.94606,4.29636-6.48909l.317-.3103c.02364-.023.04727-.04545.07212-.06788a15.62483,15.62483,0,1,0-20.85788.14364c.03848.03333.07606.06848.11273.10424C42.38379,53.78848,43.65439,55.58424,44.17652,57.7703Z"
|
||||||
style="fill:#fff"/>
|
style="fill:#fff"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M58.13591,83H41.86773a2.48255,2.48255,0,0,1-2.48242-2.48242V70.50909a2.48255,2.48255,0,0,1,2.48242-2.48242H58.13227a2.48229,2.48229,0,0,1,2.48242,2.48121l.00364,10.00848A2.482,2.482,0,0,1,58.13591,83ZM44.35015,78.03515H55.65227l-.00121-5.04364H44.35015Z"
|
d="M58.13591,83H41.86773a2.48255,2.48255,0,0,1-2.48242-2.48242V70.50909a2.48255,2.48255,0,0,1,2.48242-2.48242H58.13227a2.48229,2.48229,0,0,1,2.48242,2.48121l.00364,10.00848A2.482,2.482,0,0,1,58.13591,83ZM44.35015,78.03515H55.65227l-.00121-5.04364H44.35015Z"
|
||||||
style="fill:#fff"/>
|
style="fill:#fff"
|
||||||
|
/>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,11 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape"><title>cards</title>
|
id="shape"
|
||||||
|
><title>cards</title>
|
||||||
<path
|
<path
|
||||||
d="M30.89,21v9.67H17.44v9.67H4V79H69.11V69.34H82.56V59.67H96V21Zm3.77,3.77H92.23V55.89H82.56V30.65H34.67ZM21.22,34.43H78.78V65.57H69.11V40.33H21.22ZM7.77,44.1H65.34V75.24H7.77Z"
|
d="M30.89,21v9.67H17.44v9.67H4V79H69.11V69.34H82.56V59.67H96V21Zm3.77,3.77H92.23V55.89H82.56V30.65H34.67ZM21.22,34.43H78.78V65.57H69.11V40.33H21.22ZM7.77,44.1H65.34V75.24H7.77Z"
|
||||||
id="Fill-1"/>
|
id="Fill-1"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
<path d="M50,74.07,6.86,30.93A2.93,2.93,0,0,1,11,26.79l39,39,39-39a2.93,2.93,0,1,1,4.15,4.15Z"/>
|
>
|
||||||
|
<path d="M50,74.07,6.86,30.93A2.93,2.93,0,0,1,11,26.79l39,39,39-39a2.93,2.93,0,1,1,4.15,4.15Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,9 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
class="chevron">
|
class="chevron"
|
||||||
<path d="M74.07,50,30.93,93.14A2.93,2.93,0,0,1,26.79,89l39-39-39-39a2.93,2.93,0,0,1,4.15-4.15Z"/>
|
>
|
||||||
|
<path d="M74.07,50,30.93,93.14A2.93,2.93,0,0,1,26.79,89l39-39-39-39a2.93,2.93,0,0,1,4.15-4.15Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
class="chevron">
|
class="chevron"
|
||||||
<path d="M74.07,50,30.93,93.14A2.93,2.93,0,0,1,26.79,89l39-39-39-39a2.93,2.93,0,0,1,4.15-4.15Z"/>
|
>
|
||||||
|
<path d="M74.07,50,30.93,93.14A2.93,2.93,0,0,1,26.79,89l39-39-39-39a2.93,2.93,0,0,1,4.15-4.15Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
<path d="M50,18.93,93.14,62.07A2.93,2.93,0,1,1,89,66.21l-39-39-39,39a2.93,2.93,0,1,1-4.15-4.15Z"/>
|
>
|
||||||
|
<path d="M50,18.93,93.14,62.07A2.93,2.93,0,1,1,89,66.21l-39-39-39,39a2.93,2.93,0,1,1-4.15-4.15Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<circle
|
<circle
|
||||||
r="25"
|
r="25"
|
||||||
cx="50"
|
cx="50"
|
||||||
cy="50"/>
|
cy="50"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,10 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape">
|
id="shape"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M99.5,48.11a56.91,56.91,0,0,0-21-21.19L91.18,14.26a3.85,3.85,0,1,0-5.44-5.44L71.21,23.36A56.73,56.73,0,0,0,.5,48.11a3.84,3.84,0,0,0,0,3.79,56.92,56.92,0,0,0,21,21.19L8.82,85.74a3.85,3.85,0,1,0,5.44,5.44L28.79,76.64A56.66,56.66,0,0,0,50,80.79,57,57,0,0,0,99.5,51.89,3.84,3.84,0,0,0,99.5,48.11ZM8.32,50a49.09,49.09,0,0,1,56.9-20.66L27.15,67.42A49.25,49.25,0,0,1,8.32,50ZM50,73.09a49,49,0,0,1-15.22-2.43L72.85,32.59A49.25,49.25,0,0,1,91.68,50,49.27,49.27,0,0,1,50,73.09Z"/>
|
d="M99.5,48.11a56.91,56.91,0,0,0-21-21.19L91.18,14.26a3.85,3.85,0,1,0-5.44-5.44L71.21,23.36A56.73,56.73,0,0,0,.5,48.11a3.84,3.84,0,0,0,0,3.79,56.92,56.92,0,0,0,21,21.19L8.82,85.74a3.85,3.85,0,1,0,5.44,5.44L28.79,76.64A56.66,56.66,0,0,0,50,80.79,57,57,0,0,0,99.5,51.89,3.84,3.84,0,0,0,99.5,48.11ZM8.32,50a49.09,49.09,0,0,1,56.9-20.66L27.15,67.42A49.25,49.25,0,0,1,8.32,50ZM50,73.09a49,49,0,0,1-15.22-2.43L72.85,32.59A49.25,49.25,0,0,1,91.68,50,49.27,49.27,0,0,1,50,73.09Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,11 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
class="cross">
|
class="cross"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M53.91,50,87.19,16.73a2.77,2.77,0,1,0-3.91-3.91L50,46.09,16.73,12.81a2.77,2.77,0,1,0-3.91,3.91L46.09,50,12.81,83.27a2.77,2.77,0,1,0,3.91,3.91L50,53.91,83.27,87.19a2.77,2.77,0,0,0,3.91-3.91Z"/>
|
d="M53.91,50,87.19,16.73a2.77,2.77,0,1,0-3.91-3.91L50,46.09,16.73,12.81a2.77,2.77,0,1,0-3.91,3.91L46.09,50,12.81,83.27a2.77,2.77,0,1,0,3.91,3.91L50,53.91,83.27,87.19a2.77,2.77,0,0,0,3.91-3.91Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,16 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
viewBox="0 0 400 400">
|
viewBox="0 0 400 400"
|
||||||
|
>
|
||||||
<defs>
|
<defs>
|
||||||
<clipPath id="avatar-clip-path">
|
<clipPath id="avatar-clip-path">
|
||||||
<circle
|
<circle
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
cx="200"
|
cx="200"
|
||||||
cy="200"
|
cy="200"
|
||||||
r="197"/>
|
r="197"
|
||||||
|
/>
|
||||||
</clipPath>
|
</clipPath>
|
||||||
</defs>
|
</defs>
|
||||||
<g id="bg">
|
<g id="bg">
|
||||||
|
|
@ -17,34 +19,42 @@
|
||||||
class="cls-2"
|
class="cls-2"
|
||||||
cx="200"
|
cx="200"
|
||||||
cy="200"
|
cy="200"
|
||||||
r="197"/>
|
r="197"
|
||||||
|
/>
|
||||||
</g>
|
</g>
|
||||||
<g id="objects">
|
<g id="objects">
|
||||||
<g class="cls-3">
|
<g class="cls-3">
|
||||||
<path
|
<path
|
||||||
class="cls-4"
|
class="cls-4"
|
||||||
d="M380.03229,346.82485l-99.89952-29.68554-75.91247-7.58045h-2.40707l-78.31955,7.58045-103.526,30.44984s75.62737,95.55272,183.04906,95.55272S380.03229,346.82485,380.03229,346.82485Z"/>
|
d="M380.03229,346.82485l-99.89952-29.68554-75.91247-7.58045h-2.40707l-78.31955,7.58045-103.526,30.44984s75.62737,95.55272,183.04906,95.55272S380.03229,346.82485,380.03229,346.82485Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-5"
|
class="cls-5"
|
||||||
d="M272.15765,65.53589a86.01591,86.01591,0,0,0-20.524-14.33295,103.61294,103.61294,0,0,0-49.8204-11.92284,103.61271,103.61271,0,0,0-49.8198,11.92255A86.01706,86.01706,0,0,0,131.4688,65.53589c-47.89186,45.957-59.684,136.053-53.17653,195.51559,22.30221,28.20465,70.43168,35.98046,103.97675,29.59277-1.699-28.98109-18.28465-55.36789-18.09824-84.40807,16.82179-9.95623,9.42329-59.11938,10.702-81.59916l26.94039-6.97556,26.9404,6.97556c1.27875,22.47978-6.11974,71.64293,10.70211,81.59916.18642,29.04018-16.39928,55.427-18.09824,84.40807,33.545,6.38769,81.67447-1.38812,103.97668-29.59277C331.84167,201.58886,320.04951,111.49293,272.15765,65.53589Z"/>
|
d="M272.15765,65.53589a86.01591,86.01591,0,0,0-20.524-14.33295,103.61294,103.61294,0,0,0-49.8204-11.92284,103.61271,103.61271,0,0,0-49.8198,11.92255A86.01706,86.01706,0,0,0,131.4688,65.53589c-47.89186,45.957-59.684,136.053-53.17653,195.51559,22.30221,28.20465,70.43168,35.98046,103.97675,29.59277-1.699-28.98109-18.28465-55.36789-18.09824-84.40807,16.82179-9.95623,9.42329-59.11938,10.702-81.59916l26.94039-6.97556,26.9404,6.97556c1.27875,22.47978-6.11974,71.64293,10.70211,81.59916.18642,29.04018-16.39928,55.427-18.09824,84.40807,33.545,6.38769,81.67447-1.38812,103.97668-29.59277C331.84167,201.58886,320.04951,111.49293,272.15765,65.53589Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-6"
|
class="cls-6"
|
||||||
d="M237.057,266.23162H166.56944c0,34.9025-27.34,45.73431-43.07576,50.90769,15.73577,67.03868,142.10688,67.03868,156.63909,0C260.78642,311.96593,241.52987,305.94826,237.057,266.23162Z"/>
|
d="M237.057,266.23162H166.56944c0,34.9025-27.34,45.73431-43.07576,50.90769,15.73577,67.03868,142.10688,67.03868,156.63909,0C260.78642,311.96593,241.52987,305.94826,237.057,266.23162Z"
|
||||||
|
/>
|
||||||
<ellipse
|
<ellipse
|
||||||
class="cls-7"
|
class="cls-7"
|
||||||
cx="202.35227"
|
cx="202.35227"
|
||||||
cy="179.47219"
|
cy="179.47219"
|
||||||
rx="79.23803"
|
rx="79.23803"
|
||||||
ry="97.02616"/>
|
ry="97.02616"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-8"
|
class="cls-8"
|
||||||
d="M117.61519,154.166c10.8764-3.25836,22.30778,5.29762,25.51206,19.09451,3.20424,13.7965-3.02464,27.64251-13.90108,30.90087-10.87644,3.25678-22.30919-5.29877-25.51339-19.09389-3.20425-13.79708,3.026-27.64273,13.90241-30.90149Z"/>
|
d="M117.61519,154.166c10.8764-3.25836,22.30778,5.29762,25.51206,19.09451,3.20424,13.7965-3.02464,27.64251-13.90108,30.90087-10.87644,3.25678-22.30919-5.29877-25.51339-19.09389-3.20425-13.79708,3.026-27.64273,13.90241-30.90149Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-5"
|
class="cls-5"
|
||||||
d="M158.77973,88.35379c34.35007,53.44875,83.71361,66.59188,126.44529,82.83956C322.20435,145.19484,244.7734,11.96688,158.77973,88.35379Z"/>
|
d="M158.77973,88.35379c34.35007,53.44875,83.71361,66.59188,126.44529,82.83956C322.20435,145.19484,244.7734,11.96688,158.77973,88.35379Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-5"
|
class="cls-5"
|
||||||
d="M181.50651,94.88021c-10.83147,33.057-30.31262,48.8307-55.51284,58.59347C109.4863,115.38906,134.25941,72.625,181.50651,94.88021Z"/>
|
d="M181.50651,94.88021c-10.83147,33.057-30.31262,48.8307-55.51284,58.59347C109.4863,115.38906,134.25941,72.625,181.50651,94.88021Z"
|
||||||
|
/>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,18 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M22.64,5.3a8.38,8.38,0,0,0-8.37,8.37V86.33a8.38,8.38,0,0,0,8.37,8.37H77.36a8.38,8.38,0,0,0,8.37-8.37v-57L61.39,5.3ZM79.17,88.08a2.74,2.74,0,0,1-2.11.94H22.34a3,3,0,0,1-3-3V13.37a3,3,0,0,1,3-3H54V28.32a7.78,7.78,0,0,0,7.77,7.77H79.75V85.73A2.85,2.85,0,0,1,79.17,88.08ZM62.11,31a2.34,2.34,0,0,1-2.39-2.39V11.15L79.58,31Z"/>
|
d="M22.64,5.3a8.38,8.38,0,0,0-8.37,8.37V86.33a8.38,8.38,0,0,0,8.37,8.37H77.36a8.38,8.38,0,0,0,8.37-8.37v-57L61.39,5.3ZM79.17,88.08a2.74,2.74,0,0,1-2.11.94H22.34a3,3,0,0,1-3-3V13.37a3,3,0,0,1,3-3H54V28.32a7.78,7.78,0,0,0,7.77,7.77H79.75V85.73A2.85,2.85,0,0,1,79.17,88.08ZM62.11,31a2.34,2.34,0,0,1-2.39-2.39V11.15L79.58,31Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M61.81,36.1A7.78,7.78,0,0,1,54,28.32V10.38H22.34a3,3,0,0,0-3,3V86a3,3,0,0,0,3,3H77.06a2.74,2.74,0,0,0,2.11-.94,2.85,2.85,0,0,0,.59-2.35V36.1Z"
|
d="M61.81,36.1A7.78,7.78,0,0,1,54,28.32V10.38H22.34a3,3,0,0,0-3,3V86a3,3,0,0,0,3,3H77.06a2.74,2.74,0,0,0,2.11-.94,2.85,2.85,0,0,0,.59-2.35V36.1Z"
|
||||||
style="fill:#fff"/>
|
style="fill:#fff"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M59.72,28.62A2.34,2.34,0,0,0,62.11,31H79.58L59.72,11.15Z"
|
d="M59.72,28.62A2.34,2.34,0,0,0,62.11,31H79.58L59.72,11.15Z"
|
||||||
style="fill:#fff"/>
|
style="fill:#fff"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,33 +2,38 @@
|
||||||
<svg
|
<svg
|
||||||
viewBox="0 0 51 51"
|
viewBox="0 0 51 51"
|
||||||
fill="none"
|
fill="none"
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
<rect
|
<rect
|
||||||
width="51"
|
width="51"
|
||||||
height="51"
|
height="51"
|
||||||
fill="white"/>
|
fill="white"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
fill-rule="evenodd"
|
fill-rule="evenodd"
|
||||||
clip-rule="evenodd"
|
clip-rule="evenodd"
|
||||||
d="M12.185 4C9.87483 4.00276 8.00276 5.87483 8 8.185V44.515C8.00276 46.8252 9.87483 48.6972 12.185 48.7H39.545C41.8552 48.6972 43.7272 46.8252 43.73 44.515V16.015L31.56 4H12.185ZM40.45 45.39C40.1848 45.6945 39.7987 45.8665 39.395 45.86H12.035C11.2066 45.86 10.535 45.1884 10.535 44.36V8.035C10.535 7.20657 11.2066 6.535 12.035 6.535H27.865V15.51C27.8678 17.6545 29.6055 19.3922 31.75 19.395H40.74V44.215C40.8227 44.6303 40.7164 45.0609 40.45 45.39ZM31.0674 16.5076C31.293 16.7332 31.601 16.8569 31.92 16.85H40.655L30.725 6.925V15.655C30.7181 15.974 30.8418 16.282 31.0674 16.5076Z"
|
d="M12.185 4C9.87483 4.00276 8.00276 5.87483 8 8.185V44.515C8.00276 46.8252 9.87483 48.6972 12.185 48.7H39.545C41.8552 48.6972 43.7272 46.8252 43.73 44.515V16.015L31.56 4H12.185ZM40.45 45.39C40.1848 45.6945 39.7987 45.8665 39.395 45.86H12.035C11.2066 45.86 10.535 45.1884 10.535 44.36V8.035C10.535 7.20657 11.2066 6.535 12.035 6.535H27.865V15.51C27.8678 17.6545 29.6055 19.3922 31.75 19.395H40.74V44.215C40.8227 44.6303 40.7164 45.0609 40.45 45.39ZM31.0674 16.5076C31.293 16.7332 31.601 16.8569 31.92 16.85H40.655L30.725 6.925V15.655C30.7181 15.974 30.8418 16.282 31.0674 16.5076Z"
|
||||||
fill="#333333"/>
|
fill="#333333"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
fill-rule="evenodd"
|
fill-rule="evenodd"
|
||||||
clip-rule="evenodd"
|
clip-rule="evenodd"
|
||||||
d="M15 26.25C15 25.5596 15.5596 25 16.25 25H35.75C36.4404 25 37 25.5596 37 26.25C37 26.9404 36.4404 27.5 35.75 27.5H16.25C15.5596 27.5 15 26.9404 15 26.25Z"
|
d="M15 26.25C15 25.5596 15.5596 25 16.25 25H35.75C36.4404 25 37 25.5596 37 26.25C37 26.9404 36.4404 27.5 35.75 27.5H16.25C15.5596 27.5 15 26.9404 15 26.25Z"
|
||||||
fill="#333333"/>
|
fill="#333333"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
fill-rule="evenodd"
|
fill-rule="evenodd"
|
||||||
clip-rule="evenodd"
|
clip-rule="evenodd"
|
||||||
d="M15 33.25C15 32.5596 15.5596 32 16.25 32H35.75C36.4404 32 37 32.5596 37 33.25C37 33.9404 36.4404 34.5 35.75 34.5H16.25C15.5596 34.5 15 33.9404 15 33.25Z"
|
d="M15 33.25C15 32.5596 15.5596 32 16.25 32H35.75C36.4404 32 37 32.5596 37 33.25C37 33.9404 36.4404 34.5 35.75 34.5H16.25C15.5596 34.5 15 33.9404 15 33.25Z"
|
||||||
fill="#333333"/>
|
fill="#333333"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
fill-rule="evenodd"
|
fill-rule="evenodd"
|
||||||
clip-rule="evenodd"
|
clip-rule="evenodd"
|
||||||
d="M15 40.25C15 39.5596 15.5596 39 16.25 39H35.75C36.4404 39 37 39.5596 37 40.25C37 40.9404 36.4404 41.5 35.75 41.5H16.25C15.5596 41.5 15 40.9404 15 40.25Z"
|
d="M15 40.25C15 39.5596 15.5596 39 16.25 39H35.75C36.4404 39 37 39.5596 37 40.25C37 40.9404 36.4404 41.5 35.75 41.5H16.25C15.5596 41.5 15 40.9404 15 40.25Z"
|
||||||
fill="#333333"/>
|
fill="#333333"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
|
||||||
|
|
@ -1,81 +1,106 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 79.6006 25.5117">
|
viewBox="0 0 79.6006 25.5117"
|
||||||
|
>
|
||||||
<g id="bild_wortmarke">
|
<g id="bild_wortmarke">
|
||||||
<path d="M42.6597,6.811h8.1616V9.2915H45.6001v2.6211H50.041v2.46H45.6001v3.0009h5.4214V19.854H42.6597Z"/>
|
<path d="M42.6597,6.811h8.1616V9.2915H45.6001v2.6211H50.041v2.46H45.6001v3.0009h5.4214V19.854H42.6597Z" />
|
||||||
<path d="M54.9195,6.811h2.9404v5.0215h4.5005V6.811h2.9609V19.854H62.3604V14.4126H57.8599V19.854H54.9195Z"/>
|
<path d="M54.9195,6.811h2.9404v5.0215h4.5005V6.811h2.9609V19.854H62.3604V14.4126H57.8599V19.854H54.9195Z" />
|
||||||
<path
|
<path
|
||||||
d="M69.6983,6.811h4.4609c2.7012,0,4.8018.7403,4.8018,3.2412a2.84374,2.84374,0,0,1-2.1807,2.8204v.08c1.8604.3399,2.8203,1.3204,2.8203,3.0606,0,2.6601-2.2402,3.8408-5.0605,3.8408H69.6983Zm4.3213,5.2618c1.4404,0,2.0605-.6202,2.0605-1.6006s-.6602-1.3809-2.041-1.3809H72.6397v2.9815Zm.2802,5.5009c1.5996,0,2.42-.6006,2.42-1.7802,0-1.1407-.7999-1.6407-2.42-1.6407H72.6397v3.4209Z"/>
|
d="M69.6983,6.811h4.4609c2.7012,0,4.8018.7403,4.8018,3.2412a2.84374,2.84374,0,0,1-2.1807,2.8204v.08c1.8604.3399,2.8203,1.3204,2.8203,3.0606,0,2.6601-2.2402,3.8408-5.0605,3.8408H69.6983Zm4.3213,5.2618c1.4404,0,2.0605-.6202,2.0605-1.6006s-.6602-1.3809-2.041-1.3809H72.6397v2.9815Zm.2802,5.5009c1.5996,0,2.42-.6006,2.42-1.7802,0-1.1407-.7999-1.6407-2.42-1.6407H72.6397v3.4209Z"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
points="7.087 0 0 4.252 7.087 8.504 7.087 0"/>
|
points="7.087 0 0 4.252 7.087 8.504 7.087 0"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
points="7.087 8.504 14.173 4.252 7.087 0 7.087 8.504"/>
|
points="7.087 8.504 14.173 4.252 7.087 0 7.087 8.504"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-2"
|
class="cls-2"
|
||||||
points="7.087 17.008 0 21.26 7.087 25.512 7.087 17.008"/>
|
points="7.087 17.008 0 21.26 7.087 25.512 7.087 17.008"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-2"
|
class="cls-2"
|
||||||
points="7.087 25.512 14.173 21.26 7.087 17.008 7.087 25.512"/>
|
points="7.087 25.512 14.173 21.26 7.087 17.008 7.087 25.512"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
points="7.087 8.511 7.093 8.507 7.087 8.504 7.087 8.511"/>
|
points="7.087 8.511 7.093 8.507 7.087 8.504 7.087 8.511"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-3"
|
class="cls-3"
|
||||||
points="0 4.252 0 12.756 7.087 8.504 0 4.252"/>
|
points="0 4.252 0 12.756 7.087 8.504 0 4.252"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-4"
|
class="cls-4"
|
||||||
points="7.087 8.504 7.087 17.008 14.173 12.756 7.087 8.504"/>
|
points="7.087 8.504 7.087 17.008 14.173 12.756 7.087 8.504"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-5"
|
class="cls-5"
|
||||||
points="7.087 8.504 7.087 17.008 0 12.756 7.087 8.504"/>
|
points="7.087 8.504 7.087 17.008 0 12.756 7.087 8.504"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-5"
|
class="cls-5"
|
||||||
points="14.173 12.756 14.173 4.252 7.087 8.504 14.173 12.756"/>
|
points="14.173 12.756 14.173 4.252 7.087 8.504 14.173 12.756"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-2"
|
class="cls-2"
|
||||||
points="0 12.756 0 21.26 7.087 17.008 0 12.756"/>
|
points="0 12.756 0 21.26 7.087 17.008 0 12.756"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-6"
|
class="cls-6"
|
||||||
points="14.173 21.26 14.173 12.756 7.087 17.008 14.173 21.26"/>
|
points="14.173 21.26 14.173 12.756 7.087 17.008 14.173 21.26"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-7"
|
class="cls-7"
|
||||||
points="21.26 0 14.173 4.252 21.26 8.504 21.26 0"/>
|
points="21.26 0 14.173 4.252 21.26 8.504 21.26 0"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-7"
|
class="cls-7"
|
||||||
points="21.26 8.504 28.347 4.252 21.26 0 21.26 8.504"/>
|
points="21.26 8.504 28.347 4.252 21.26 0 21.26 8.504"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-8"
|
class="cls-8"
|
||||||
points="21.26 17.008 14.173 21.26 21.26 25.512 21.26 17.008"/>
|
points="21.26 17.008 14.173 21.26 21.26 25.512 21.26 17.008"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-8"
|
class="cls-8"
|
||||||
points="21.26 25.512 28.347 21.26 21.26 17.008 21.26 25.512"/>
|
points="21.26 25.512 28.347 21.26 21.26 17.008 21.26 25.512"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
points="21.26 8.511 21.266 8.507 21.26 8.504 21.26 8.511"/>
|
points="21.26 8.511 21.266 8.507 21.26 8.504 21.26 8.511"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-9"
|
class="cls-9"
|
||||||
points="14.173 4.252 14.173 12.756 21.26 8.504 14.173 4.252"/>
|
points="14.173 4.252 14.173 12.756 21.26 8.504 14.173 4.252"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-10"
|
class="cls-10"
|
||||||
points="21.26 8.504 21.26 17.008 28.347 12.756 21.26 8.504"/>
|
points="21.26 8.504 21.26 17.008 28.347 12.756 21.26 8.504"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-9"
|
class="cls-9"
|
||||||
points="21.26 8.504 21.26 17.008 14.173 12.756 21.26 8.504"/>
|
points="21.26 8.504 21.26 17.008 14.173 12.756 21.26 8.504"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-11"
|
class="cls-11"
|
||||||
points="28.347 12.756 28.347 4.252 21.26 8.504 28.347 12.756"/>
|
points="28.347 12.756 28.347 4.252 21.26 8.504 28.347 12.756"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-6"
|
class="cls-6"
|
||||||
points="14.173 12.756 14.173 21.26 21.26 17.008 14.173 12.756"/>
|
points="14.173 12.756 14.173 21.26 21.26 17.008 14.173 12.756"
|
||||||
|
/>
|
||||||
<polygon
|
<polygon
|
||||||
class="cls-8"
|
class="cls-8"
|
||||||
points="28.347 21.26 28.347 12.756 21.26 17.008 28.347 21.26"/>
|
points="28.347 21.26 28.347 12.756 21.26 17.008 28.347 21.26"
|
||||||
|
/>
|
||||||
<polyline
|
<polyline
|
||||||
class="cls-12"
|
class="cls-12"
|
||||||
points="26.794 11.486 26.794 14.04 23.815 14.04 23.815 17.02 21.26 17.02 21.26 14.04 18.28 14.04 18.28 11.486 21.26 11.486 21.26 8.506 23.814 8.506 23.815 11.486 26.794 11.486"/>
|
points="26.794 11.486 26.794 14.04 23.815 14.04 23.815 17.02 21.26 17.02 21.26 14.04 18.28 14.04 18.28 11.486 21.26 11.486 21.26 8.506 23.814 8.506 23.815 11.486 26.794 11.486"
|
||||||
|
/>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<circle
|
<circle
|
||||||
cx="18.75"
|
cx="18.75"
|
||||||
cy="50"
|
cy="50"
|
||||||
r="5"/>
|
r="5"
|
||||||
|
/>
|
||||||
<circle
|
<circle
|
||||||
cx="50"
|
cx="50"
|
||||||
cy="50"
|
cy="50"
|
||||||
r="5"/>
|
r="5"
|
||||||
|
/>
|
||||||
<circle
|
<circle
|
||||||
cx="81.25"
|
cx="81.25"
|
||||||
cy="50"
|
cy="50"
|
||||||
r="5"/>
|
r="5"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,10 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape">
|
id="shape"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M99.5,48.11a56.85,56.85,0,0,0-99,0,3.84,3.84,0,0,0,0,3.79,56.85,56.85,0,0,0,99,0A3.84,3.84,0,0,0,99.5,48.11ZM50,30.75A12.31,12.31,0,1,1,37.69,43.06,12.32,12.32,0,0,1,50,30.75Zm0,42.34A49.28,49.28,0,0,1,8.32,50,49.3,49.3,0,0,1,35.75,29a20,20,0,1,0,28.5,0A49.3,49.3,0,0,1,91.68,50,49.28,49.28,0,0,1,50,73.09Z"/>
|
d="M99.5,48.11a56.85,56.85,0,0,0-99,0,3.84,3.84,0,0,0,0,3.79,56.85,56.85,0,0,0,99,0A3.84,3.84,0,0,0,99.5,48.11ZM50,30.75A12.31,12.31,0,1,1,37.69,43.06,12.32,12.32,0,0,1,50,30.75Zm0,42.34A49.28,49.28,0,0,1,8.32,50,49.3,49.3,0,0,1,35.75,29a20,20,0,1,0,28.5,0A49.3,49.3,0,0,1,91.68,50,49.28,49.28,0,0,1,50,73.09Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,15 +2,20 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape">
|
id="shape"
|
||||||
|
>
|
||||||
<title>group</title>
|
<title>group</title>
|
||||||
<path
|
<path
|
||||||
d="M84.56,47H71.69a15.5,15.5,0,0,0-7.63,2,15.85,15.85,0,0,0-5,4.46,15.61,15.61,0,0,0-2.62-.22H43.57a15.51,15.51,0,0,0-2.6.22A15.85,15.85,0,0,0,36,49a15.5,15.5,0,0,0-7.63-2H15.49A15.66,15.66,0,0,0-.1,62.55v8.73A1.77,1.77,0,0,0,1.66,73H28v4.49a1.76,1.76,0,0,0,1.76,1.76H70.28A1.76,1.76,0,0,0,72,77.52V73H98.34a1.77,1.77,0,0,0,1.76-1.76V62.55A15.66,15.66,0,0,0,84.56,47ZM72,64.5V64l-.17-.48a15.8,15.8,0,0,0-8.39-8.85A12.31,12.31,0,0,1,65.79,52a12,12,0,0,1,5.88-1.55H84.56A12.13,12.13,0,0,1,96.62,62.55v7H72V64.8ZM31.52,66.22l.26-1a12.12,12.12,0,0,1,11.47-8.33l.36-.18H56.46a12.15,12.15,0,0,1,12,10.51,3,3,0,0,0,.07.77v7.73h-37V66.22Zm5.83-11.68A15.68,15.68,0,0,0,28.12,67.3v2.2H3.43v-7A12.13,12.13,0,0,1,15.49,50.49H28.36A12,12,0,0,1,34.24,52,12.22,12.22,0,0,1,37.35,54.54Z"/>
|
d="M84.56,47H71.69a15.5,15.5,0,0,0-7.63,2,15.85,15.85,0,0,0-5,4.46,15.61,15.61,0,0,0-2.62-.22H43.57a15.51,15.51,0,0,0-2.6.22A15.85,15.85,0,0,0,36,49a15.5,15.5,0,0,0-7.63-2H15.49A15.66,15.66,0,0,0-.1,62.55v8.73A1.77,1.77,0,0,0,1.66,73H28v4.49a1.76,1.76,0,0,0,1.76,1.76H70.28A1.76,1.76,0,0,0,72,77.52V73H98.34a1.77,1.77,0,0,0,1.76-1.76V62.55A15.66,15.66,0,0,0,84.56,47ZM72,64.5V64l-.17-.48a15.8,15.8,0,0,0-8.39-8.85A12.31,12.31,0,0,1,65.79,52a12,12,0,0,1,5.88-1.55H84.56A12.13,12.13,0,0,1,96.62,62.55v7H72V64.8ZM31.52,66.22l.26-1a12.12,12.12,0,0,1,11.47-8.33l.36-.18H56.46a12.15,12.15,0,0,1,12,10.51,3,3,0,0,0,.07.77v7.73h-37V66.22Zm5.83-11.68A15.68,15.68,0,0,0,28.12,67.3v2.2H3.43v-7A12.13,12.13,0,0,1,15.49,50.49H28.36A12,12,0,0,1,34.24,52,12.22,12.22,0,0,1,37.35,54.54Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M21.89,44.35h0a11.81,11.81,0,0,0,0-23.63h0a11.81,11.81,0,0,0,0,23.63Zm0-3.54h0a8.29,8.29,0,1,1,5.86-2.43A8.23,8.23,0,0,1,21.91,40.82Z"/>
|
d="M21.89,44.35h0a11.81,11.81,0,0,0,0-23.63h0a11.81,11.81,0,0,0,0,23.63Zm0-3.54h0a8.29,8.29,0,1,1,5.86-2.43A8.23,8.23,0,0,1,21.91,40.82Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M78.11,44.34h0a11.81,11.81,0,0,0,0-23.63h0a11.81,11.81,0,0,0,0,23.63ZM69.84,32.53A8.29,8.29,0,1,1,84,38.38a8.23,8.23,0,0,1-5.86,2.43h0a8.29,8.29,0,0,1-8.29-8.28Z"/>
|
d="M78.11,44.34h0a11.81,11.81,0,0,0,0-23.63h0a11.81,11.81,0,0,0,0,23.63ZM69.84,32.53A8.29,8.29,0,1,1,84,38.38a8.23,8.23,0,0,1-5.86,2.43h0a8.29,8.29,0,0,1-8.29-8.28Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M50,50.56A11.8,11.8,0,1,0,50,27h0a11.8,11.8,0,1,0,0,23.6ZM41.74,38.79A8.29,8.29,0,0,1,50,30.5h0a8.29,8.29,0,0,1,0,16.58h0A8.3,8.3,0,0,1,41.74,38.79Z"/>
|
d="M50,50.56A11.8,11.8,0,1,0,50,27h0a11.8,11.8,0,1,0,0,23.6ZM41.74,38.79A8.29,8.29,0,0,1,50,30.5h0a8.29,8.29,0,0,1,0,16.58h0A8.3,8.3,0,0,1,41.74,38.79Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,10 @@
|
||||||
width="100"
|
width="100"
|
||||||
height="100"
|
height="100"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape">
|
id="shape"
|
||||||
<path d="M82,21H18a3,3,0,0,1,0-6H82a3,3,0,0,1,0,6Z"/>
|
>
|
||||||
<path d="M82,85H18a3,3,0,0,1,0-6H82a3,3,0,0,1,0,6Z"/>
|
<path d="M82,21H18a3,3,0,0,1,0-6H82a3,3,0,0,1,0,6Z" />
|
||||||
<path d="M82,53H18a3,3,0,0,1,0-6H82a3,3,0,0,1,0,6Z"/>
|
<path d="M82,85H18a3,3,0,0,1,0-6H82a3,3,0,0,1,0,6Z" />
|
||||||
|
<path d="M82,53H18a3,3,0,0,1,0-6H82a3,3,0,0,1,0,6Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -3,72 +3,93 @@
|
||||||
data-name="Ebene 1"
|
data-name="Ebene 1"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 147.39503 34.72434"
|
viewBox="0 0 147.39503 34.72434"
|
||||||
id="Ebene_1">
|
id="Ebene_1"
|
||||||
|
>
|
||||||
<circle
|
<circle
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
cx="17.36217"
|
cx="17.36217"
|
||||||
cy="17.36217"
|
cy="17.36217"
|
||||||
r="17.36217"/>
|
r="17.36217"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M52.4432,8.634a4.55121,4.55121,0,0,0-.89344-1.506,3.95842,3.95842,0,0,0-1.37354-.97187,4.42834,4.42834,0,0,0-1.7625-.34656,4.00352,4.00352,0,0,0-1.80914.40273,3.454,3.454,0,0,0-1.30783,1.14356h-.03922V2.59971H42.62491V17.82914h2.63262V10.86921a3.046,3.046,0,0,1,.17382-1.03228,2.49255,2.49255,0,0,1,.49812-.8468,2.33973,2.33973,0,0,1,.79169-.56277,2.52558,2.52558,0,0,1,1.03016-.20561,2.30456,2.30456,0,0,1,1.72223.68041,2.663,2.663,0,0,1,.66028,1.9236v7.00338h2.63262V10.60425A5.72892,5.72892,0,0,0,52.4432,8.634Z"/>
|
d="M52.4432,8.634a4.55121,4.55121,0,0,0-.89344-1.506,3.95842,3.95842,0,0,0-1.37354-.97187,4.42834,4.42834,0,0,0-1.7625-.34656,4.00352,4.00352,0,0,0-1.80914.40273,3.454,3.454,0,0,0-1.30783,1.14356h-.03922V2.59971H42.62491V17.82914h2.63262V10.86921a3.046,3.046,0,0,1,.17382-1.03228,2.49255,2.49255,0,0,1,.49812-.8468,2.33973,2.33973,0,0,1,.79169-.56277,2.52558,2.52558,0,0,1,1.03016-.20561,2.30456,2.30456,0,0,1,1.72223.68041,2.663,2.663,0,0,1,.66028,1.9236v7.00338h2.63262V10.60425A5.72892,5.72892,0,0,0,52.4432,8.634Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M65.73936,9.3865a5.357,5.357,0,0,0-1.081-1.8494A5.22188,5.22188,0,0,0,62.9096,6.278a5.72948,5.72948,0,0,0-2.37084-.46844,6.03155,6.03155,0,0,0-2.26911.41333,4.92935,4.92935,0,0,0-1.7625,1.19125,5.3972,5.3972,0,0,0-1.13508,1.91618,7.81512,7.81512,0,0,0-.40062,2.59977,7.81313,7.81313,0,0,0,.40062,2.59872A5.37548,5.37548,0,0,0,56.50715,16.445a4.91636,4.91636,0,0,0,1.7837,1.19338,6.37091,6.37091,0,0,0,2.33587.41121,6.1752,6.1752,0,0,0,1.95857-.29039,5.0312,5.0312,0,0,0,1.51557-.7917,4.95493,4.95493,0,0,0,1.09162-1.17005,5.74691,5.74691,0,0,0,.69-1.42442l.02013-.06041H63.05586l-.01378.01908a4.05,4.05,0,0,1-.95067.939,2.503,2.503,0,0,1-1.44243.3667,2.73105,2.73105,0,0,1-2.07515-.81289,3.29407,3.29407,0,0,1-.85635-2.07515h8.272l.00636-.03922c.01378-.089.02861-.19183.04345-.31053.01484-.1028.02968-.22151.04451-.354a4.07907,4.07907,0,0,0,.02332-.44725A6.72183,6.72183,0,0,0,65.73936,9.3865Zm-5.2006-1.16475a2.61117,2.61117,0,0,1,1.94373.71538,3.20654,3.20654,0,0,1,.87224,1.73071H57.7249a3.3678,3.3678,0,0,1,.94643-1.77416A2.62777,2.62777,0,0,1,60.53876,8.22175Z"/>
|
d="M65.73936,9.3865a5.357,5.357,0,0,0-1.081-1.8494A5.22188,5.22188,0,0,0,62.9096,6.278a5.72948,5.72948,0,0,0-2.37084-.46844,6.03155,6.03155,0,0,0-2.26911.41333,4.92935,4.92935,0,0,0-1.7625,1.19125,5.3972,5.3972,0,0,0-1.13508,1.91618,7.81512,7.81512,0,0,0-.40062,2.59977,7.81313,7.81313,0,0,0,.40062,2.59872A5.37548,5.37548,0,0,0,56.50715,16.445a4.91636,4.91636,0,0,0,1.7837,1.19338,6.37091,6.37091,0,0,0,2.33587.41121,6.1752,6.1752,0,0,0,1.95857-.29039,5.0312,5.0312,0,0,0,1.51557-.7917,4.95493,4.95493,0,0,0,1.09162-1.17005,5.74691,5.74691,0,0,0,.69-1.42442l.02013-.06041H63.05586l-.01378.01908a4.05,4.05,0,0,1-.95067.939,2.503,2.503,0,0,1-1.44243.3667,2.73105,2.73105,0,0,1-2.07515-.81289,3.29407,3.29407,0,0,1-.85635-2.07515h8.272l.00636-.03922c.01378-.089.02861-.19183.04345-.31053.01484-.1028.02968-.22151.04451-.354a4.07907,4.07907,0,0,0,.02332-.44725A6.72183,6.72183,0,0,0,65.73936,9.3865Zm-5.2006-1.16475a2.61117,2.61117,0,0,1,1.94373.71538,3.20654,3.20654,0,0,1,.87224,1.73071H57.7249a3.3678,3.3678,0,0,1,.94643-1.77416A2.62777,2.62777,0,0,1,60.53876,8.22175Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M79.14786,9.29748A5.456,5.456,0,0,0,78.0912,7.38236a4.5326,4.5326,0,0,0-1.61836-1.17112,5.23851,5.23851,0,0,0-2.072-.40167,4.12277,4.12277,0,0,0-2.06667.50342,4.59474,4.59474,0,0,0-1.37884,1.1531h-.05088l-.32431-1.4-.00741-.036h-2.1822V21.37068h2.63368v-4.8674h.03816a2.65765,2.65765,0,0,0,.45891.5066,3.83135,3.83135,0,0,0,.74824.514,4.59617,4.59617,0,0,0,.97081.38048,4.44481,4.44481,0,0,0,1.16051.1452,5.23834,5.23834,0,0,0,2.072-.40168,4.53245,4.53245,0,0,0,1.61836-1.17111,5.43932,5.43932,0,0,0,1.05666-1.91512,8.40143,8.40143,0,0,0,.37942-2.63157A8.41306,8.41306,0,0,0,79.14786,9.29748ZM73.95891,8.22175a2.87335,2.87335,0,0,1,1.14144.22786,2.62129,2.62129,0,0,1,.93266.68359,3.25549,3.25549,0,0,1,.63166,1.15522,5.2844,5.2844,0,0,1,.22892,1.64168,5.29386,5.29386,0,0,1-.22892,1.64169,3.25948,3.25948,0,0,1-.63166,1.15415,2.59368,2.59368,0,0,1-.93266.6836,2.97289,2.97289,0,0,1-2.28288,0,2.59373,2.59373,0,0,1-.93265-.6836,3.277,3.277,0,0,1-.63166-1.15521,5.28178,5.28178,0,0,1-.22893-1.64063,5.28409,5.28409,0,0,1,.22893-1.64168,3.27711,3.27711,0,0,1,.63166-1.15522,2.62134,2.62134,0,0,1,.93265-.68359A2.87342,2.87342,0,0,1,73.95891,8.22175Z"/>
|
d="M79.14786,9.29748A5.456,5.456,0,0,0,78.0912,7.38236a4.5326,4.5326,0,0,0-1.61836-1.17112,5.23851,5.23851,0,0,0-2.072-.40167,4.12277,4.12277,0,0,0-2.06667.50342,4.59474,4.59474,0,0,0-1.37884,1.1531h-.05088l-.32431-1.4-.00741-.036h-2.1822V21.37068h2.63368v-4.8674h.03816a2.65765,2.65765,0,0,0,.45891.5066,3.83135,3.83135,0,0,0,.74824.514,4.59617,4.59617,0,0,0,.97081.38048,4.44481,4.44481,0,0,0,1.16051.1452,5.23834,5.23834,0,0,0,2.072-.40168,4.53245,4.53245,0,0,0,1.61836-1.17111,5.43932,5.43932,0,0,0,1.05666-1.91512,8.40143,8.40143,0,0,0,.37942-2.63157A8.41306,8.41306,0,0,0,79.14786,9.29748ZM73.95891,8.22175a2.87335,2.87335,0,0,1,1.14144.22786,2.62129,2.62129,0,0,1,.93266.68359,3.25549,3.25549,0,0,1,.63166,1.15522,5.2844,5.2844,0,0,1,.22892,1.64168,5.29386,5.29386,0,0,1-.22892,1.64169,3.25948,3.25948,0,0,1-.63166,1.15415,2.59368,2.59368,0,0,1-.93266.6836,2.97289,2.97289,0,0,1-2.28288,0,2.59373,2.59373,0,0,1-.93265-.6836,3.277,3.277,0,0,1-.63166-1.15521,5.28178,5.28178,0,0,1-.22893-1.64063,5.28409,5.28409,0,0,1,.22893-1.64168,3.27711,3.27711,0,0,1,.63166-1.15522,2.62134,2.62134,0,0,1,.93265-.68359A2.87342,2.87342,0,0,1,73.95891,8.22175Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M42.61643,23.24323h1.01v5.18046l3.29714-3.29714h1.27816L44.77,28.55829l3.63311,3.56634H47.125l-3.49851-3.43174v3.43174h-1.01Z"/>
|
d="M42.61643,23.24323h1.01v5.18046l3.29714-3.29714h1.27816L44.77,28.55829l3.63311,3.56634H47.125l-3.49851-3.43174v3.43174h-1.01Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M52.01023,32.25923a3.50763,3.50763,0,0,1-1.30571-.23529,2.72284,2.72284,0,0,1-1.01638-.69949,3.34743,3.34743,0,0,1-.66558-1.1372,5.14225,5.14225,0,0,1,0-3.12227,3.34743,3.34743,0,0,1,.66558-1.1372,2.723,2.723,0,0,1,1.01638-.69949,3.72016,3.72016,0,0,1,2.604,0,2.69623,2.69623,0,0,1,1.02274.69949,3.34936,3.34936,0,0,1,.66663,1.1372,5.16374,5.16374,0,0,1,0,3.12227,3.34936,3.34936,0,0,1-.66663,1.1372,2.69611,2.69611,0,0,1-1.02274.69949A3.52016,3.52016,0,0,1,52.01023,32.25923Zm0-.9422a2.21008,2.21008,0,0,0,.88814-.17487,1.92179,1.92179,0,0,0,.69949-.51826,2.489,2.489,0,0,0,.46421-.84044,4.05861,4.05861,0,0,0,0-2.31468,2.50459,2.50459,0,0,0-.46421-.84151,1.93408,1.93408,0,0,0-.69949-.51826,2.3428,2.3428,0,0,0-1.77628,0,1.94676,1.94676,0,0,0-.70055.51826,2.50476,2.50476,0,0,0-.46421.84151,4.08323,4.08323,0,0,0,0,2.31468,2.48917,2.48917,0,0,0,.46421.84044,1.93431,1.93431,0,0,0,.70055.51826A2.21008,2.21008,0,0,0,52.01023,31.317Z"/>
|
d="M52.01023,32.25923a3.50763,3.50763,0,0,1-1.30571-.23529,2.72284,2.72284,0,0,1-1.01638-.69949,3.34743,3.34743,0,0,1-.66558-1.1372,5.14225,5.14225,0,0,1,0-3.12227,3.34743,3.34743,0,0,1,.66558-1.1372,2.723,2.723,0,0,1,1.01638-.69949,3.72016,3.72016,0,0,1,2.604,0,2.69623,2.69623,0,0,1,1.02274.69949,3.34936,3.34936,0,0,1,.66663,1.1372,5.16374,5.16374,0,0,1,0,3.12227,3.34936,3.34936,0,0,1-.66663,1.1372,2.69611,2.69611,0,0,1-1.02274.69949A3.52016,3.52016,0,0,1,52.01023,32.25923Zm0-.9422a2.21008,2.21008,0,0,0,.88814-.17487,1.92179,1.92179,0,0,0,.69949-.51826,2.489,2.489,0,0,0,.46421-.84044,4.05861,4.05861,0,0,0,0-2.31468,2.50459,2.50459,0,0,0-.46421-.84151,1.93408,1.93408,0,0,0-.69949-.51826,2.3428,2.3428,0,0,0-1.77628,0,1.94676,1.94676,0,0,0-.70055.51826,2.50476,2.50476,0,0,0-.46421.84151,4.08323,4.08323,0,0,0,0,2.31468,2.48917,2.48917,0,0,0,.46421.84044,1.93431,1.93431,0,0,0,.70055.51826A2.21008,2.21008,0,0,0,52.01023,31.317Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M56.86809,25.12655h.80759l.1346.94219h.06677a2.00568,2.00568,0,0,1,.83409-.84045,2.37269,2.37269,0,0,1,1.05029-.23528,2.14389,2.14389,0,0,1,1.18384.336,2.37008,2.37008,0,0,1,.83409.94219h.06783a2.25262,2.25262,0,0,1,.92841-.96869,2.69067,2.69067,0,0,1,1.29194-.30947,2.31173,2.31173,0,0,1,.94219.195,2.25742,2.25742,0,0,1,.77368.55853,2.62232,2.62232,0,0,1,.51826.88814,3.49864,3.49864,0,0,1,.18865,1.18384v4.3061h-1.01v-4.3061a1.9851,1.9851,0,0,0-.45042-1.4,1.52165,1.52165,0,0,0-1.1637-.48435,1.56955,1.56955,0,0,0-.66028.142,1.63624,1.63624,0,0,0-.53839.39638,1.8526,1.8526,0,0,0-.35611.5988,2.11158,2.11158,0,0,0-.12824.74719v4.3061h-1.009v-4.3061a1.98506,1.98506,0,0,0-.45043-1.4,1.52233,1.52233,0,0,0-1.16475-.48435,1.50178,1.50178,0,0,0-.63166.142,1.62552,1.62552,0,0,0-.5384.39638,2.07492,2.07492,0,0,0-.37094.5988,1.962,1.962,0,0,0-.141.74719v4.3061h-1.009Z"/>
|
d="M56.86809,25.12655h.80759l.1346.94219h.06677a2.00568,2.00568,0,0,1,.83409-.84045,2.37269,2.37269,0,0,1,1.05029-.23528,2.14389,2.14389,0,0,1,1.18384.336,2.37008,2.37008,0,0,1,.83409.94219h.06783a2.25262,2.25262,0,0,1,.92841-.96869,2.69067,2.69067,0,0,1,1.29194-.30947,2.31173,2.31173,0,0,1,.94219.195,2.25742,2.25742,0,0,1,.77368.55853,2.62232,2.62232,0,0,1,.51826.88814,3.49864,3.49864,0,0,1,.18865,1.18384v4.3061h-1.01v-4.3061a1.9851,1.9851,0,0,0-.45042-1.4,1.52165,1.52165,0,0,0-1.1637-.48435,1.56955,1.56955,0,0,0-.66028.142,1.63624,1.63624,0,0,0-.53839.39638,1.8526,1.8526,0,0,0-.35611.5988,2.11158,2.11158,0,0,0-.12824.74719v4.3061h-1.009v-4.3061a1.98506,1.98506,0,0,0-.45043-1.4,1.52233,1.52233,0,0,0-1.16475-.48435,1.50178,1.50178,0,0,0-.63166.142,1.62552,1.62552,0,0,0-.5384.39638,2.07492,2.07492,0,0,0-.37094.5988,1.962,1.962,0,0,0-.141.74719v4.3061h-1.009Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M68.39055,25.12655h.80759l.1346.94219h.06677a2.34585,2.34585,0,0,1,.93583-.79381,3.313,3.313,0,0,1,2.56374-.04664,2.60919,2.60919,0,0,1,.95491.69949,3.36014,3.36014,0,0,1,.63272,1.1372,5.43759,5.43759,0,0,1,0,3.12227,3.36014,3.36014,0,0,1-.63272,1.1372,2.60908,2.60908,0,0,1-.95491.69949,3.06349,3.06349,0,0,1-1.21139.23529,2.92848,2.92848,0,0,1-1.31949-.27556,2.53882,2.53882,0,0,1-.90086-.7334h-.06783v3.02508h-1.009ZM71.55309,31.317a1.96128,1.96128,0,0,0,1.56114-.68571,2.99146,2.99146,0,0,0,.59138-2.0052,2.99149,2.99149,0,0,0-.59138-2.00521,2.11774,2.11774,0,0,0-3.12227,0,2.98588,2.98588,0,0,0-.59245,2.00521,2.98585,2.98585,0,0,0,.59245,2.0052A1.95829,1.95829,0,0,0,71.55309,31.317Z"/>
|
d="M68.39055,25.12655h.80759l.1346.94219h.06677a2.34585,2.34585,0,0,1,.93583-.79381,3.313,3.313,0,0,1,2.56374-.04664,2.60919,2.60919,0,0,1,.95491.69949,3.36014,3.36014,0,0,1,.63272,1.1372,5.43759,5.43759,0,0,1,0,3.12227,3.36014,3.36014,0,0,1-.63272,1.1372,2.60908,2.60908,0,0,1-.95491.69949,3.06349,3.06349,0,0,1-1.21139.23529,2.92848,2.92848,0,0,1-1.31949-.27556,2.53882,2.53882,0,0,1-.90086-.7334h-.06783v3.02508h-1.009ZM71.55309,31.317a1.96128,1.96128,0,0,0,1.56114-.68571,2.99146,2.99146,0,0,0,.59138-2.0052,2.99149,2.99149,0,0,0-.59138-2.00521,2.11774,2.11774,0,0,0-3.12227,0,2.98588,2.98588,0,0,0-.59245,2.00521,2.98585,2.98585,0,0,0,.59245,2.0052A1.95829,1.95829,0,0,0,71.55309,31.317Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M79.36143,32.25923a3.5076,3.5076,0,0,1-1.30571-.23529,2.72284,2.72284,0,0,1-1.01638-.69949,3.34727,3.34727,0,0,1-.66558-1.1372,4.60854,4.60854,0,0,1-.2427-1.56113A4.6949,4.6949,0,0,1,76.3674,27.065a3.25231,3.25231,0,0,1,.65922-1.1372,2.73334,2.73334,0,0,1,1.0026-.69949A3.32709,3.32709,0,0,1,79.2936,24.993a3.047,3.047,0,0,1,1.4.302,3.11509,3.11509,0,0,1,.98882.7811,3.1694,3.1694,0,0,1,.585,1.04923,3.49088,3.49088,0,0,1,.18865,1.09693,2.59583,2.59583,0,0,1-.01271.2692c-.00954.08055-.018.15262-.02756.21515-.00848.07206-.018.13459-.0265.18865H77.14108a2.58155,2.58155,0,0,0,.67935,1.81655,2.13015,2.13015,0,0,0,1.541.60516,1.9818,1.9818,0,0,0,1.81655-1.009h1.07679a2.79418,2.79418,0,0,1-1.11706,1.46045A3.22194,3.22194,0,0,1,79.36143,32.25923Zm2.08575-4.23934a2.3453,2.3453,0,0,0-.69949-1.54735,2.23134,2.23134,0,0,0-2.90712,0,2.33547,2.33547,0,0,0-.69949,1.54735Z"/>
|
d="M79.36143,32.25923a3.5076,3.5076,0,0,1-1.30571-.23529,2.72284,2.72284,0,0,1-1.01638-.69949,3.34727,3.34727,0,0,1-.66558-1.1372,4.60854,4.60854,0,0,1-.2427-1.56113A4.6949,4.6949,0,0,1,76.3674,27.065a3.25231,3.25231,0,0,1,.65922-1.1372,2.73334,2.73334,0,0,1,1.0026-.69949A3.32709,3.32709,0,0,1,79.2936,24.993a3.047,3.047,0,0,1,1.4.302,3.11509,3.11509,0,0,1,.98882.7811,3.1694,3.1694,0,0,1,.585,1.04923,3.49088,3.49088,0,0,1,.18865,1.09693,2.59583,2.59583,0,0,1-.01271.2692c-.00954.08055-.018.15262-.02756.21515-.00848.07206-.018.13459-.0265.18865H77.14108a2.58155,2.58155,0,0,0,.67935,1.81655,2.13015,2.13015,0,0,0,1.541.60516,1.9818,1.9818,0,0,0,1.81655-1.009h1.07679a2.79418,2.79418,0,0,1-1.11706,1.46045A3.22194,3.22194,0,0,1,79.36143,32.25923Zm2.08575-4.23934a2.3453,2.3453,0,0,0-.69949-1.54735,2.23134,2.23134,0,0,0-2.90712,0,2.33547,2.33547,0,0,0-.69949,1.54735Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M84.99393,31.63392a1.70429,1.70429,0,0,1-.49176-1.258V26.06874H83.42538v-.94219h1.07679l.1346-1.88332h.87542v1.88332h1.81655v.94219H85.51219V30.3759a.77962.77962,0,0,0,.80653.80654h1.01v.94219H86.25195A1.70186,1.70186,0,0,1,84.99393,31.63392Z"/>
|
d="M84.99393,31.63392a1.70429,1.70429,0,0,1-.49176-1.258V26.06874H83.42538v-.94219h1.07679l.1346-1.88332h.87542v1.88332h1.81655v.94219H85.51219V30.3759a.77962.77962,0,0,0,.80653.80654h1.01v.94219H86.25195A1.70186,1.70186,0,0,1,84.99393,31.63392Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M91.58563,32.25923a3.50769,3.50769,0,0,1-1.30572-.23529,2.723,2.723,0,0,1-1.01638-.69949,3.34741,3.34741,0,0,1-.66557-1.1372,4.6083,4.6083,0,0,1-.2427-1.56113A4.6949,4.6949,0,0,1,88.5916,27.065a3.25231,3.25231,0,0,1,.65922-1.1372,2.73334,2.73334,0,0,1,1.0026-.69949A3.32709,3.32709,0,0,1,91.5178,24.993a3.047,3.047,0,0,1,1.4.302,3.11509,3.11509,0,0,1,.98882.7811,3.1694,3.1694,0,0,1,.585,1.04923,3.49088,3.49088,0,0,1,.18865,1.09693,2.59288,2.59288,0,0,1-.01272.2692c-.00953.08055-.018.15262-.02755.21515-.00848.07206-.018.13459-.0265.18865H89.36528a2.58155,2.58155,0,0,0,.67935,1.81655,2.13015,2.13015,0,0,0,1.541.60516,1.9818,1.9818,0,0,0,1.81655-1.009H94.479a2.79418,2.79418,0,0,1-1.11706,1.46045A3.22194,3.22194,0,0,1,91.58563,32.25923Zm2.08575-4.23934a2.3453,2.3453,0,0,0-.69949-1.54735,2.23134,2.23134,0,0,0-2.90712,0,2.33547,2.33547,0,0,0-.69949,1.54735Z"/>
|
d="M91.58563,32.25923a3.50769,3.50769,0,0,1-1.30572-.23529,2.723,2.723,0,0,1-1.01638-.69949,3.34741,3.34741,0,0,1-.66557-1.1372,4.6083,4.6083,0,0,1-.2427-1.56113A4.6949,4.6949,0,0,1,88.5916,27.065a3.25231,3.25231,0,0,1,.65922-1.1372,2.73334,2.73334,0,0,1,1.0026-.69949A3.32709,3.32709,0,0,1,91.5178,24.993a3.047,3.047,0,0,1,1.4.302,3.11509,3.11509,0,0,1,.98882.7811,3.1694,3.1694,0,0,1,.585,1.04923,3.49088,3.49088,0,0,1,.18865,1.09693,2.59288,2.59288,0,0,1-.01272.2692c-.00953.08055-.018.15262-.02755.21515-.00848.07206-.018.13459-.0265.18865H89.36528a2.58155,2.58155,0,0,0,.67935,1.81655,2.13015,2.13015,0,0,0,1.541.60516,1.9818,1.9818,0,0,0,1.81655-1.009H94.479a2.79418,2.79418,0,0,1-1.11706,1.46045A3.22194,3.22194,0,0,1,91.58563,32.25923Zm2.08575-4.23934a2.3453,2.3453,0,0,0-.69949-1.54735,2.23134,2.23134,0,0,0-2.90712,0,2.33547,2.33547,0,0,0-.69949,1.54735Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M96.3745,25.12655h.8076l.13459.94219h.06677a1.9014,1.9014,0,0,1,.90828-.84045,2.84328,2.84328,0,0,1,1.11071-.23528,2.68728,2.68728,0,0,1,1.02909.195,2.43164,2.43164,0,0,1,.83409.55853,2.53811,2.53811,0,0,1,.55854.88814,3.27437,3.27437,0,0,1,.20242,1.18384v4.3061h-1.009v-4.3061a1.88054,1.88054,0,0,0-.49176-1.4,1.71981,1.71981,0,0,0-1.258-.48435,1.8029,1.8029,0,0,0-.74718.15474,2.014,2.014,0,0,0-.59881.41121,1.815,1.815,0,0,0-.39744.59881,1.88894,1.88894,0,0,0-.141.71963v4.3061h-1.009Z"/>
|
d="M96.3745,25.12655h.8076l.13459.94219h.06677a1.9014,1.9014,0,0,1,.90828-.84045,2.84328,2.84328,0,0,1,1.11071-.23528,2.68728,2.68728,0,0,1,1.02909.195,2.43164,2.43164,0,0,1,.83409.55853,2.53811,2.53811,0,0,1,.55854.88814,3.27437,3.27437,0,0,1,.20242,1.18384v4.3061h-1.009v-4.3061a1.88054,1.88054,0,0,0-.49176-1.4,1.71981,1.71981,0,0,0-1.258-.48435,1.8029,1.8029,0,0,0-.74718.15474,2.014,2.014,0,0,0-.59881.41121,1.815,1.815,0,0,0-.39744.59881,1.88894,1.88894,0,0,0-.141.71963v4.3061h-1.009Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M104.7764,31.63392a1.7043,1.7043,0,0,1-.49177-1.258V26.06874h-1.07679v-.94219h1.07679l.1346-1.88332h.87542v1.88332h1.81656v.94219h-1.81656V30.3759a.77964.77964,0,0,0,.80654.80654h1.01v.94219h-1.07679A1.70184,1.70184,0,0,1,104.7764,31.63392Z"/>
|
d="M104.7764,31.63392a1.7043,1.7043,0,0,1-.49177-1.258V26.06874h-1.07679v-.94219h1.07679l.1346-1.88332h.87542v1.88332h1.81656v.94219h-1.81656V30.3759a.77964.77964,0,0,0,.80654.80654h1.01v.94219h-1.07679A1.70184,1.70184,0,0,1,104.7764,31.63392Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M115.14105,32.25923a3.0872,3.0872,0,0,1-1.35234-.28192,2.34409,2.34409,0,0,1-.93478-.79487h-.06783l-.1346.94219h-.80759v-8.8814h1.01V26.002h.06677a2.54267,2.54267,0,0,1,.90192-.7334,2.91289,2.91289,0,0,1,1.31843-.27556,3.05625,3.05625,0,0,1,1.21139.23528,2.61284,2.61284,0,0,1,.956.69949,3.37627,3.37627,0,0,1,.63166,1.1372,5.43736,5.43736,0,0,1,0,3.12227,3.37627,3.37627,0,0,1-.63166,1.1372,2.61273,2.61273,0,0,1-.956.69949A3.05608,3.05608,0,0,1,115.14105,32.25923Zm-.1346-.9422a1.95833,1.95833,0,0,0,1.56114-.68571,2.98585,2.98585,0,0,0,.59245-2.0052,2.98588,2.98588,0,0,0-.59245-2.00521,2.11774,2.11774,0,0,0-3.12227,0,2.99144,2.99144,0,0,0-.59139,2.00521,2.99141,2.99141,0,0,0,.59139,2.0052A1.96127,1.96127,0,0,0,115.00645,31.317Z"/>
|
d="M115.14105,32.25923a3.0872,3.0872,0,0,1-1.35234-.28192,2.34409,2.34409,0,0,1-.93478-.79487h-.06783l-.1346.94219h-.80759v-8.8814h1.01V26.002h.06677a2.54267,2.54267,0,0,1,.90192-.7334,2.91289,2.91289,0,0,1,1.31843-.27556,3.05625,3.05625,0,0,1,1.21139.23528,2.61284,2.61284,0,0,1,.956.69949,3.37627,3.37627,0,0,1,.63166,1.1372,5.43736,5.43736,0,0,1,0,3.12227,3.37627,3.37627,0,0,1-.63166,1.1372,2.61273,2.61273,0,0,1-.956.69949A3.05608,3.05608,0,0,1,115.14105,32.25923Zm-.1346-.9422a1.95833,1.95833,0,0,0,1.56114-.68571,2.98585,2.98585,0,0,0,.59245-2.0052,2.98588,2.98588,0,0,0-.59245-2.00521,2.11774,2.11774,0,0,0-3.12227,0,2.99144,2.99144,0,0,0-.59139,2.00521,2.99141,2.99141,0,0,0,.59139,2.0052A1.96127,1.96127,0,0,0,115.00645,31.317Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M120.392,24.19429a.69831.69831,0,0,1-.50448-.20136.66738.66738,0,0,1-.20878-.49813.69925.69925,0,0,1,.20242-.50448.68231.68231,0,0,1,.51084-.20878.66738.66738,0,0,1,.49813.20878.69925.69925,0,0,1,.20242.50448.68177.68177,0,0,1-.20242.49071A.66349.66349,0,0,1,120.392,24.19429Zm-.51084.93226h1.009v6.99808h-1.009Z"/>
|
d="M120.392,24.19429a.69831.69831,0,0,1-.50448-.20136.66738.66738,0,0,1-.20878-.49813.69925.69925,0,0,1,.20242-.50448.68231.68231,0,0,1,.51084-.20878.66738.66738,0,0,1,.49813.20878.69925.69925,0,0,1,.20242.50448.68177.68177,0,0,1-.20242.49071A.66349.66349,0,0,1,120.392,24.19429Zm-.51084.93226h1.009v6.99808h-1.009Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M123.03591,23.24323h1.01v8.8814h-1.01Z"/>
|
d="M123.03591,23.24323h1.01v8.8814h-1.01Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M128.79071,32.25923a3.05086,3.05086,0,0,1-1.21033-.23529,2.604,2.604,0,0,1-.956-.69949,3.36014,3.36014,0,0,1-.63272-1.1372,5.43759,5.43759,0,0,1,0-3.12227,3.36014,3.36014,0,0,1,.63272-1.1372,2.6041,2.6041,0,0,1,.956-.69949,3.051,3.051,0,0,1,1.21033-.23528,2.91444,2.91444,0,0,1,1.31949.27556,2.53874,2.53874,0,0,1,.90086.7334h.06783V23.24323h1.009v8.8814h-.80759l-.1346-.94219h-.06677a2.34,2.34,0,0,1-.93583.79487A3.084,3.084,0,0,1,128.79071,32.25923Zm.1346-.9422a1.95829,1.95829,0,0,0,1.56113-.68571,2.98585,2.98585,0,0,0,.59245-2.0052,2.98588,2.98588,0,0,0-.59245-2.00521,2.11772,2.11772,0,0,0-3.12226,0,2.99144,2.99144,0,0,0-.59139,2.00521,2.99141,2.99141,0,0,0,.59139,2.0052A1.96124,1.96124,0,0,0,128.92531,31.317Z"/>
|
d="M128.79071,32.25923a3.05086,3.05086,0,0,1-1.21033-.23529,2.604,2.604,0,0,1-.956-.69949,3.36014,3.36014,0,0,1-.63272-1.1372,5.43759,5.43759,0,0,1,0-3.12227,3.36014,3.36014,0,0,1,.63272-1.1372,2.6041,2.6041,0,0,1,.956-.69949,3.051,3.051,0,0,1,1.21033-.23528,2.91444,2.91444,0,0,1,1.31949.27556,2.53874,2.53874,0,0,1,.90086.7334h.06783V23.24323h1.009v8.8814h-.80759l-.1346-.94219h-.06677a2.34,2.34,0,0,1-.93583.79487A3.084,3.084,0,0,1,128.79071,32.25923Zm.1346-.9422a1.95829,1.95829,0,0,0,1.56113-.68571,2.98585,2.98585,0,0,0,.59245-2.0052,2.98588,2.98588,0,0,0-.59245-2.00521,2.11772,2.11772,0,0,0-3.12226,0,2.99144,2.99144,0,0,0-.59139,2.00521,2.99141,2.99141,0,0,0,.59139,2.0052A1.96124,1.96124,0,0,0,128.92531,31.317Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M137.11233,32.25923a3.50763,3.50763,0,0,1-1.30571-.23529,2.72284,2.72284,0,0,1-1.01638-.69949,3.34743,3.34743,0,0,1-.66558-1.1372,4.60854,4.60854,0,0,1-.2427-1.56113,4.6949,4.6949,0,0,1,.23634-1.56114,3.25231,3.25231,0,0,1,.65922-1.1372,2.73334,2.73334,0,0,1,1.0026-.69949,3.32709,3.32709,0,0,1,1.26438-.23528,3.047,3.047,0,0,1,1.4.302,3.11524,3.11524,0,0,1,.98883.7811,3.16955,3.16955,0,0,1,.585,1.04923,3.49088,3.49088,0,0,1,.18865,1.09693,2.59583,2.59583,0,0,1-.01271.2692c-.00954.08055-.018.15262-.02756.21515-.00848.07206-.018.13459-.0265.18865H134.892a2.58155,2.58155,0,0,0,.67935,1.81655,2.13015,2.13015,0,0,0,1.541.60516,1.9818,1.9818,0,0,0,1.81655-1.009h1.0768a2.79424,2.79424,0,0,1-1.11707,1.46045A3.22194,3.22194,0,0,1,137.11233,32.25923Zm2.08575-4.23934a2.3453,2.3453,0,0,0-.69949-1.54735,2.23134,2.23134,0,0,0-2.90712,0,2.33547,2.33547,0,0,0-.69949,1.54735Z"/>
|
d="M137.11233,32.25923a3.50763,3.50763,0,0,1-1.30571-.23529,2.72284,2.72284,0,0,1-1.01638-.69949,3.34743,3.34743,0,0,1-.66558-1.1372,4.60854,4.60854,0,0,1-.2427-1.56113,4.6949,4.6949,0,0,1,.23634-1.56114,3.25231,3.25231,0,0,1,.65922-1.1372,2.73334,2.73334,0,0,1,1.0026-.69949,3.32709,3.32709,0,0,1,1.26438-.23528,3.047,3.047,0,0,1,1.4.302,3.11524,3.11524,0,0,1,.98883.7811,3.16955,3.16955,0,0,1,.585,1.04923,3.49088,3.49088,0,0,1,.18865,1.09693,2.59583,2.59583,0,0,1-.01271.2692c-.00954.08055-.018.15262-.02756.21515-.00848.07206-.018.13459-.0265.18865H134.892a2.58155,2.58155,0,0,0,.67935,1.81655,2.13015,2.13015,0,0,0,1.541.60516,1.9818,1.9818,0,0,0,1.81655-1.009h1.0768a2.79424,2.79424,0,0,1-1.11707,1.46045A3.22194,3.22194,0,0,1,137.11233,32.25923Zm2.08575-4.23934a2.3453,2.3453,0,0,0-.69949-1.54735,2.23134,2.23134,0,0,0-2.90712,0,2.33547,2.33547,0,0,0-.69949,1.54735Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M141.74294,25.12655h.80759l.1346.94219h.06677a1.90132,1.90132,0,0,1,.90828-.84045,2.84327,2.84327,0,0,1,1.1107-.23528,2.68734,2.68734,0,0,1,1.0291.195,2.43174,2.43174,0,0,1,.83409.55853,2.53823,2.53823,0,0,1,.55853.88814,3.27415,3.27415,0,0,1,.20243,1.18384v4.3061h-1.009v-4.3061a1.88054,1.88054,0,0,0-.49177-1.4,1.71979,1.71979,0,0,0-1.258-.48435,1.8029,1.8029,0,0,0-.74718.15474,2.01427,2.01427,0,0,0-.59881.41121,1.81485,1.81485,0,0,0-.39743.59881,1.88875,1.88875,0,0,0-.141.71963v4.3061h-1.009Z"/>
|
d="M141.74294,25.12655h.80759l.1346.94219h.06677a1.90132,1.90132,0,0,1,.90828-.84045,2.84327,2.84327,0,0,1,1.1107-.23528,2.68734,2.68734,0,0,1,1.0291.195,2.43174,2.43174,0,0,1,.83409.55853,2.53823,2.53823,0,0,1,.55853.88814,3.27415,3.27415,0,0,1,.20243,1.18384v4.3061h-1.009v-4.3061a1.88054,1.88054,0,0,0-.49177-1.4,1.71979,1.71979,0,0,0-1.258-.48435,1.8029,1.8029,0,0,0-.74718.15474,2.01427,2.01427,0,0,0-.59881.41121,1.81485,1.81485,0,0,0-.39743.59881,1.88875,1.88875,0,0,0-.141.71963v4.3061h-1.009Z"
|
||||||
|
/>
|
||||||
<rect
|
<rect
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
x="42.62491"
|
x="42.62491"
|
||||||
y="2.59971"
|
y="2.59971"
|
||||||
width="2.63263"
|
width="2.63263"
|
||||||
height="15.22942"/>
|
height="15.22942"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,22 +3,27 @@
|
||||||
viewBox="0 0 65.3274 22.28203"
|
viewBox="0 0 65.3274 22.28203"
|
||||||
data-name="Ebene 1"
|
data-name="Ebene 1"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
id="Ebene_1">
|
id="Ebene_1"
|
||||||
|
>
|
||||||
<title>Zeichenfläche 1</title>
|
<title>Zeichenfläche 1</title>
|
||||||
<circle
|
<circle
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
cx="11.14101"
|
cx="11.14101"
|
||||||
cy="11.14101"
|
cy="11.14101"
|
||||||
r="11.14101"/>
|
r="11.14101"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M38.24333,9.54537a4.55137,4.55137,0,0,0-.89344-1.506,3.95851,3.95851,0,0,0-1.37354-.97187,4.42839,4.42839,0,0,0-1.76251-.34656,4.00351,4.00351,0,0,0-1.80913.40273,3.454,3.454,0,0,0-1.30783,1.14356h-.03922V3.51107H28.425V18.74049h2.63262V11.78056a3.04623,3.04623,0,0,1,.17381-1.03228,2.49273,2.49273,0,0,1,.49813-.8468,2.33973,2.33973,0,0,1,.79169-.56277,2.52554,2.52554,0,0,1,1.03016-.20561,2.30456,2.30456,0,0,1,1.72223.68041,2.663,2.663,0,0,1,.66027,1.9236v7.00338h2.63263V11.5156A5.72892,5.72892,0,0,0,38.24333,9.54537Z"/>
|
d="M38.24333,9.54537a4.55137,4.55137,0,0,0-.89344-1.506,3.95851,3.95851,0,0,0-1.37354-.97187,4.42839,4.42839,0,0,0-1.76251-.34656,4.00351,4.00351,0,0,0-1.80913.40273,3.454,3.454,0,0,0-1.30783,1.14356h-.03922V3.51107H28.425V18.74049h2.63262V11.78056a3.04623,3.04623,0,0,1,.17381-1.03228,2.49273,2.49273,0,0,1,.49813-.8468,2.33973,2.33973,0,0,1,.79169-.56277,2.52554,2.52554,0,0,1,1.03016-.20561,2.30456,2.30456,0,0,1,1.72223.68041,2.663,2.663,0,0,1,.66027,1.9236v7.00338h2.63263V11.5156A5.72892,5.72892,0,0,0,38.24333,9.54537Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M51.53949,10.29785a5.35711,5.35711,0,0,0-1.081-1.8494,5.222,5.222,0,0,0-1.74873-1.25909,5.72952,5.72952,0,0,0-2.37085-.46844,6.03146,6.03146,0,0,0-2.2691.41333,4.92935,4.92935,0,0,0-1.7625,1.19125,5.3972,5.3972,0,0,0-1.13508,1.91618,7.81512,7.81512,0,0,0-.40062,2.59977,7.81313,7.81313,0,0,0,.40062,2.59872,5.37539,5.37539,0,0,0,1.13508,1.91617,4.91636,4.91636,0,0,0,1.7837,1.19338,6.37091,6.37091,0,0,0,2.33587.41121,6.17525,6.17525,0,0,0,1.95857-.29039,5.031,5.031,0,0,0,1.51556-.7917,4.95477,4.95477,0,0,0,1.09163-1.17,5.74653,5.74653,0,0,0,.69-1.42442l.02014-.06041H48.856l-.01378.01908a4.05035,4.05035,0,0,1-.95067.939,2.503,2.503,0,0,1-1.44243.3667,2.73106,2.73106,0,0,1-2.07516-.81289,3.29407,3.29407,0,0,1-.85634-2.07515h8.272l.00636-.03922c.01377-.089.02861-.19183.04345-.31053.01484-.1028.02967-.2215.04451-.354a4.07907,4.07907,0,0,0,.02332-.44725A6.72183,6.72183,0,0,0,51.53949,10.29785ZM46.33888,9.1331a2.61116,2.61116,0,0,1,1.94374.71539,3.20648,3.20648,0,0,1,.87224,1.7307H43.525A3.3678,3.3678,0,0,1,44.47146,9.805,2.62773,2.62773,0,0,1,46.33888,9.1331Z"/>
|
d="M51.53949,10.29785a5.35711,5.35711,0,0,0-1.081-1.8494,5.222,5.222,0,0,0-1.74873-1.25909,5.72952,5.72952,0,0,0-2.37085-.46844,6.03146,6.03146,0,0,0-2.2691.41333,4.92935,4.92935,0,0,0-1.7625,1.19125,5.3972,5.3972,0,0,0-1.13508,1.91618,7.81512,7.81512,0,0,0-.40062,2.59977,7.81313,7.81313,0,0,0,.40062,2.59872,5.37539,5.37539,0,0,0,1.13508,1.91617,4.91636,4.91636,0,0,0,1.7837,1.19338,6.37091,6.37091,0,0,0,2.33587.41121,6.17525,6.17525,0,0,0,1.95857-.29039,5.031,5.031,0,0,0,1.51556-.7917,4.95477,4.95477,0,0,0,1.09163-1.17,5.74653,5.74653,0,0,0,.69-1.42442l.02014-.06041H48.856l-.01378.01908a4.05035,4.05035,0,0,1-.95067.939,2.503,2.503,0,0,1-1.44243.3667,2.73106,2.73106,0,0,1-2.07516-.81289,3.29407,3.29407,0,0,1-.85634-2.07515h8.272l.00636-.03922c.01377-.089.02861-.19183.04345-.31053.01484-.1028.02967-.2215.04451-.354a4.07907,4.07907,0,0,0,.02332-.44725A6.72183,6.72183,0,0,0,51.53949,10.29785ZM46.33888,9.1331a2.61116,2.61116,0,0,1,1.94374.71539,3.20648,3.20648,0,0,1,.87224,1.7307H43.525A3.3678,3.3678,0,0,1,44.47146,9.805,2.62773,2.62773,0,0,1,46.33888,9.1331Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
class="cls-1"
|
class="cls-1"
|
||||||
d="M64.948,10.20883a5.456,5.456,0,0,0-1.05665-1.91512A4.53254,4.53254,0,0,0,62.273,7.12259a5.23843,5.23843,0,0,0-2.072-.40167,4.12271,4.12271,0,0,0-2.06667.50342,4.59491,4.59491,0,0,0-1.37885,1.1531H56.7046l-.32431-1.4-.00742-.036H54.19068V22.282h2.63368v-4.8674h.03816a2.65756,2.65756,0,0,0,.4589.5066,3.83173,3.83173,0,0,0,.74825.514,4.59629,4.59629,0,0,0,.9708.38048,4.445,4.445,0,0,0,1.16052.1452,5.23825,5.23825,0,0,0,2.072-.40168,4.5324,4.5324,0,0,0,1.61837-1.17111A5.43931,5.43931,0,0,0,64.948,15.473a8.40143,8.40143,0,0,0,.37942-2.63157A8.41306,8.41306,0,0,0,64.948,10.20883ZM59.759,9.1331a2.87335,2.87335,0,0,1,1.14144.22786,2.62117,2.62117,0,0,1,.93265.68359,3.25518,3.25518,0,0,1,.63166,1.15522,5.28409,5.28409,0,0,1,.22893,1.64168,5.29354,5.29354,0,0,1-.22893,1.64169,3.25917,3.25917,0,0,1-.63166,1.15415,2.59365,2.59365,0,0,1-.93265.6836,2.97289,2.97289,0,0,1-2.28288,0,2.59365,2.59365,0,0,1-.93265-.6836,3.277,3.277,0,0,1-.63166-1.15521,5.28178,5.28178,0,0,1-.22893-1.64063,5.28409,5.28409,0,0,1,.22893-1.64168,3.27711,3.27711,0,0,1,.63166-1.15522A2.62125,2.62125,0,0,1,58.6176,9.361,2.87335,2.87335,0,0,1,59.759,9.1331Z"/>
|
d="M64.948,10.20883a5.456,5.456,0,0,0-1.05665-1.91512A4.53254,4.53254,0,0,0,62.273,7.12259a5.23843,5.23843,0,0,0-2.072-.40167,4.12271,4.12271,0,0,0-2.06667.50342,4.59491,4.59491,0,0,0-1.37885,1.1531H56.7046l-.32431-1.4-.00742-.036H54.19068V22.282h2.63368v-4.8674h.03816a2.65756,2.65756,0,0,0,.4589.5066,3.83173,3.83173,0,0,0,.74825.514,4.59629,4.59629,0,0,0,.9708.38048,4.445,4.445,0,0,0,1.16052.1452,5.23825,5.23825,0,0,0,2.072-.40168,4.5324,4.5324,0,0,0,1.61837-1.17111A5.43931,5.43931,0,0,0,64.948,15.473a8.40143,8.40143,0,0,0,.37942-2.63157A8.41306,8.41306,0,0,0,64.948,10.20883ZM59.759,9.1331a2.87335,2.87335,0,0,1,1.14144.22786,2.62117,2.62117,0,0,1,.93265.68359,3.25518,3.25518,0,0,1,.63166,1.15522,5.28409,5.28409,0,0,1,.22893,1.64168,5.29354,5.29354,0,0,1-.22893,1.64169,3.25917,3.25917,0,0,1-.63166,1.15415,2.59365,2.59365,0,0,1-.93265.6836,2.97289,2.97289,0,0,1-2.28288,0,2.59365,2.59365,0,0,1-.93265-.6836,3.277,3.277,0,0,1-.63166-1.15521,5.28178,5.28178,0,0,1-.22893-1.64063,5.28409,5.28409,0,0,1,.22893-1.64168,3.27711,3.27711,0,0,1,.63166-1.15522A2.62125,2.62125,0,0,1,58.6176,9.361,2.87335,2.87335,0,0,1,59.759,9.1331Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,13 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape"><title>image</title>
|
id="shape"
|
||||||
|
><title>image</title>
|
||||||
<path
|
<path
|
||||||
d="M93,14.2H7a2,2,0,0,0-2,2v67.5a2,2,0,0,0,2,2H93a2,2,0,0,0,2-2V16.25A2,2,0,0,0,93,14.2ZM42.27,54.37,57.73,69.83a2.09,2.09,0,0,0,2.89,0,2,2,0,0,0,0-2.89l-7-7L67,45.24,90,68.38a2,2,0,0,0,.87.46V81.7H12.18ZM65.36,41,50.7,57l-6.9-6.9A2.05,2.05,0,0,0,41,50L9.09,79V18.3H90.91V63.47L68.26,40.82a2,2,0,0,0-1.47-.53A2.06,2.06,0,0,0,65.36,41Z"/>
|
d="M93,14.2H7a2,2,0,0,0-2,2v67.5a2,2,0,0,0,2,2H93a2,2,0,0,0,2-2V16.25A2,2,0,0,0,93,14.2ZM42.27,54.37,57.73,69.83a2.09,2.09,0,0,0,2.89,0,2,2,0,0,0,0-2.89l-7-7L67,45.24,90,68.38a2,2,0,0,0,.87.46V81.7H12.18ZM65.36,41,50.7,57l-6.9-6.9A2.05,2.05,0,0,0,41,50L9.09,79V18.3H90.91V63.47L68.26,40.82a2,2,0,0,0-1.47-.53A2.06,2.06,0,0,0,65.36,41Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M30.06,31.08a9.05,9.05,0,1,0,9.05,9.06A9.06,9.06,0,0,0,30.06,31.08Zm5,9.05a5,5,0,1,1-5-5A5,5,0,0,1,35,40.13Z"/>
|
d="M30.06,31.08a9.05,9.05,0,1,0,9.05,9.06A9.06,9.06,0,0,0,30.06,31.08Zm5,9.05a5,5,0,1,1-5-5A5,5,0,0,1,35,40.13Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,16 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape">
|
id="shape"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M50,6.48A43.62,43.62,0,0,0,6.56,47.08S6.5,48.46,6.5,50s.06,2.83.06,2.92A43.52,43.52,0,1,0,50,6.48Zm0,82.15A38.62,38.62,0,1,1,88.6,50,38.67,38.67,0,0,1,50,88.62Z"/>
|
d="M50,6.48A43.62,43.62,0,0,0,6.56,47.08S6.5,48.46,6.5,50s.06,2.83.06,2.92A43.52,43.52,0,1,0,50,6.48Zm0,82.15A38.62,38.62,0,1,1,88.6,50,38.67,38.67,0,0,1,50,88.62Z"
|
||||||
<path d="M50,46.17a2.45,2.45,0,0,0-2.45,2.45V72.49a2.45,2.45,0,1,0,4.9,0V48.62A2.45,2.45,0,0,0,50,46.17Z"/>
|
/>
|
||||||
|
<path d="M50,46.17a2.45,2.45,0,0,0-2.45,2.45V72.49a2.45,2.45,0,1,0,4.9,0V48.62A2.45,2.45,0,0,0,50,46.17Z" />
|
||||||
<circle
|
<circle
|
||||||
cx="50"
|
cx="50"
|
||||||
cy="30.56"
|
cy="30.56"
|
||||||
r="3.5"/>
|
r="3.5"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,13 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape"><title>link</title>
|
id="shape"
|
||||||
|
><title>link</title>
|
||||||
<path
|
<path
|
||||||
d="M85.13,14.88a19.12,19.12,0,0,0-27,0l-9.61,9.61a2.68,2.68,0,0,0,3.79,3.8l9.61-9.61A13.73,13.73,0,0,1,81.33,38.08L63.4,56A13.75,13.75,0,0,1,44,56a2.68,2.68,0,0,0-3.79,3.8,19.12,19.12,0,0,0,27,0L85.13,41.88a19.14,19.14,0,0,0,0-27Z"/>
|
d="M85.13,14.88a19.12,19.12,0,0,0-27,0l-9.61,9.61a2.68,2.68,0,0,0,3.79,3.8l9.61-9.61A13.73,13.73,0,0,1,81.33,38.08L63.4,56A13.75,13.75,0,0,1,44,56a2.68,2.68,0,0,0-3.79,3.8,19.12,19.12,0,0,0,27,0L85.13,41.88a19.14,19.14,0,0,0,0-27Z"
|
||||||
|
/>
|
||||||
<path
|
<path
|
||||||
d="M46.61,72.81l-8.53,8.53A13.73,13.73,0,0,1,18.67,61.92L35.55,45A13.78,13.78,0,0,1,55,45a2.75,2.75,0,0,0,3.79,0,2.68,2.68,0,0,0,0-3.79,19.12,19.12,0,0,0-27,0L14.87,58.13a19.09,19.09,0,0,0,27,27L50.4,76.6a2.68,2.68,0,0,0-3.79-3.79Z"/>
|
d="M46.61,72.81l-8.53,8.53A13.73,13.73,0,0,1,18.67,61.92L35.55,45A13.78,13.78,0,0,1,55,45a2.75,2.75,0,0,0,3.79,0,2.68,2.68,0,0,0,0-3.79,19.12,19.12,0,0,0-27,0L14.87,58.13a19.09,19.09,0,0,0,27,27L50.4,76.6a2.68,2.68,0,0,0-3.79-3.79Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M91,47.5A2.5,2.5,0,0,0,88.5,50,38.5,38.5,0,1,1,50,11.5,38.09,38.09,0,0,1,76,21.64H62.13a2.45,2.45,0,0,0,0,4.9H84.31V4.36a2.45,2.45,0,1,0-4.9,0V18A43,43,0,0,0,50,6.5,43.5,43.5,0,1,0,93.5,50,2.5,2.5,0,0,0,91,47.5Z"/>
|
d="M91,47.5A2.5,2.5,0,0,0,88.5,50,38.5,38.5,0,1,1,50,11.5,38.09,38.09,0,0,1,76,21.64H62.13a2.45,2.45,0,0,0,0,4.9H84.31V4.36a2.45,2.45,0,1,0-4.9,0V18A43,43,0,0,0,50,6.5,43.5,43.5,0,1,0,93.5,50,2.5,2.5,0,0,0,91,47.5Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
<img
|
<img
|
||||||
:src="img"
|
:src="img"
|
||||||
class="logo"
|
class="logo"
|
||||||
alt="Logo" >
|
alt="Logo"
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,14 @@
|
||||||
<svg
|
<svg
|
||||||
class="note-icon"
|
class="note-icon"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M81.5,88.39746H18.7627a2.49981,2.49981,0,0,1-2.5-2.5V35.35352L1.72559,20.71191A2.50054,2.50054,0,0,1,3.5,16.4502h78a2.49981,2.49981,0,0,1,2.5,2.5V85.89746A2.49981,2.49981,0,0,1,81.5,88.39746Zm-60.2373-5H79V21.4502H9.50488L20.53711,32.56152a2.5013,2.5013,0,0,1,.72559,1.76172Z"/>
|
d="M81.5,88.39746H18.7627a2.49981,2.49981,0,0,1-2.5-2.5V35.35352L1.72559,20.71191A2.50054,2.50054,0,0,1,3.5,16.4502h78a2.49981,2.49981,0,0,1,2.5,2.5V85.89746A2.49981,2.49981,0,0,1,81.5,88.39746Zm-60.2373-5H79V21.4502H9.50488L20.53711,32.56152a2.5013,2.5013,0,0,1,.72559,1.76172Z"
|
||||||
<path d="M61.9209,40.92676H39.18457a2.5,2.5,0,0,1,0-5H61.9209a2.5,2.5,0,0,1,0,5Z"/>
|
/>
|
||||||
<path d="M62.13184,55.24219H39.39453a2.5,2.5,0,0,1,0-5h22.7373a2.5,2.5,0,0,1,0,5Z"/>
|
<path d="M61.9209,40.92676H39.18457a2.5,2.5,0,0,1,0-5H61.9209a2.5,2.5,0,0,1,0,5Z" />
|
||||||
<path d="M62.13184,69.55859H39.39453a2.5,2.5,0,0,1,0-5h22.7373a2.5,2.5,0,0,1,0,5Z"/>
|
<path d="M62.13184,55.24219H39.39453a2.5,2.5,0,0,1,0-5h22.7373a2.5,2.5,0,0,1,0,5Z" />
|
||||||
|
<path d="M62.13184,69.55859H39.39453a2.5,2.5,0,0,1,0-5h22.7373a2.5,2.5,0,0,1,0,5Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M39,85.69l.12.12L86.83,38.12a7.42,7.42,0,0,0,0-10.49L72.38,13.17a7.42,7.42,0,0,0-10.49,0L14.19,60.87l.12.12L11,89ZM65.86,17.15a1.8,1.8,0,0,1,2.54,0L82.85,31.6a1.8,1.8,0,0,1,0,2.54l-3.69,3.69-17-17ZM58.2,24.81l17,17L39.13,77.86l-17-17ZM19.38,66.05,33.95,80.62l-16.53,2Z"/>
|
d="M39,85.69l.12.12L86.83,38.12a7.42,7.42,0,0,0,0-10.49L72.38,13.17a7.42,7.42,0,0,0-10.49,0L14.19,60.87l.12.12L11,89ZM65.86,17.15a1.8,1.8,0,0,1,2.54,0L82.85,31.6a1.8,1.8,0,0,1,0,2.54l-3.69,3.69-17-17ZM58.2,24.81l17,17L39.13,77.86l-17-17ZM19.38,66.05,33.95,80.62l-16.53,2Z"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100">
|
viewBox="0 0 100 100"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M50,0a50,50,0,1,0,50,50A50,50,0,0,0,50,0ZM38,74V26L70,50Z"
|
d="M50,0a50,50,0,1,0,50,50A50,50,0,0,0,50,0ZM38,74V26L70,50Z"
|
||||||
style="fill:#17a887"/>
|
style="fill:#17a887"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<svg
|
<svg
|
||||||
viewBox="15 15 20 20"
|
viewBox="15 15 20 20"
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M33.855 23.7749H26.215V16.1349C26.215 15.4584 25.6666 14.9099 24.99 14.9099C24.3135 14.9099 23.765 15.4584 23.765 16.1349V23.7749H16.125C15.4485 23.7749 14.9 24.3234 14.9 24.9999C14.9 25.6765 15.4485 26.2249 16.125 26.2249H23.765V33.8649C23.765 34.5415 24.3135 35.0899 24.99 35.0899C25.6666 35.0899 26.215 34.5415 26.215 33.8649V26.2249H33.855C34.5316 26.2249 35.08 25.6765 35.08 24.9999C35.08 24.3234 34.5316 23.7749 33.855 23.7749Z"
|
d="M33.855 23.7749H26.215V16.1349C26.215 15.4584 25.6666 14.9099 24.99 14.9099C24.3135 14.9099 23.765 15.4584 23.765 16.1349V23.7749H16.125C15.4485 23.7749 14.9 24.3234 14.9 24.9999C14.9 25.6765 15.4485 26.2249 16.125 26.2249H23.765V33.8649C23.765 34.5415 24.3135 35.0899 24.99 35.0899C25.6666 35.0899 26.215 34.5415 26.215 33.8649V26.2249H33.855C34.5316 26.2249 35.08 25.6765 35.08 24.9999C35.08 24.3234 34.5316 23.7749 33.855 23.7749Z"
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,11 @@
|
||||||
<svg
|
<svg
|
||||||
viewBox="0 0 50 50"
|
viewBox="0 0 50 50"
|
||||||
fill="none"
|
fill="none"
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
<path
|
<path
|
||||||
d="M2.26316 47.5385C2.16211 47.5385 2.06105 47.5385 1.96 47.4884C1.40421 47.3382 1 46.8377 1 46.2871C1 25.0637 9.28632 15.3529 27.7789 14.9525V3.23957C27.7789 2.73902 28.0821 2.23847 28.5874 2.0883C29.0926 1.88808 29.6484 2.03824 30.0021 2.43869L48.6968 23.9124C49.1011 24.3629 49.1011 25.0637 48.6968 25.5642L30.0021 47.0379C29.6484 47.4384 29.0926 47.5885 28.5874 47.3883C28.0821 47.1881 27.7789 46.7376 27.7789 46.237V34.0235C16.8653 34.424 7.41684 39.3795 3.37474 46.8877C3.17263 47.2882 2.71789 47.5385 2.26316 47.5385ZM29.0421 31.5208C29.7495 31.5208 30.3053 32.0714 30.3053 32.7722V42.7832L46.0695 24.6632L30.3053 6.59327V16.2039C30.3053 16.9047 29.7495 17.4553 29.0421 17.4553C12.4695 17.4553 4.68842 24.8634 3.67789 41.9823C9.08421 35.4251 18.3811 31.5208 29.0421 31.5208Z"
|
d="M2.26316 47.5385C2.16211 47.5385 2.06105 47.5385 1.96 47.4884C1.40421 47.3382 1 46.8377 1 46.2871C1 25.0637 9.28632 15.3529 27.7789 14.9525V3.23957C27.7789 2.73902 28.0821 2.23847 28.5874 2.0883C29.0926 1.88808 29.6484 2.03824 30.0021 2.43869L48.6968 23.9124C49.1011 24.3629 49.1011 25.0637 48.6968 25.5642L30.0021 47.0379C29.6484 47.4384 29.0926 47.5885 28.5874 47.3883C28.0821 47.1881 27.7789 46.7376 27.7789 46.237V34.0235C16.8653 34.424 7.41684 39.3795 3.37474 46.8877C3.17263 47.2882 2.71789 47.5385 2.26316 47.5385ZM29.0421 31.5208C29.7495 31.5208 30.3053 32.0714 30.3053 32.7722V42.7832L46.0695 24.6632L30.3053 6.59327V16.2039C30.3053 16.9047 29.7495 17.4553 29.0421 17.4553C12.4695 17.4553 4.68842 24.8634 3.67789 41.9823C9.08421 35.4251 18.3811 31.5208 29.0421 31.5208Z"
|
||||||
fill="#333333"/>
|
fill="#333333"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,11 @@
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
viewBox="0 0 100 100"
|
viewBox="0 0 100 100"
|
||||||
id="shape"><title>q-a</title>
|
id="shape"
|
||||||
|
><title>q-a</title>
|
||||||
<path
|
<path
|
||||||
d="M88.09,10h-38A12,12,0,0,0,38,21.88V33.11H12a12.07,12.07,0,0,0-12,12v22.4A12,12,0,0,0,12,79.39H47l10.87,10a2.5,2.5,0,0,0,1.67.67,2.38,2.38,0,0,0,1-.2A2.44,2.44,0,0,0,62,87.58V56.25H88.09a11.92,11.92,0,0,0,11.91-12V21.88A11.87,11.87,0,0,0,88.09,10ZM57,82l-7.41-6.83a2.49,2.49,0,0,0-1.65-.7H12A7,7,0,0,1,5,67.51V45.11a7.1,7.1,0,0,1,7.09-7H38V64.35a2.54,2.54,0,0,0,4.23,1.83l9.1-8.29L52,57.3c.49-.45,1-.92,1.21-1.05s.71,0,1.16,0H57ZM95,44.28a7,7,0,0,1-6.95,7H54.47c-3-.06-3.55.27-5.83,2.37-.19.17-.45.37-.68.58l-5,4.5V21.88a7.06,7.06,0,0,1,7.13-7h38a6.91,6.91,0,0,1,6.95,7Z"
|
d="M88.09,10h-38A12,12,0,0,0,38,21.88V33.11H12a12.07,12.07,0,0,0-12,12v22.4A12,12,0,0,0,12,79.39H47l10.87,10a2.5,2.5,0,0,0,1.67.67,2.38,2.38,0,0,0,1-.2A2.44,2.44,0,0,0,62,87.58V56.25H88.09a11.92,11.92,0,0,0,11.91-12V21.88A11.87,11.87,0,0,0,88.09,10ZM57,82l-7.41-6.83a2.49,2.49,0,0,0-1.65-.7H12A7,7,0,0,1,5,67.51V45.11a7.1,7.1,0,0,1,7.09-7H38V64.35a2.54,2.54,0,0,0,4.23,1.83l9.1-8.29L52,57.3c.49-.45,1-.92,1.21-1.05s.71,0,1.16,0H57ZM95,44.28a7,7,0,0,1-6.95,7H54.47c-3-.06-3.55.27-5.83,2.37-.19.17-.45.37-.68.58l-5,4.5V21.88a7.06,7.06,0,0,1,7.13-7h38a6.91,6.91,0,0,1,6.95,7Z"
|
||||||
style="fill-rule:evenodd"/>
|
style="fill-rule:evenodd"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue