add apps grid to homepage

This commit is contained in:
Aadil Ayub 2022-06-14 19:23:54 +05:00
parent e8e25a1ab5
commit 0c439d759d
12 changed files with 913 additions and 43 deletions

View File

@ -1,42 +1,82 @@
{{ define "main" }}
<main>
<section class='entries'>
<div class="h-feed">
{{ range where (.Paginator 13).Pages "Params.hidden" "ne" "true" }}
<div class="welcome-text"><u>lumbung.space</u> is a social and publishing platform for sharing harvests by all members online. It is non-extractive, co governed by the users, and is built on open platforms.</div>
<div class="app-columns">
<div class="app-column">
<a href="/timeline/">
<img class="app-icon" src="/img/buttons/harvest.svg" alt="harvest">
<p class="app-name">harvest</p>
</a>
<p class="app-description">Digital timeline of harvests for collective learning</p>
</div>
{{ if in .Params.categories "tv"}}
{{- partial "video_box.html" . -}}
<div class="app-column">
<a href="/calendar/">
<img class="app-icon" src="/img/buttons/calendar.svg" alt="calendar">
<p class="app-name">calendar</p>
</a>
<p class="app-description">Watch out for upcoming lumbung programs on our open-source calendar</p>
</div>
{{ else if in .Params.categories "calendar" }}
<div class="app-column">
<a href="/tv/">
<img class="app-icon" src="/img/buttons/tv.svg" alt="tv">
<p class="app-name">tv</p>
</a>
<p class="app-description">Video archive. Watch or upload videos or start a livestream</p>
</div>
<div class="app-column">
<a href="/social/">
<img class="app-icon" src="/img/buttons/social.svg" alt="social">
<p class="app-name">social</p>
</a>
<p class="app-description">Like twitter but for us! Jokes, announcements, chitchat</p>
</div>
{{- partial "calendar_card.html" . -}}
<div class="app-column">
<a href="/pen/">
<img class="app-icon" src="/img/buttons/pen.svg" alt="lumbung.pen">
<p class="app-name">pen</p>
</a>
<p class="app-description">Write and publish longer texts.</p>
</div>
{{ else if in .Params.categories "network" }}
<div class="app-column">
<a href="/shouts/">
<img class="app-icon" src="/img/buttons/shouts.svg" alt="shouts">
<p class="app-name">shouts</p>
</a>
<p class="app-description">lumbung members and artists share content from their ekosistems</p>
</div>
<div class="app-column">
<a href="/tags/lumbungkios/">
<img class="app-icon" src="/img/buttons/kios.svg" alt="kios">
<p class="app-name">kios</p>
</a>
<p class="app-description">Network of decentralized and self-run Kios to sell products at different locations</p>
</div>
{{- partial "network_card.html" . -}}
<div class="app-column">
<a href="/tags/lumbunggallery/">
<img class="app-icon" src="/img/buttons/gallery.svg" alt="gallery">
<p class="app-name">gallery</p>
</a>
<p class="app-description">Collectively governed, non speculative, and regenerative gallery of the lumbung network</p>
</div>
{{ else if in .Params.categories "pen" }}
{{- partial "pen_card.html" . -}}
{{ else if in .Params.categories "shouts" }}
{{- partial "shout_card.html" . -}}
{{ else }}
{{- partial "card.html" . -}}
{{ end }}
{{ end }}
<div class="app-column">
<a href="https://books.lumbung.space/">
<img class="app-icon" src="/img/buttons/books.svg" alt="lumbung.books">
<p class="app-name">books</p>
</a>
<p class="app-description">Archive of publications. Share, read or download PDFs and ebooks</p>
</div>
</div>
<nav class="pagination-container">
{{ template "_internal/pagination.html" . }}
</nav>
<div class="lumbung-radio-player" onclick="window.open('https://lumbungradio.stationofcommons.org', 'Lumbung Radio', 'height=800,width=450')">
<svg class="lumbung-radio-play-button" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 4V20L20 12L7 4Z" fill="#CA14D4" stroke="#CA14D4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>

View File

@ -61,6 +61,11 @@ body {
min-height: 100vh;
}
/* pushes banner to bottom */
body > iframe {
margin: auto 0 0;
}
* {
box-sizing: border-box;
}
@ -201,7 +206,7 @@ body {
.menu ul {
list-style-type: none;
margin: 0 auto;
padding: 0 3rem;
padding-left: 3rem;
display: flex;
justify-content: space-between;
text-transform: lowercase;
@ -966,22 +971,473 @@ li.page-item:after {
z-index: -100;
}
/* Page footer */
footer {
background: #AFAFAF;
color: #333333;
font-size: 15px;
padding: 1em 4em;
/* Landingpage */
.welcome-text {
text-align: center;
max-width: 1000px;
margin: 0 auto 50px;
}
footer a {
color: #333333;
.app-columns {
display: flex;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto 50px;
}
.app-column {
width: 33%;
text-align: center;
padding: 3.5%;
}
.app-column a {
text-decoration: none;
}
footer a:hover {
.app-icon {
display: block;
max-width: 90px;
width: 80%;
margin-left: auto;
margin-right: auto;
transition: transform 0.2s ease;
}
.app-icon:hover {
transform: rotate(-15deg);
}
.app-name {
font-weight: bold;
margin-bottom: 0.2em;
color: #333;
}
.app-description {
font-size: 14px;
display: block;
margin-left: auto;
margin-right: auto;
}
/* ### Timeline ### */
/* Timeline Tags */
.timeline-tags {
margin-bottom: 50px;
display: flex;
align-items: center;
width: 90vw;
font-size: 1.4vw;
}
.timeline-tags-headline {
margin-right: 10px;
}
.timeline-tags ul {
list-style: none;
padding-left: 0;
white-space: nowrap;
overflow: scroll;
-ms-overflow-style: none;
scrollbar-width: none;
}
.timeline-tags ul::-webkit-scrollbar {
display: none;
}
.timeline-tags ul li {
display: inline-block;
margin-right: 10px;
}
.timeline-tags ul li.timeline-tag {
display: inline-block;
margin-right: 10px;
padding: 10px 35px;
background: #007f76;
border-radius: 50px;
}
.timeline-tags ul li a {
color: #fff;
text-decoration: none;
}
/* Timeline Container and Line */
.timeline-container {
position: relative;
display: flex;
flex-direction: column;
}
.timeline-start {
font-size: 3vw;
text-align: center;
padding: 1.5vw 0 4.5vw;
}
.timeline-end {
font-size: 3vw;
text-align: center;
padding: 10vw 0 10vw;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
width: 100vw;
margin-left: -10vw;
}
.timeline-start span {
padding: 1.5vw 3vw;
border: 2px solid;
background: #fff;
transform: rotate(3deg);
display: block;
width: fit-content;
margin: auto;
font-weight: 700;
}
.timeline-line {
position: absolute;
z-index: -1;
width: 35vw;
height: calc(100% - 12vw);
top: 12vw;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
}
.timeline-line-head {
background-image: url(/img/timeline-head.svg);
background-repeat: no-repeat;
background-size: 100%;
position: absolute;
z-index: -1;
width: 100%;
height: 25.5vw;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
}
.timeline-line-body {
background-image: url(/img/timeline-body.svg);
background-repeat: repeat-y;
background-size: 100%;
position: absolute;
z-index: -1;
width: 100%;
height: calc(100% - 25.2vw);
top: 25.2vw;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;
}
/* Timeline Events and Position */
.timeline-events {
display: flex;
flex-direction: column;
}
.timeline-event {
width: 20vw;
height: 12vw;
display: flex;
align-items: center;
margin-top: -3.1vw !important;
opacity: 0;
transition: opacity 1.4s ease;
}
.timeline-event.inView {
opacity: 1;
}
.timeline-url {
font-size: 1.8vw;
color: #333;
text-decoration: unset;
}
a.timeline-url {
text-decoration: underline;
}
.link-svg {
height: 1.2vw;
width: 1.2vw;
margin-left: 0.8vw;
}
/* Timeline Events - Left Side (sort margin)*/
.timeline-event:nth-child(36n + 7), .timeline-event:nth-child(36n + 9), .timeline-event:nth-child(36n + 33) {
margin-left: 2vw;
}
.timeline-event:nth-child(36n + 1) {
margin-left: 8vw;
}
.timeline-event:nth-child(36n + 25), .timeline-event:nth-child(36n + 35) {
margin-left: 10vw;
}
.timeline-event:nth-child(1), .timeline-event:nth-child(36n + 11), .timeline-event:nth-child(36n + 17), .timeline-event:nth-child(36n + 23), .timeline-event:nth-child(36n + 27) {
margin-left: 12vw;
}
.timeline-event:nth-child(36n + 3), .timeline-event:nth-child(36n + 15), .timeline-event:nth-child(36n + 21) {
margin-left: 14vw;
}
.timeline-event:nth-child(3), .timeline-event:nth-child(36n + 5), .timeline-event:nth-child(36n + 13), .timeline-event:nth-child(36n + 19), .timeline-event:nth-child(36n + 29) {
margin-left: 16vw;
}
/* Timeline Events - Right Side */
.timeline-event:nth-child(2n) {
margin-left: auto;
}
.timeline-event:nth-child(36n + 2), .timeline-event:nth-child(36n + 6), .timeline-event:nth-child(36n + 20), .timeline-event:nth-child(36n + 32) {
margin-right: 4vw;
}
.timeline-event:nth-child(36n + 34) {
margin-right: 6vw;
}
.timeline-event:nth-child(36n + 36) {
margin-right: 8vw;
}
.timeline-event:nth-child(36n + 8), .timeline-event:nth-child(36n + 24) {
margin-right: -3vw;
}
.timeline-event:nth-child(36n + 14), .timeline-event:nth-child(36n + 16) {
margin-right: -4vw;
}
.timeline-event:nth-child(36n + 26) {
margin-right: -5vw;
}
/* Timeline Events - Rotate */
.timeline-event:nth-child(2n) {
transform: rotate(2deg);
}
.timeline-event:nth-child(5n) {
transform: rotate(3deg);
}
.timeline-event:nth-child(2n + 1) {
transform: rotate(-1.5deg);
}
.timeline-event:nth-child(18n + 5), .timeline-event:nth-child(18n + 17) {
transform: rotate(5deg);
}
.timeline-event:nth-child(18n + 13), .timeline-event:nth-child(18n + 36) {
transform: rotate(-3deg);
}
.timeline-event:nth-child(18n + 9), .timeline-event:nth-child(18n + 12), .timeline-event:nth-child(18n + 22) {
transform: rotate(-5deg);
}
/* Event Single */
.back-button {
width: fit-content;
padding: 10px 20px;
border: 0;
background: #007f76;
color: #fff;
cursor: pointer;
}
/* PopUp */
.popup-container {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.6s ease, visibility 0s ease 0.6s;
}
.popup-container.view {
opacity: 1;
visibility: visible;
transition: opacity 0.6s ease, visibility 0s ease 0s;
}
.popup {
background: #fff;
padding: 0 30px 30px;
border: 2px solid;
width: 80%;
max-width: 1000px;
position: relative;
z-index: 2;
max-height: 80%;
overflow-y: scroll;
}
.popup-header {
display: flex;
justify-content: space-between;
padding-top: 30px;
}
.popup-header h3 {
margin: 0;
padding-right: 10px;
}
.popup-close {
position: relative;
height: 30px;
width: 30px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
border: 0;
background: none;
}
.popup-close:after, .popup-close:before {
content: "";
height: 30px;
width: 2px;
display: block;
background: #333;
position: absolute;
transform: rotate(45deg);
}
.popup-close:before {
transform: rotate(-45deg);
}
.popup-bg {
position: absolute;
background: #00000059;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
}
/* Page footer */
#footer {
position: relative;
margin-top: 10px;
font-size: 18px;
}
#footer.blue .f-main {
background: var(--social-light);
}
#footer.blue .f-credits {
background: var(--social-dark);
}
#footer.orange .f-main {
background: var(--kios-light);
}
#footer.orange .f-credits {
background: var(--kios-dark);
}
#footer.green .f-main {
background: var(--tv-light);
}
#footer.green .f-credits {
background: var(--tv-dark);
}
.f-main {
padding: 60px 2rem;
display: flex;
justify-content: space-between;
}
.f-column {
margin-right: 6vw;
}
.f-column:first-child {
margin-right: 8vw;
}
.f-column:last-child {
margin-right: 0;
}
.f-main .logo {
filter: brightness(0);
max-width: 20vw;
margin-top: 0;
opacity: 0.8;
}
.f-menu-headline {
font-weight: bold;
margin-bottom: 5px;
}
.f-main a {
color: #000;
display: block;
font-size: 18px;
margin-bottom: 5px;
text-decoration: none;
white-space: nowrap;
}
.f-main .login {
font-weight: bold;
padding: 8px 28px;
border: 1.5px solid;
}
.f-credits {
color: #fff;
font-size: 15px;
padding: 20px 2rem;
}
.f-credits a {
color: #fff;
text-decoration: none;
}
.f-credits a:hover {
cursor: pointer;
text-decoration: underline;
}
@ -1034,9 +1490,18 @@ footer a:hover {
cursor: pointer;
}
/* mobile styles */
@media (max-width: 768px) {
@media all and (min-width: 980px) and (max-width: 1180px) {
#top-menu a, .menu .has-submenu {
font-size: 1.8vw;
vertical-align: top;
}
}
/* tablet styles */
@media (max-width: 980px) {
body {
display: initial;
}
@ -1058,6 +1523,7 @@ footer a:hover {
.mobile-menu #login {
display: inline-flex;
margin: 0 0 0 auto;
}
.hamburger {
@ -1065,10 +1531,12 @@ footer a:hover {
background: none;
position: relative;
z-index: 3;
cursor: pointer;
}
.hamburger.opened {
position: fixed;
margin-top: 3px;
}
.drawer {
@ -1077,12 +1545,14 @@ footer a:hover {
background: white;
top: 0;
left: 0;
height: 110vh;
height: 100%;
width: 0;
z-index: 2;
transition: 0.2s all ease-in-out;
padding-top: 120px;
border-right: 1px solid;
overflow-x: hidden;
overflow-y: scroll;
}
.drawer * {
@ -1108,6 +1578,10 @@ footer a:hover {
/* border-bottom: 1px solid #333; */
}
.drawer ul > li:last-child {
padding-bottom: 2em;
}
.drawer ul li a {
color: white;
text-decoration: none;
@ -1124,6 +1598,35 @@ footer a:hover {
opacity: 1;
}
/* Landingpage */
.app-column {
width: 33%;
padding: 2.5%;
}
/* Landingpage */
.f-main {
flex-wrap: wrap;
}
.f-column {
margin-right: 0vw;
}
.f-column:nth-child(1), .f-column:nth-child(2){
margin-bottom: 45px;
}
.f-main .logo {
max-width: unset;
}
}
/* mobile styles */
@media (max-width: 768px) {
/* card styles */
.card,
.card.network {
@ -1138,6 +1641,85 @@ footer a:hover {
.card h2 a {
font-size: 26px;
}
/* Landingpage */
.app-column {
width: 50%;
padding: 2.5%;
}
/* Timeline Tags */
.timeline-tags {
font-size: 3vw;
}
/* Timeline Container and Line */
.timeline-start {
font-size: 5vw;
padding: 1.5vw 0 9vw;
}
.timeline-line {
height: calc(100% - 18vw);
top: 18vw;
width: 25vw;
}
.timeline-line-head {
height: 18.5vw;
}
.timeline-line-body {
height: calc(100% - 18.2vw);
top: 18.2vw;
}
/* Timeline Events and Position */
.timeline-events {
padding-top: 15vw;
}
.timeline-event {
width: 30vw;
height: 35vw;
margin-top: -12vw !important;
}
.timeline-url {
font-size: 3.4vw;
}
.link-svg {
height: 2.4vw;
width: 2.4vw;
margin-left: 1.6vw;
}
/* Timeline Events - Left Side (sort margin)*/
.timeline-event:nth-child(36n + 7), .timeline-event:nth-child(36n + 9), .timeline-event:nth-child(36n + 33) {
margin-left: 1vw;
}
.timeline-event:nth-child(36n + 1), .timeline-event:nth-child(36n + 3), .timeline-event:nth-child(36n + 15), .timeline-event:nth-child(36n + 21), .timeline-event:nth-child(36n + 11), .timeline-event:nth-child(36n + 17), .timeline-event:nth-child(36n + 23), .timeline-event:nth-child(36n + 27) {
margin-left: 2vw;
}
.timeline-event:nth-child(3), .timeline-event:nth-child(36n + 5), .timeline-event:nth-child(36n + 13), .timeline-event:nth-child(36n + 19), .timeline-event:nth-child(36n + 29), .timeline-event:nth-child(36n + 25), .timeline-event:nth-child(36n + 35) {
margin-left: -3vw;
}
/* Timeline Events - Right Side */
.timeline-event:nth-child(2n) {
margin-right: -5vw;
}
.timeline-event:nth-child(36n + 8), .timeline-event:nth-child(36n + 24) {
margin-right: -6vw;
}
.timeline-event:nth-child(36n + 26) {
margin-right: -8vw;
}
}
@media (max-width: 480px) {

View File

@ -0,0 +1,5 @@
<svg width="116" height="116" viewBox="0 0 116 116" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M58 116C90.0325 116 116 90.0325 116 58C116 25.9675 90.0325 0 58 0C25.9675 0 0 25.9675 0 58C0 90.0325 25.9675 116 58 116Z" fill="#9E483F"/>
<path d="M44.0594 60.5608C43.8283 60.5238 43.5971 60.4499 43.2366 60.3574L42.8853 60.339L41.8407 60.2558L42.8853 60.1726L43.2366 60.1541C43.5971 60.0616 43.8283 59.9877 44.0594 59.9507C46.9067 59.4422 48.5707 57.7043 49.2086 54.9402C50.0036 51.4642 50.1422 47.9328 49.5413 44.4199C48.7556 39.8254 46.9436 37.9303 42.3121 37.4496C36.3957 36.8487 30.4422 37.3201 24.498 37.2092C24.0266 37.2 23.8879 37.3848 23.9064 37.8193C23.9526 38.864 23.9896 39.9086 23.9896 40.9625C23.9803 46.9252 23.9618 52.8879 23.9526 58.8506H23.9433C23.9433 59.3221 23.9433 59.7843 23.9433 60.2558C23.9433 60.7272 23.9433 61.1894 23.9433 61.6609C23.9618 67.6236 23.9711 73.5863 23.9803 79.549C23.9803 80.5937 23.9433 81.6475 23.8971 82.6922C23.8786 83.1359 24.0173 83.3115 24.4888 83.3023C30.4237 83.1914 36.3865 83.6721 42.3029 83.0619C46.9252 82.5905 48.7463 80.6954 49.5321 76.0916C50.133 72.5787 49.9851 69.0565 49.1993 65.5714C48.5707 62.8072 46.9067 61.0693 44.0594 60.5608ZM35.4989 51.1037C35.4989 49.9389 35.4805 48.7741 35.5082 47.6185C35.5174 47.2765 35.2309 46.7495 35.7671 46.6201C36.3217 46.4907 36.9411 46.463 37.3756 46.9899C37.4496 47.0731 37.5235 47.184 37.5513 47.2857C38.1984 49.8095 38.1706 52.3425 37.5697 54.857C37.3756 55.6428 36.6268 55.7167 35.9519 55.652C35.0737 55.5688 35.5544 54.8662 35.5267 54.4687C35.4528 53.3594 35.4989 52.2315 35.4989 51.1037ZM37.5513 73.2165C37.5235 73.3275 37.4496 73.4292 37.3756 73.5124C36.9411 74.0393 36.3217 74.0116 35.7671 73.8821C35.2401 73.762 35.5267 73.2258 35.5082 72.8838C35.4712 71.7189 35.4989 70.5541 35.4989 69.3986C35.4989 68.2707 35.4528 67.1429 35.5267 66.0243C35.5544 65.6268 35.0737 64.9242 35.9519 64.841C36.6268 64.7763 37.3756 64.8503 37.5697 65.636C38.1706 68.1598 38.1984 70.6928 37.5513 73.2165Z" fill="#F0D5C0"/>
<path d="M71.0718 47.8774C75.9898 46.3243 80.4272 47.0823 85.0772 49.9574C89.4683 52.5273 92.3433 56.1697 93.6376 61.0878C94.9226 66.0058 94.6637 70.9331 92.0845 75.0932C89.2464 79.7524 85.6133 82.6274 80.686 83.9124C75.4998 85.1974 71.1087 84.7075 66.4125 82.0913C62.0214 79.4751 59.1463 75.8789 57.8521 70.6928C56.299 65.7747 57.0571 61.1155 59.6733 56.6874C62.2525 52.0374 65.8856 49.1993 71.0718 47.8774ZM87.1295 46.3243C81.6752 42.9593 75.9991 42.1642 70.0179 43.7081C63.8056 45.5292 59.1186 49.1623 56.0124 54.6074C52.9063 60.0524 52.1113 65.7377 53.6643 71.987C55.4855 77.9312 59.1186 82.6274 64.5636 85.7336C70.0179 88.8398 75.4629 89.6348 81.6752 87.8136C87.6194 86.2605 92.3156 82.6274 95.6806 77.4413C98.7868 71.987 99.5818 66.0428 97.7606 60.3297C96.2168 54.1174 92.8426 49.1993 87.1295 46.3243Z" fill="#F0D5C0"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64.6 64.5" style="enable-background:new 0 0 64.6 64.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#A8E6E9;}
.st1{fill:#FEFEFE;}
.st2{fill:#3D5BC3;}
</style>
<g>
<circle class="st0" cx="32.2" cy="32.3" r="32.2"/>
<path class="st1" d="M64.6,28.9c-0.6-2-0.8-4-1.4-6C60.6,14.6,55.6,8.4,48,4.1C44.3,2,40.3,0.7,36,0.2c-0.2-0.1-0.2-0.1,0-0.2
c9.2,0,18.5,0,27.7,0c0.7,0,0.9,0.1,0.9,0.9C64.6,10.2,64.6,19.6,64.6,28.9z"/>
<path class="st2" d="M54,33.2c0,1.8,0,3.7,0,5.5c0,1.5,0.1,2.9,0.7,4.3c1,2.2-0.3,4.2-2.3,4.1c-0.8,0-1.5-0.3-2-1
c-0.5-0.8-1-0.7-1.7-0.4c-4,1.7-8.1,1.9-12.3,0.9c-4.9-1.2-7.4-4.7-7.5-8.6c-0.1-4.6,1.6-6.8,6.5-8.3c4-1.3,8-1.1,12.1-0.1
c1,0.2,1.4,0.2,1.3-1c-0.1-1,0-2,0-3c0.1-1.6,1-2.7,2.4-2.6c1.6,0,2.8,1.2,2.8,2.8C54,28.2,54,30.7,54,33.2z"/>
<path class="st2" d="M8.2,31.2c0-3.2,0.3-6.4,1.7-9.3c2.5-5.6,8.8-7.7,13.7-4.6c2.2,1.4,3.2,3.5,3.9,5.8c0,0.1,0.1,0.4,0,0.5
c-0.7,0.9-1.7,0.8-2.7,1c-0.7,0.1-1-0.5-1.1-1.2c-0.8-3.3-3-4.7-6.3-4.1c-1.7,0.3-2.8,1.3-3.5,2.8c-2.7,6.1-2.7,12.1,0.1,18.1
c0.9,1.8,2.4,2.7,4.4,2.7c2.1,0,3.7-0.7,4.7-2.6c0.4-0.9,0.7-1.8,0.8-2.7c0.2-1.3,0.6-1.5,2.1-1.3c1.2,0.2,1.8,0.8,1.6,1.9
c-0.5,4.8-4.2,8-9.1,8c-3.8,0-6.5-1.8-8.2-5C8.6,38.1,8.2,34.7,8.2,31.2z"/>
<path class="st0" d="M41.3,41.9c-1.6,0-3.3-0.3-5-1c-1.3-0.6-2.4-1.4-2.5-2.9c-0.1-1.4,1-2.4,2.1-3c2.3-1.3,4.9-1.3,7.4-1
c1.3,0.1,2.6,0.3,3.8,1c1.2,0.7,2,1.6,2,3c0,1.5-0.8,2.4-2.2,3C45.2,41.5,43.4,41.9,41.3,41.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 281.7 282" style="enable-background:new 0 0 281.7 282;" xml:space="preserve">
<style type="text/css">
.st0{fill:#665857;}
.st1{fill:#DFD9D9;}
.st2{fill:#675958;}
</style>
<g>
<path class="st0" d="M281.7,139.2c1.1,78.1-61.5,141.3-137.9,142.8C65.3,283.5,0,220.5,0,141C0,62.9,63-0.2,141.2,0
C219.8,0.2,281,63.8,281.7,139.2z"/>
<path class="st1" d="M144.5,134.4c0,9,0,17.9,0,26.9c0,5.3-1.7,10.3-2.9,15.3c-1.5,5.9-4.9,10.5-8.5,15.1c-2,2.5-4.9,4.2-7.4,6.2
c-2.4,2.1-5.3,3.1-8.1,4.3c-0.9,0.3-1.7,0.6-2.7,0.5c-0.2,0-0.3,0-0.5,0c-5.8,2-11.8,2.5-17.8,2c-9.6-0.8-18.8-3.1-26.8-9
c-5.5-4.1-9.1-9.7-11.9-16c-0.4-1-1-1.9-1.1-3c-0.1-0.8,0-1.2,1-1.2c4.9,0,9.7,0,14.6,0c2.2,0,3.9,0.8,5.1,2.6
c4.3,5.9,10.3,8.9,17.4,9.9c6.3,0.9,12.4-0.1,18-3.4c1-0.6,2.1-1.1,2.8-2.1c0.5-0.8,0.9-1.6,1.5-2.3c0.4-0.5,0.7-0.9,1.4-1
c0.2,0,0.4-0.1,0.5-0.3c1.4-2.5,3.8-4.3,4.7-7.2c0.9-2.7,1.7-5.5,2.1-8.3c0.1-0.8,0.4-1.6,0.3-2.5c-0.2-1.2-1.2-1.6-2.1-1
c-3.5,2.7-7.2,5-11.3,6.7c-7.3,3.2-15,3.9-22.9,2.9c-3.6-0.4-7-1.6-10.5-2.1c-5.2-0.7-9.5-3.2-12.8-6.8
c-5.1-5.5-10.1-11.3-12.5-18.7c-0.2-0.6-0.4-1.2-0.9-1.7c-0.4-0.5-0.7-1.1-0.7-1.7c0.1-1.6-0.5-3-1-4.4c-0.3-0.9-0.3-1.9-0.3-2.8
c0-3.9,0-7.8,0-11.6c0-2,0.5-3.9,1-5.8c0.5-1.9,0.9-3.8,1.7-5.7c2.4-5.7,5.4-10.8,9.7-15.3c0.9-1,1.7-2,2.9-2.6
c0.6-0.3,1.2-0.8,1.6-1.4c1.8-2.5,4.4-3.7,7.1-4.8c1.7-0.7,3.5-1.7,5.3-1.9c2.6-0.3,5.2-1,7.8-1.4c7.2-1.1,14.2-0.7,21.2,1.5
c5.5,1.8,10.4,4.5,14.6,8.5c0.5,0.5,1.1,0.9,1.8,0.6c0.7-0.3,0.9-0.9,0.9-1.7c0-1.6,0-3.1-0.1-4.7c0-2.1,0.9-3,3-2.8
c3.7,0.2,7.3,0.2,11,0c2.5-0.2,3.7,0.8,3.9,3.3c0.1,1.2,0,2.4,0,3.6C144.7,104.3,144.4,119.3,144.5,134.4z"/>
<path class="st1" d="M223.1,197.6c-1.7,0-3.4,0-5,0c-1.5,0-1.9-0.3-2.2-1.8c-1.6-7.4-3.1-14.8-4.7-22.1c-0.2-1-0.4-2-0.6-2.9
c-0.4-1.8-1.1-2.4-3-2.4c-1.2,0-2.3,0.1-3.5,0.1c-7.1,0-14.1,0-21.2,0c-1.4,0-2.7-0.1-4.1-0.1c-2,0-2.8,0.6-3.2,2.5
c-1.7,8-3.3,15.9-5,23.9c-0.5,2.4-1.2,3-3.6,2.8c-2-0.2-3.9,0.3-5.9,0.3c-3,0-4-1.2-3.1-4.1c1.1-3.7,2.2-7.4,3.2-11.2
c6.1-23.6,11.9-47.4,17.7-71.1c1.6-6.4,3.1-12.8,4.6-19.2c0.7-2.8,1.6-3.4,4.5-3.3c3.5,0.2,7,0.3,10.5-0.1c2.2-0.2,3.3,0.5,3.9,2.7
c1.6,6.4,3.2,12.8,4.8,19.2c7,28.5,14.2,56.9,21.7,85.3c0.4,1.5,0.4,1.5-1.1,1.5C226.3,197.6,224.7,197.6,223.1,197.6z"/>
<path class="st2" d="M98.1,152.4c-5.8,0-11.4-1.2-15.8-5.1c-6.4-5.5-10.9-12.2-11-21.1c0-3.1,0.3-6.2,1.2-9.1
c0.4-1.2,1.4-2.1,1.4-3.4c0-0.9,0.4-1.7,1-2.1c1.1-0.6,1.4-1.8,2.2-2.6c1.9-1.9,3.7-3.8,5.6-5.6c1.5-1.4,3.5-1.8,5.3-2.5
c7.5-2.9,14.8-2.9,21.9,1.3c4.5,1.2,7,4.9,9.8,8.2c0.2,0.2,0.4,0.4,0.5,0.7c0.9,3.4,3,6.3,3.7,9.8c0.6,3.2,0.5,6.4-0.1,9.6
c-0.2,1.2,0,2.4-0.4,3.7c-0.3,0.9-0.5,1.9-1.3,2.5c-0.4,0.3-0.4,0.7-0.5,1.2c-0.2,1.3-0.9,2.2-2,2.8c-1,0.5-1.5,1.5-2.1,2.4
c-3.2,4.4-7.6,6.9-12.7,8.5C102.7,152.2,100.4,152.4,98.1,152.4z"/>
<path class="st2" d="M192.8,159.3c-4.4,0-8.8,0-13.2,0c-0.9,0-1.1-0.2-0.9-1.1c4.6-20,9.2-40,13.8-60c0-0.2,0.1-0.3,0.1-0.5
c0.1-0.3,0-0.7,0.4-0.8c0.5,0,0.4,0.5,0.5,0.8c1.7,7.3,3.4,14.6,5.1,21.9c2.9,12.5,5.8,25,8.7,37.5c0.4,1.8,0.3,2.1-1.5,2.1
C201.5,159.3,197.2,159.3,192.8,159.3z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 281.6 281.9" style="enable-background:new 0 0 281.6 281.9;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E69CBD;}
.st1{fill:#FBF1F2;}
.st2{fill:#E79EBF;}
.st3{fill:#E9A4C2;}
.st4{fill:#EBAEC8;}
.st5{fill:#E79FBF;}
.st6{fill:#E8A0C0;}
.st7{fill:#E89FC0;}
.st8{fill:#EBAFC9;}
.st9{fill:#E9A7C4;}
.st10{fill:#ECB2CB;}
.st11{fill:#EFBDD2;}
.st12{fill:#EDB7CE;}
.st13{fill:#F0C1D5;}
.st14{fill:#EAAAC6;}
.st15{fill:#E9A6C3;}
.st16{fill:#EAABC7;}
</style>
<g>
<path class="st0" d="M140.7,281.9C63.1,282-1.2,218.5,0,138.9c0.6-38.5,14.8-71.7,42.4-98.7c27.4-26.8,60.7-40.4,99-40.2
c39,0.2,72.6,14.3,99.9,42.3c27.4,28,40.8,61.9,40.3,101.1C280.6,219.5,218.2,282.1,140.7,281.9z"/>
<path class="st1" d="M221.9,121c-0.5,1.2-1.4,2.1-2.2,3c-0.3,0.4-0.8,0.3-1.2,0.3c-0.2-0.1-0.1-0.5-0.5-0.7
c-0.1,0.5,0.3,0.4,0.5,0.6c0,0.7-0.4,1-1,1c-2.2,0-2.9,2.1-4.3,3.3c0.4,1-0.5,1-0.9,1.3c-0.5,0.3-0.9,0.7-1.4,1
c-0.3,0.2-0.7,0.4-0.9,0.7c-0.6,0.6-1.2-0.5-1.7,0.1c-0.3,0.4,0,1.5-1.1,1c0,0-0.5,0.6-0.9,0.8c-0.5,0.2-0.7,0.7-1.4,0.6
c-0.5-0.1-0.9,0.7-0.9,1.2c0,0.7-0.6,1-1,0.9c-0.8-0.2-1,0.2-1.1,0.8c-0.2,0.7-0.6,1.2-1.2,1.6c-0.6,0.5-1.8,0.4-1.5,1.7
c0,0.1-0.4,0.4-0.5,0.4c-1.2-0.4-1.3,0.6-1.6,1.3c-0.6,1.2-2,1.7-2.5,2.9c0,0.1-0.3,0.2-0.4,0.2c-1.5-0.2-1.9,0.9-2.4,1.9
c-0.2,0.4-0.3,0.5-0.8,0.3c-0.8-0.3-1.5,0.2-1.3,1c0.3,1.2-0.1,2-1,2.7c-1.3,1.3-2.5,2.8-3.9,3.8c-3.1,2.2-5.1,5.6-7.9,8
c-2.3,1.9-3.9,4.5-5.9,6.6c-2,2.2-3.7,4.7-5.2,7.3c-1.7,2.8-4,5.2-6.1,7.6c-1.3,1.5-2.5,3-3.6,4.6c-0.4,0.6-0.7,1.2-1.2,1.6
c-1.1,1-2,2.1-2.6,3.4c-1.5,3.8-4.6,6.1-7.7,8.5c-1.5,1.1-3,2.1-4.8,2.5c-0.8,0.2-1.5,0.2-2.3,0c-3.6-1-6.9-2.6-9.6-5.4
c-2.1-2.3-4.6-4.3-5.9-7.2c-1-2.2-1.4-4.4-1.7-6.8c-0.2-2.1-0.2-4.1-0.2-6.2c0-4.7,1-9.3,2.3-13.9c1-3.5,2.4-7,3.4-10.5
c1.7-5.6,3.3-11.3,5.3-16.8c1.4-3.7,2.9-7.3,4.3-11c0.7-1.7,1.4-3.5,1.5-5.3c0.1-1.5,0.3-3,0.6-4.4c0.3-1.6-0.5-2.1-2-1.5
c-3.8,1.8-7.5,4-10.7,6.8c-3.9,3.4-7.6,7.1-10.5,11.4c-1.5,2.3-2.3,4.6-2.3,7.5c0.1,11.9,0,23.8,0.2,35.8c0,3.3-0.1,6.7,0.4,10
c0.1,0.7,0,1.3-0.2,2c-0.3,1-0.8,1.6-1.9,1.6c-1.1,0-2.2,0-3.4,0c-1.4,0-2.1-0.5-2.1-1.9c-0.1-1.9,0-3.8,0.1-5.7
c0.2-2.6,0.1-5.3,0.1-7.9c0.1-7.8,0.1-15.6,0.3-23.4c0.1-3.2,0.1-6.4,0.2-9.6c0-1.8-0.8-2.6-2.6-2.6c-13,0-26.1,0-39.1,0
c-1.8,0-2.4,0.6-2.4,2.5c0,4.5-0.1,9,0.1,13.6c0.3,8,0,15.9,0.2,23.9c0.1,3,0.1,5.9,0.2,8.9c0,1.8-0.6,2.4-2.4,2.4
c-1.1,0-2.2,0-3.2,0c-1.6,0-1.8-0.6-1.7-1.9c0.3-6.2,0.4-12.4,0.4-18.7c0-24.8,0-49.7-0.1-74.5c0-3.4,0-6.8-0.4-10.2
c-0.3-2.6,0.4-3.2,3-3.2c4.1,0,4.2,0.1,4.2,4.1c0,5.3,0.1,10.6,0,16c-0.3,9.5,0,19-0.2,28.5c0,1.8,0.5,2.4,2.8,2.3
c0.5,0,1-0.1,1.4-0.1c11.4,0,22.9,0,34.3,0c0.6,0,1.2,0.1,1.9-0.2c-1.6-0.1-3.4-1.7-4-3.3c-0.4-1.1,0.1-2.8,1.1-3.7
c0.5,0.4-0.2,0.8,0.1,1.3c0.6-1.1,1.1-2.2,1.7-3.3c1.2-2.1,2.6-4,4.2-5.8c0.4-0.5,0.5-0.9,0.5-1.5c0-4.1,0.1-8.2-0.1-12.4
c-0.2-5,0-10-0.2-15c-0.1-1.5-0.2-2.9-0.2-4.4c0-2.1,0.6-2.7,2.6-2.6c1,0,2,0,3,0.2c1.3,0.2,1.8,1,1.8,2c0,4,0.1,8.1-0.1,12.1
c-0.2,3.8-0.1,7.6-0.1,11.4c0,1-0.4,2.5,0.2,2.8c0.7,0.3,1.5-1,2.3-1.5c3-2.1,5.9-4.3,9.3-5.8c2.4-1,4.7-1.7,7.2-1.9
c2.2-0.2,4.3,0.8,6.3,2c1.2,0.8,2.2,1.8,3.3,2.8c3.5,3.1,6.4,6.7,8.6,10.9c0.7,1.3,0.9,2.7,0.9,4.2c0,1.9-0.3,3.5-1.2,5.1
c-0.1,0.1-0.1,0.3-0.1,0.5c0.8,4-0.7,7.6-2.2,11.1c-3.1,7.4-5.3,15.2-7.9,22.8c-0.8,2.3-1.6,4.7-2.6,6.9c-0.1,0.3-0.3,0.6-0.2,0.9
c0.1,3.6-1,7.1-1.8,10.5c-0.8,3.4-0.9,6.7-1.1,10.1c0,0.3-0.2,0.7,0.2,0.9c0.4,0.2,0.5-0.2,0.8-0.4c4.7-4.6,8.9-9.7,12.1-15.5
c1.2-2.1,2.4-4.1,3.6-6.2c0.6,0.3-0.1,0.7,0.3,1c1.1-1.6,2.2-3.1,3.3-4.7c0.4-0.5,0.6-1.4,1.5-1.3c0.1,0,0.2-0.1,0.2-0.1
c1.4-3.1,4.3-5.1,6.1-7.8c0.5-0.7,0.6-1.8,2-1.9c0.3,0,0.6-1.2,1.1-1.7c0.2-0.2,0.3-0.5,0.5-0.6c2.7-1.5,4.3-4.2,6.2-6.6
c1.5-1.8,3.2-3.3,4.9-4.9c2.9-2.6,5.8-5.2,9-7.5c4.4-3.2,8.3-7.2,12.9-10.1c1.7-1,3.5-1.9,5.1-3c3-2,6.4-3.4,9.4-5.3
c3.1-2,6.7-3.2,10-4.8c3.3-1.5,6.7-3.1,10.1-4.2c3.4-1.1,6.8-2.5,10.3-3.3c2.2-0.5,4.4-1.1,6.6-1.7c0.1,0,0.1-0.1,0.2-0.1
c0.7-0.1,1.6-0.3,1.8,0.5c0.2,0.9-0.9,1.1-1.4,1.1c-0.8,0-0.9,0.5-1.2,0.9c-0.3,0.5-0.8,1-1.5,1.3c-0.4-0.4-0.1-1.8-1.4-1.1
c-0.2,0.1-0.5,0.3-0.4,0.5c0.2,1.1-0.5,1.1-1.2,1.1c-0.2,0-0.4-0.2-0.5,0.1c-0.6,1.3-1.9,1.2-3,1.4c-1.3,0.2-2.4,0.6-3.4,1.3
c-1.4,0.8-2.8,1.6-4.4,1.7c-0.3,0-0.7,0.1-0.9,0.3c-0.6,0.7-1.4,0.9-2.3,0.9c-0.7,0-1.2,1.2-2,0.3c-0.1,0.1-0.2,0.1-0.2,0.2
c-0.4,1-1.1,0.8-1.9,0.1c0.3,0.8-0.1,1.1-0.5,1.3c-2.1,1.1-4.1,2.1-6.2,3.1c-4.4,2.3-8.9,4.4-13.1,7.1c-3.3,2.2-6.6,4.3-9.8,6.7
c-0.5,0.4-0.9,0.9-1.7,0.7c-0.1,0-0.2,0-0.2,0c0,1.9-1.9,1.8-2.9,2.7c-3.4,3.2-7.2,6.1-10.6,9.3c-1.5,1.4-3.2,2.8-4.7,4.3
c-2.5,2.5-4.7,5.2-7.2,7.7c-5.7,5.5-10.1,12.1-14.8,18.4c-2.9,3.9-5.5,7.9-8.3,11.9c-0.3,0.4-0.6,0.9-0.7,1.5
c1.2-1.1,2.3-2.4,3.1-3.8c2.3-3.8,5.1-7.3,8-10.6c1.9-2.1,3.2-4.5,5-6.7c2.3-2.7,4.6-5.5,7-8.1c2-2.2,3.9-4.4,5.9-6.6
c1.2-1.3,2.6-2.4,3.9-3.5c1.4-1.1,2.6-2.4,3.8-3.6c0.6-0.6,1.1-1,2-0.7c0.4,0.2,0.6,0,0.5-0.5c-0.2-0.7,0.2-1.2,0.7-1.6
c3-2.6,5.9-5.5,9.2-7.6c2.9-1.8,5.1-4.3,8.1-6c2.2-1.2,4.3-2.6,6.6-3.6c0.7-0.3,1.3-1,1.9-1.4c1.8-1.1,3.6-2.1,5.6-2.5
c0.1,0,1,0,0.2-0.6c0,0,0.1-0.2,0.2-0.2c0.1-0.1,0.2-0.1,0.3,0c1.3,0.5,1.2-1.7,2.4-1.2c1.2,0.5,1.6-0.7,2.3-1c1-0.4,1.6-1.8,3-1.2
c0.2,0.1,0.5,0,0.7-0.2c2.1-1.4,4.5-1.9,6.8-2.8c0.9-0.3,2.1,0.1,2.8-1c0.9,0.6,1.4,0.1,1.7-0.7c0-0.1,0.2-0.1,0.2-0.1
c1.1,0.6,1.8-0.1,2.5-0.8c0.1-0.1,0.3-0.2,0.4-0.1c1.6,0.2,2.8-0.6,4.1-1.4c0.2-0.1,0.4-0.2,0.7-0.2c0.4-0.1,1-0.3,1.2,0.1
c0.3,0.5-0.5,0.4-0.6,0.7c-0.2,0.8-0.7,1.1-1.4,1.4c-0.4,0.1-0.7,0.4-1.1,0.3c-0.5-0.2-0.8-0.1-0.7,0.5c0.1,0.3,0,0.5-0.4,0.4
c-0.9-0.3-1.1,0.4-1.3,1c-0.1,0.2,0.2,0.5-0.1,0.6c-0.3,0.1-0.4-0.1-0.4-0.4c0-0.9-0.4-0.6-0.9-0.4c-0.8,0.3-1.4,0.7-2.1,1.5
c-0.7,0.8-1.9,1.3-3,1.9c-0.1,0-0.2,0-0.3-0.1c-0.9-0.7-0.9-0.7-1.6,0.5c0.2,0.2,0.4,0.1,0.5,0c0.4-0.2,0.9-0.3,1,0.2
c0.1,0.6-0.5,0.3-0.7,0.5c-0.8,0.3-1.6,0.6-2.2,1.1c-0.9,0.8-1,0.3-1-0.5c0-0.2-0.1-0.4-0.5-0.4c0.1,0.7,0.4,1.5-0.2,2
c-1.2,0.9,0-1.5-1.2-0.9c0.1,0.3,0.6,0.8-0.3,0.9c-0.5,0-0.4,0.5-0.6,0.8c-0.4,0.3-0.9,0.4-1.3,0.6c-0.6,0.2-0.7-0.4-0.9-0.7
c-0.2-0.2-0.4-0.3-0.8-0.3c-0.1,0.5,0.8,1.6-0.7,1.2C222.4,119.7,222.4,120.8,221.9,121c-0.1-0.1,0,0-0.1-0.1
C221.9,121,221.9,121,221.9,121z"/>
<path class="st2" d="M138.3,131c-3.2,10.1-7.3,19.8-10.1,30C130.2,150.5,134.3,140.8,138.3,131z"/>
<path class="st3" d="M120.6,111.6c-2.9,2.2-6.1,4.2-8.5,7.2c-0.3-0.8-0.1-1.2,0.2-1.5c2.6-2.1,5.2-4.1,7.8-6.2
C120.3,111.3,120.5,111.4,120.6,111.6z"/>
<path class="st4" d="M104.2,127.8c0.4-0.8,0.8-1.5,1.2-2.3C105.7,126.6,105.1,127.2,104.2,127.8z"/>
<path class="st5" d="M218.6,124.4c-0.3-0.1-0.9,0.6-0.9-0.3c0-0.3,0-0.6,0.3-0.8c0.2-0.1,0.4-0.1,0.6,0
C218.9,123.7,218.5,124,218.6,124.4C218.6,124.4,218.6,124.4,218.6,124.4z"/>
<path class="st6" d="M203.1,134.2c0.2,0.5,0.5,1,0.1,1.5c-0.3,0.3-0.6-0.1-0.5-0.6C202.8,134.8,203,134.5,203.1,134.2z"/>
<path class="st7" d="M139.2,128.1c0.3,0.6,0.4,1-0.1,1.5C138.9,129.1,138.9,128.7,139.2,128.1z"/>
<path class="st8" d="M186.2,152c-0.2,0.3-0.5,0.3-0.7,0.2c-0.2-0.1-0.4-0.2-0.3-0.4c0.1-0.3,0.4-0.3,0.6-0.1
C185.9,151.7,186,151.9,186.2,152z"/>
<path class="st9" d="M221.9,121c-0.3,0.1-0.6,0.2-0.7-0.2c0-0.2,0-0.4,0.3-0.4C222,120.4,221.9,120.8,221.9,121
C221.9,121,221.9,121,221.9,121z"/>
<path class="st10" d="M212.4,125.7c-0.1-0.1-0.2-0.2-0.2-0.3c0-0.2,0.2-0.3,0.3-0.2c0.2,0,0.3,0.2,0.3,0.3
C212.8,125.7,212.7,125.8,212.4,125.7z"/>
<path class="st11" d="M183.3,154c-0.2,0.1-0.3,0.3-0.4,0.3c-0.2,0-0.4-0.1-0.4-0.3c0-0.2,0.2-0.3,0.3-0.2
C183,153.8,183.1,153.9,183.3,154z"/>
<path class="st12" d="M214.6,125.6c-0.1,0.2-0.3,0.2-0.4,0.2c-0.1-0.1-0.3-0.2-0.3-0.3c0-0.2,0.1-0.3,0.3-0.2
C214.4,125.4,214.5,125.5,214.6,125.6z"/>
<path class="st13" d="M140.1,127.2c-0.2,0.1-0.3,0.2-0.4,0.2c0,0-0.2-0.2-0.2-0.2c0.1-0.1,0.2-0.2,0.3-0.3
C139.9,126.9,140,127.1,140.1,127.2z"/>
<path class="st14" d="M128.1,162.3c-0.1-0.1-0.3-0.1-0.3-0.2c-0.1-0.2,0.1-0.3,0.3-0.3c0.1,0,0.2,0.1,0.2,0.2
C128.3,162.1,128.2,162.2,128.1,162.3z"/>
<path class="st15" d="M127.7,163.5c0,0.2-0.1,0.3-0.3,0.4c-0.1,0-0.2-0.1-0.2-0.2c0-0.2,0.1-0.3,0.3-0.3
C127.5,163.4,127.6,163.4,127.7,163.5z"/>
<path class="st16" d="M125.3,171.8c-0.1,0-0.3,0.1-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1,0.2-0.2,0.3-0.1
C125.2,171.5,125.2,171.6,125.3,171.8z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 283.7 283.7" style="enable-background:new 0 0 283.7 283.7;" xml:space="preserve">
<style type="text/css">
.st0{fill:#CFADC5;}
.st1{fill:#84285E;}
</style>
<g>
<path class="st0" d="M142,282.7C64.6,283-0.1,219.4,1.2,139.7C1.9,101.2,16,68.2,43.5,41.2c27.3-26.9,60.6-40.4,98.8-40.3
C181.1,0.9,214.6,15,242,42.6c27.5,27.7,41,61.6,40.9,100.6c-0.1,24.9-6.6,48.3-19.3,69.9c-12.7,21.6-29.9,38.7-51.6,51.2
C190.4,276.6,167,282.7,142,282.7z"/>
<path class="st1" d="M120.4,190.8c-1.5,0-2.9,0-4.4,0c-0.6,0-1-0.2-1.4-0.7c-7.4-9.6-14.7-19.1-22.1-28.7c-2.3-3-3.2-3-5,0.3
c-0.3,0.5-0.4,1.1-0.3,1.6c0.3,7.6,0.1,15.1,0.1,22.7c0,1.2-0.1,2.4-0.1,3.6c0,0.9-0.3,1.2-1.2,1.2c-5.2,0-10.4,0-15.6,0
c-0.9,0-1.2-0.2-1.3-1.2c-0.2-1.8-0.2-3.5-0.2-5.3c0-29.5,0-59,0-88.5c0-11.2,0-22.3,0-33.5c0-0.3,0-0.6,0-1c0-2.7,1.1-3.7,3.8-3.5
c2.8,0.3,5.7,0.2,8.5,0.2c1,0,2.1-0.2,3.1-0.2c2.1,0,3.1,0.8,3.1,2.9c0,5.9,0,11.8,0,17.6c0,15.9,0,31.8,0,47.6
c0,3,0.1,6.1-0.1,9.1c0,0.8-0.2,1.9,0.7,2.3c0.7,0.3,1.3-0.6,1.9-1.2c4.4-4.5,8.7-9,13.1-13.5c2.4-2.5,4.9-5,7.3-7.5
c1.1-1.2,2.4-1.8,4-1.7c4.6,0.2,9.3,0.1,13.9,0.1c1.4,0,2.9-0.1,4.3-0.1c0.3,0,0.6,0,0.8,0c0.8,0.1,1.8,0,2.1,0.9
c0.2,0.6-0.7,1-1.2,1.5c-5.4,5.2-10.8,10.5-16.2,15.7c-4.1,4-8.3,7.9-12.4,11.8c-1.8,1.7-2,3-0.4,5c9.1,11.5,18.2,23,27.3,34.5
c1.7,2.1,1.7,2.1,4,0.5c0.2-0.1,0.3-0.2,0.5-0.4c0.9-0.7,1.6-1.2,2.9-0.8c2.1,0.6,4.3-0.7,5-3c0.7-2.1,2.2-3.4,3.8-4.6
c1.2-0.9,2.4-1.7,3.4-2.8c0.8-0.7,1.4-1.5,1.8-2.5c0.5-1.1,1.2-2,2.2-2.6c0.5-0.2,0.8-0.6,1.1-1.1c0.7-1.1,1.5-2,2.4-2.8
c1.3-1.1,2.4-2.3,2.9-4c0.2-0.6,0.6-1,1-1.5c1.2-1.4,2.5-2.7,3.5-4.2c0.5-0.6,1-1.3,1.7-1.7c1.9-1.1,2.9-2.8,3.6-4.8
c1.2-3.3,1.8-6.7,2.6-10.1c0.9-3.4,3-5.7,6.6-6.6c1.1-0.3,2.3-0.2,3.3,0.3c3.9,1.9,7.9,3.7,11.4,6.3c3.6,2.7,5.5,6.6,6,11.1
c0.2,1.9-0.3,3.8-1.9,5.2c-0.9,0.7-1.4,1.7-1.7,2.8c-0.2,1.1-0.6,2.1-1.4,2.9c-2.1,2.3-2.6,5.2-2.8,8.1c-0.2,3.4-0.7,6.7-1.6,10
c-0.7,2.4-1,4.9,0.1,7.3c0.3,0.7,0.7,1.3,1.2,1.9c2.2,2.4,4.9,2.3,6.9-0.2c1-1.3,1.8-2.8,3.5-3.3c0.4-0.1,0.7-0.8,0.9-1.2
c1.2-1.9,2.4-3.9,3.6-5.8c0.9-1.4,1.7-2.8,3-3.9c1-0.9,1.5-2.2,2.1-3.4c0.5-1,0.9-1.9,1.4-2.9c0.8-1.8,2.4-2.5,4.2-2.8
c0.8-0.1,1.2,0.4,1.6,1c2.1,4,3.4,8.1,4.2,12.5c0.6,3.4,0.6,6.9,0.5,10.4c0,1-0.3,1.9-0.9,2.7c-1.7,2.2-3.4,4.5-5.2,6.8
c-0.1,0.2-0.2,0.3-0.4,0.4c-2,0.8-3.5,2.4-5.1,3.7c-1.2,0.9-2.4,1.7-4,1.8c-1.2,0.1-2.3,0.5-3.4,1.1c-1.6,0.8-3.4,0.9-5.1,0.9
c-4.9-0.2-9.7-1.1-14.3-3c-3.7-1.5-6.6-4-9-7.2c-3.3-4.3-3.3-4.3-3.6-10.1c-0.1-1.3-0.3-2.5-0.9-3.7c-0.9-1.6-2.5-2-4-0.9
c-0.9,0.6-1.5,1.4-2,2.4c-0.7,1.5-1.7,2.7-2.9,3.8c-4.1,3.7-7.3,8-10.9,12.1c-2.5,2.7-5.3,5.1-8.2,7.4c-1.3,1.1-3.1,1.3-4.7,1.5
c-2.4,0.3-4.7,1.1-6.6,2.6c-4.7,3.6-9.6,3.2-14.5,0.5c-2.8-1.5-5.2-3.3-7.2-5.9c-1.7-2.2-2.1-4.7-1.4-7.4c0.4-1.6,1.4-2.6,3-3
c2-0.5,3.9-1.1,5.9-1.7C120.4,190.9,120.4,190.9,120.4,190.8z"/>
<path class="st1" d="M209.1,103.6c0,2.9-0.1,5.5-0.7,8.1c-0.2,1.1-0.7,2.1-1.4,3c-1.9,2.7-4.5,4.8-7,7c-0.1,0.1-0.3,0.2-0.4,0.3
c-4.4,1.2-8.8,2.3-13-0.7c-3.7-0.6-5-3.8-6.5-6.6c-1.6-2.8-2-5.9-2-9c0-3.3,0.9-6.4,1.8-9.5c0.8-2.7,2.9-4.5,4.4-6.8
c0,0,0-0.1,0.1-0.1c1.5-0.4,2.6-1.7,4.3-1.8c1.5-0.1,3-0.3,4.5-0.5c5.7-0.8,9.8,1.7,12.8,6.4c1.2,1.8,2,3.7,2.8,5.7
C209.4,100.7,209,102.3,209.1,103.6z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,7 @@
<svg width="116" height="116" viewBox="0 0 116 116" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M58 0C25.97 0 0 25.97 0 58C0 90.03 25.97 116 58 116C90.03 116 116 90.03 116 58C116 25.97 90.03 0 58 0ZM32.05 77.28C32.05 77.69 31.58 79.42 28.53 79.42C25.34 79.42 24.9 77.72 24.9 77.19C24.9 76.66 24.9 32.14 24.9 31.03C24.9 29.39 26.1 24.94 32.05 24.94C32.05 24.94 49.86 24.94 51.15 24.94C52.44 24.94 65.56 25.88 65.56 40.29C65.56 54.7 52.67 56.81 51.03 56.81C49.39 56.81 32.05 56.81 32.05 56.81C32.05 56.81 32.05 76.87 32.05 77.28ZM88.58 89.49C84.63 92.04 80.85 87.82 80.85 87.82C80.85 87.82 75.4 90.98 65.56 90.98C55.72 90.98 42.54 86.15 42.54 73.4C42.54 60.66 54.84 57.14 64.86 57.14C74.88 57.14 78.83 59.34 78.83 59.34V50.3C78.83 50.3 79.18 46.17 83.05 46.17C86.92 46.17 88.59 50.3 88.59 50.3V80.09C88.58 80.09 92.53 86.94 88.58 89.49Z" fill="#C49212"/>
<path d="M58.6999 40.81C58.6999 31.03 49.7999 31.26 49.7999 31.26C49.7999 31.26 33.3199 31.26 32.9899 31.26C32.6599 31.26 31.8799 31.61 31.8799 32.9V50.77H49.0999C49.0899 50.77 58.6999 50.59 58.6999 40.81Z" fill="#C49212"/>
<path d="M65.5602 66.03C53.9002 66.03 51.6802 71.92 51.6802 72.44C51.6802 72.97 51.6802 74.08 51.6802 74.72C51.6802 75.36 51.7702 81.05 65.5602 81.05C79.3602 81.05 79.6202 75.04 79.6202 74.55C79.6202 74.05 79.6202 73 79.6202 72.44C79.6202 71.89 77.2102 66.03 65.5602 66.03Z" fill="#C49212"/>
<path d="M65.5599 40.2799C65.5599 25.8699 52.4399 24.9299 51.1499 24.9299C49.8599 24.9299 32.0499 24.9299 32.0499 24.9299C26.0999 24.9299 24.8999 29.3799 24.8999 31.0199C24.8999 32.1299 24.8999 76.6599 24.8999 77.1799C24.8999 77.7099 25.3399 79.4099 28.5299 79.4099C31.5799 79.4099 32.0499 77.6799 32.0499 77.2699C32.0499 76.8599 32.0499 56.7899 32.0499 56.7899C32.0499 56.7899 49.3899 56.7899 51.0299 56.7899C52.6699 56.7999 65.5599 54.6899 65.5599 40.2799ZM31.8699 50.7699V32.8999C31.8699 31.6099 32.6499 31.2599 32.9799 31.2599C33.3099 31.2599 49.7899 31.2599 49.7899 31.2599C49.7899 31.2599 58.6899 31.0299 58.6899 40.8099C58.6899 50.5899 49.0799 50.7699 49.0799 50.7699H31.8699Z" fill="#FFE3A4"/>
<path d="M88.5798 80.0899V50.2999C88.5798 50.2999 86.9098 46.1699 83.0398 46.1699C79.1698 46.1699 78.8198 50.2999 78.8198 50.2999V59.3499C78.8198 59.3499 74.8698 57.1499 64.8498 57.1499C54.8298 57.1499 42.5298 60.6699 42.5298 73.4099C42.5298 86.1499 55.7098 90.9899 65.5498 90.9899C75.3898 90.9899 80.8398 87.8299 80.8398 87.8299C80.8398 87.8299 84.6198 92.0499 88.5698 89.4999C92.5298 86.9399 88.5798 80.0899 88.5798 80.0899ZM79.6198 74.5499C79.6198 75.0499 79.3598 81.0499 65.5598 81.0499C51.7598 81.0499 51.6798 75.3699 51.6798 74.7199C51.6798 74.0699 51.6798 72.9599 51.6798 72.4399C51.6798 71.9099 53.9098 66.0299 65.5598 66.0299C77.2198 66.0299 79.6198 71.8899 79.6198 72.4399C79.6198 72.9999 79.6198 74.0499 79.6198 74.5499Z" fill="#FFE3A4"/>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,5 @@
<svg width="116" height="116" viewBox="0 0 116 116" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M58 116C90.0325 116 116 90.0325 116 58C116 25.9675 90.0325 0 58 0C25.9675 0 0 25.9675 0 58C0 90.0325 25.9675 116 58 116Z" fill="#E0005C"/>
<path d="M100.607 59.0076C100.653 58.5454 100.126 58.1848 99.7102 58.268C99.6825 58.1571 99.6363 58.0554 99.5808 57.9445C99.5253 57.6579 99.3035 57.3898 99.0354 57.2881C98.9244 57.2419 98.8043 57.2327 98.6841 57.2234C97.0755 56.7335 94.4593 58.5546 93.4794 59.248C91.2885 60.8011 89.1807 62.4835 87.1377 64.2215C86.999 64.2677 86.8511 64.3047 86.7032 64.3232C86.6108 64.3417 86.5183 64.3325 86.4351 64.3047C85.8712 64.7392 85.2888 65.1552 84.6972 65.5435C84.2996 65.941 83.8929 66.3385 83.4861 66.7268C82.7373 66.8932 82.1642 67.6327 81.4338 68.0672C81.0086 68.3168 80.3245 68.3723 79.8253 68.6866C79.2152 69.0656 78.716 69.8514 78.0411 70.3414C77.5419 70.7019 76.9318 70.8128 76.4326 71.1641C75.6006 71.7558 74.8333 72.7357 73.9366 73.4383C72.9659 74.1963 72.0784 74.7972 71.1077 75.3796C70.3774 75.5275 69.7396 75.3796 69.0185 75.8603C67.6503 76.7663 66.467 77.4966 64.9139 78.0975C64.7845 78.1437 64.6921 78.2269 64.6181 78.3194C64.1096 78.6059 63.6752 79.1699 63.2129 79.4287C62.5843 79.78 61.8817 79.8447 61.1607 80.1498C60.643 80.3717 60.19 80.7969 59.6446 80.9726C59.0159 81.1852 57.9158 81.2591 56.9637 81.3885C54.4676 81.7306 52.554 81.6104 52.2305 79.327C52.0086 77.774 52.6927 76.8125 53.3028 75.5091C54.0794 73.8358 54.4954 72.4121 55.3551 71.2751C56.0392 70.97 56.4922 70.4153 57.1393 70.2397C58.4335 69.8884 59.6261 70.3506 60.8001 70.4431C63.3608 70.6557 65.145 70.0086 66.8738 69.306C67.7982 68.9269 68.8428 68.7791 69.7303 68.3723C70.6085 67.9748 71.2279 67.226 72.0507 66.9302C72.7533 66.6713 73.5391 66.7083 74.2786 66.4125C75.314 66.0057 76.183 64.9333 77.4033 64.7577C77.9209 64.277 78.2537 63.8702 78.8361 63.5189C79.548 63.0844 80.5741 63.1029 81.517 62.6962C82.5062 62.2617 83.6987 61.1616 84.5492 60.2186C85.4644 59.211 86.4721 58.0277 86.8696 56.9183C88.0622 53.6181 86.1578 50.2068 85.1779 47.7293C84.3551 47.2856 83.9206 46.2317 83.218 45.6678C81.6742 44.4198 79.6682 43.8929 77.773 42.7743C76.5897 42.0809 74.5652 41.3968 73.4836 41.4338C72.818 41.4523 72.0045 41.9238 71.1632 42.1549C69.4253 42.6356 68.3344 43.0516 66.9662 43.8097C66.3283 44.1609 65.6073 44.4753 65.182 44.845C64.8585 45.1224 64.692 45.5569 64.3777 45.8804C63.3423 46.925 62.0389 47.8125 60.985 48.8756C60.6615 49.1992 60.4026 49.7169 60.0883 50.1144C59.3395 51.0666 58.7756 51.6582 58.036 52.5919C57.3242 53.4794 57.0376 54.2005 56.5199 55.1712C55.8543 56.4376 54.8836 57.5655 54.4676 58.9891C52.4431 60.7918 51.6943 63.9996 50.1042 66.0242C49.605 67.2629 49.0596 68.4925 48.4495 69.6943C48.1444 70.7019 47.7654 71.6911 47.2292 72.5601C47.3401 73.2811 46.9149 73.8913 46.5174 74.6863C46.2493 75.2225 46.0459 75.8603 45.8055 76.3411C45.1584 77.5891 44.2525 78.4858 44.3726 79.6413C44.4836 80.6675 45.3895 81.2037 45.8055 82.1189C48.3293 83.4778 50.7883 86.2604 54.0147 86.7596C54.4399 86.8243 55.1979 86.852 55.7988 86.7596C57.0931 86.5655 58.7663 85.9091 60.4396 85.7242C60.7909 85.6872 61.1699 85.7797 61.512 85.7242C63.1667 85.4654 63.8231 84.4485 64.9971 83.9678C65.219 83.8753 65.4501 83.8661 65.672 83.8291C65.6812 83.7736 65.6905 83.7182 65.6905 83.6719C66.7721 83.3022 67.789 82.803 68.7319 82.1466C68.7689 82.1743 68.8059 82.2021 68.8428 82.2205C69.5269 81.8877 70.2942 81.6936 70.9691 81.2776C71.4405 80.991 71.8103 80.4364 72.3095 80.1405C72.744 79.8817 73.3079 79.8817 73.7332 79.6228C74.2694 79.2993 74.7686 78.7354 75.3417 78.3841C75.9611 78.0051 76.6822 77.737 77.2184 77.3487C77.5789 77.0806 77.8192 76.6369 78.1983 76.4243C79.095 75.9158 80.1396 75.8973 80.9624 75.3889C82.1457 74.6678 82.8575 73.7618 83.7265 72.6063C84.8358 72.1903 85.5846 71.5616 86.4074 70.9515C86.8604 70.6187 87.2856 70.3414 87.7478 70.027C88.284 69.6573 88.8017 69.269 89.3102 68.8715C89.3194 68.853 89.3194 68.8253 89.3287 68.8068C89.3471 68.7513 89.3749 68.6866 89.4026 68.6219C90.5212 67.9378 91.6028 67.1983 92.6382 66.3847C92.9525 66.1351 93.2668 65.8578 93.5719 65.562C93.5904 65.5527 93.6089 65.5435 93.6366 65.5342C93.8122 65.4418 93.9139 65.3216 93.9694 65.1829C94.1728 64.9796 94.3761 64.7762 94.5795 64.5636C94.5888 64.5543 94.598 64.5543 94.6073 64.5451L94.8106 64.3971C96.9831 63.2416 100.311 61.6978 100.607 59.0076ZM60.1807 62.4096C60.8741 61.633 61.2901 60.6069 61.6044 59.3127C62.0296 58.8782 62.4919 58.4807 62.7692 57.8705C63.0928 57.9352 63.1112 57.6487 63.3978 57.6672C64.6458 56.5023 65.7829 55.1711 67.1511 54.0525C67.5948 53.692 68.1772 53.1651 68.4915 52.5087C71.2649 51.3901 74.482 45.788 77.5974 49.4118C78.0966 51.1128 77.6991 52.8878 76.9688 54.3669C76.6082 55.0972 75.8224 55.7628 75.4527 56.641C75.0089 57.6857 74.9812 58.4437 74.2878 59.1185C73.7332 59.6732 72.6146 60.459 71.6069 61.0784C70.5438 61.744 69.5454 62.5852 68.8428 62.8348C68.2419 63.0474 67.5763 62.992 66.9662 63.2508C65.293 63.9627 64.313 65.2199 62.8616 65.7284C61.5951 66.1721 59.9866 66.1998 58.8403 65.7284C57.8141 64.1938 59.395 63.2971 60.1807 62.4096Z" fill="#FEDAE9"/>
<path d="M45.6303 40.4447C43.6427 38.8269 41.3871 37.736 38.9003 37.1259C37.227 36.8855 35.5446 37.0057 33.8713 37.0612C31.7451 37.7083 29.6928 38.4941 28.1582 40.2043C27.7699 39.8068 27.8346 39.4555 27.8809 39.169C28.1212 37.7823 27.4464 37.4957 26.2169 37.5789C24.8672 37.6713 23.5082 37.5974 22.1493 37.5974C21.6501 37.5974 21.0862 37.4865 20.8735 38.1521C20.9013 38.4756 20.9475 38.7992 20.9475 39.132C20.9475 52.8693 20.9475 66.6066 20.9475 80.3532C20.9475 80.6768 20.9013 81.0003 20.8735 81.3331C20.892 81.481 20.9105 81.629 20.929 81.7769C20.9382 81.7769 20.9382 81.7769 20.9475 81.7769C22.8796 82.1374 24.8302 81.8046 26.753 81.9617C27.7237 82.0357 27.9548 81.5827 27.9271 80.7692C27.9271 75.1208 27.9271 69.4724 27.9271 63.6207C27.9271 63.5929 27.9271 63.5652 27.9271 63.5467C27.9456 63.5652 27.9641 63.5744 27.9733 63.5929C33.3536 68.7051 39.5289 67.9563 44.1604 64.6653C46.3883 63.0752 47.849 60.8843 49.0046 58.453C51.3434 51.7969 50.5114 45.7418 45.6303 40.4447ZM43.1805 52.1852C42.9864 55.7443 41.8585 58.8413 38.3919 60.4221C34.1764 62.3449 29.1936 59.9321 28.001 55.4485C26.9749 51.612 27.243 47.905 30.3769 45.0762C34.1671 41.6465 39.8248 42.8668 42.0897 47.452C42.82 48.9311 43.2729 50.4842 43.1805 52.1852Z" fill="#FEDAE9"/>
</svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 64.5 64.5" style="enable-background:new 0 0 64.5 64.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#F8B375;}
.st1{fill:#F7F5CE;}
</style>
<g>
<circle class="st0" cx="32.2" cy="32.2" r="32.2"/>
<path class="st1" d="M23.2,50.7c-2.8,0-5.5-0.4-8.2-1.2c-0.7-0.2-1.2-0.5-1.2-1.4c0.2-3.5,0.4-7.1,0.6-10.6c0.1-1.4,0.2-1.4,1.5-1
c1.3,0.4,2.5,0.8,3.9,0.8c0.6,0,1.2,0,1.4-0.7c0.2-0.7-0.2-1.1-0.7-1.4c-0.7-0.4-1.4-0.8-2.1-1.2c-3-1.7-4.6-4.1-4.6-7.5
c0-1.5-0.1-2.9,0.2-4.4c0.7-3.8,3.2-6.1,7.1-6.6c3.8-0.5,7.6-0.1,11.3,0.7c1,0.2,1.5,0.6,1.4,1.7c-0.3,3.1-0.5,6.2-0.7,9.3
c0,0.6-0.3,0.8-0.8,0.6c-1.2-0.4-2.5-0.7-3.8-0.7c-0.7,0-1.6,0-1.7,0.9c-0.2,0.9,0.6,1.1,1.3,1.4c1.2,0.5,2.4,1,3.5,1.9
c2.2,1.8,2.6,4.4,2.7,7c0.1,2.3-0.1,4.6-0.7,6.9c-0.8,2.8-2.6,4.6-5.5,5.2C26.4,50.5,24.8,50.7,23.2,50.7z"/>
<path class="st1" d="M41.7,36.9c0-3.6,0-7.2,0-10.9c0-0.9-0.3-1.2-1.2-1.2c-1,0.1-2,0-3,0c-1.1,0.1-1.2-0.5-1.2-1.3
c0-0.9,0.3-1.4,1.2-1.3c1.4,0,2.9,0,4.3,0c2.2,0,4.4,0,6.6,0c0.9,0,1.6,0.1,1.5,1.3c0,1.1-0.5,1.4-1.5,1.3c-1-0.1-1.9,0-2.9,0
c-0.7,0-1.1,0.2-1.1,1c0.1,3.9-0.1,7.8,0.1,11.7c0.2,3.5,0,6.9,0.1,10.4c0,1.2-0.8,1-1.6,1c-0.8,0-1.5,0.1-1.5-1.1
C41.7,44.2,41.7,40.6,41.7,36.9C41.7,36.9,41.7,36.9,41.7,36.9z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,5 @@
<svg width="116" height="116" viewBox="0 0 116 116" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M58 116C90.0325 116 116 90.0325 116 58C116 25.9675 90.0325 0 58 0C25.9675 0 0 25.9675 0 58C0 90.0325 25.9675 116 58 116Z" fill="#C2E4F2"/>
<path d="M65.008 76.4427C66.4408 81.4809 69.6209 84.698 74.8718 85.6687C77.6544 86.1864 80.4647 86.1772 83.2566 85.946C89.8387 85.3914 93.6567 82.202 95.5148 75.8788C96.4393 72.7541 96.809 69.5463 97.0032 66.3107C97.3729 59.9782 97.4376 53.6458 96.0232 47.415C94.7752 41.9237 91.7893 38.0595 85.9375 37.0057C82.97 36.4695 79.984 36.4325 76.9888 36.6359C69.9445 37.1166 65.9971 40.4261 64.3886 47.2763C63.2515 52.1204 63.196 57.0477 63.2515 61.9843C63.2607 65.1737 63.4641 68.363 63.9171 71.5154C64.139 73.1701 64.5457 74.8249 65.008 76.4427ZM78.9394 51.4733C78.9949 50.7984 79.0596 49.8832 80.0487 49.9017C81.0564 49.9202 81.1581 50.7522 81.2783 51.5565C81.7035 54.4315 81.5186 57.3343 81.5833 60.2186C81.5279 63.1583 81.6758 66.1073 81.2598 69.0286C81.1488 69.8236 81.0287 70.6926 80.0303 70.7019C79.0503 70.7111 78.9949 69.7682 78.9394 69.0933C78.4587 63.2138 78.431 57.3436 78.9394 51.4733Z" fill="#0163A4"/>
<path d="M75.7954 59.2389C76.0635 57.8984 76.082 56.6042 75.8694 55.3562C75.3425 55.8831 74.7785 56.3731 74.1776 56.8168C73.4843 57.3345 72.8187 57.7875 72.2455 58.2405C71.5245 58.8044 70.8311 59.3406 70.1378 59.8675C69.3982 60.4222 68.5477 60.6718 67.7619 61.1895C67.3182 61.4853 67.0039 61.9938 66.5324 62.3081C65.0533 63.2787 63.5465 64.2217 62.1413 65.1554C61.5681 65.5344 61.0967 66.0059 60.6437 66.1723C59.7747 66.4866 58.6746 66.4496 58.1847 66.7824C57.8149 67.032 57.4544 67.7623 56.9552 68.1044C56.0584 68.7238 54.8381 68.8717 53.3498 69.223C51.5656 69.639 50.521 71.1643 49.3099 71.1551C49.162 71.1551 48.5334 70.9424 48.4317 70.85C47.5165 69.9718 48.5704 68.4649 48.783 67.5959C49.0603 66.5051 48.8385 65.0537 49.0511 63.9351C49.2082 63.0754 49.5873 62.6686 49.6705 62.003C50.1789 61.4391 50.5949 61.2357 50.9 60.681C51.9076 58.8876 50.974 55.1806 51.7782 52.8602C51.9169 52.4719 52.2867 52.1021 52.5732 51.6399C52.7766 51.3071 52.9708 50.7894 53.1926 50.5213C53.5162 50.1238 54.0154 49.9204 54.2465 49.6061C55.1894 48.3119 54.8104 47.3967 54.0708 46.1487C53.1371 44.5679 52.0093 43.588 50.9092 42.3862C48.6998 41.36 45.2516 39.6128 42.3858 40.9625C41.8126 42.3307 42.4967 44.5956 41.9421 46.047C41.6 46.2504 41.6555 46.5092 41.5908 46.8605C40.5646 47.637 39.9638 48.9035 39.3906 50.2163C38.0224 51.4643 37.0795 53.1468 35.8777 54.5889C35.3507 55.2268 34.5372 55.7075 33.8531 56.3176C33.1136 56.974 32.5127 57.8337 31.8286 58.3514C29.3418 60.2558 27.2156 62.6131 24.886 64.8503C24.1464 65.0075 23.5917 65.747 22.8614 66.1723C22.4454 66.4126 21.7706 66.4773 21.2806 66.7824C20.6797 67.1614 20.1805 67.9287 19.5241 68.4094C19.0342 68.7607 18.4241 68.8717 17.9433 69.223C17.1298 69.8054 16.3625 70.7668 15.4843 71.4601C14.1901 72.4678 13.053 73.1888 11.6756 73.9746C10.8528 75.1764 10.141 76.4522 9.64178 77.8019C9.50312 78.1809 9.3737 78.5969 9.28125 79.0129C9.6233 79.4659 10.03 79.8356 10.483 80.113C11.1579 79.7894 11.9159 79.5953 12.5815 79.1885C13.0438 78.902 13.4135 78.3658 13.9035 78.0699C14.3287 77.8111 14.8927 77.8111 15.3087 77.5615C15.8356 77.2472 16.3256 76.6833 16.8895 76.3412C17.4996 75.9622 18.2114 75.7034 18.7384 75.3243C19.0989 75.0655 19.33 74.6217 19.709 74.4091C20.5965 73.9007 21.6134 73.8914 22.4362 73.3922C23.601 72.6804 24.3036 71.7837 25.1633 70.6466C26.2541 70.2306 26.9937 69.6205 27.798 69.0196C28.2417 68.6868 28.667 68.4187 29.1199 68.1044C31.8286 66.2555 34.1027 63.9813 36.4139 61.8089C36.8021 61.4391 37.3291 61.2542 37.7358 60.8937C38.0224 60.6441 38.2165 60.2281 38.5308 59.9785C38.8544 59.7196 39.3351 59.6364 39.6772 59.3683C40.8882 58.4069 41.5353 56.105 43.4582 56.4193C44.7432 57.2513 43.8557 59.1372 43.5506 60.792C43.3195 62.04 43.2733 63.1401 42.9312 64.2494C42.8018 64.6654 42.5522 65.0444 42.4043 65.4697C42.053 66.4681 41.8681 67.5497 41.5261 68.317C41.3042 68.807 40.8142 69.2137 40.4722 69.7407C40.0839 70.3323 39.9268 71.0811 39.594 71.4694C39.3628 71.7282 38.9284 71.9408 38.6233 72.2829C37.6341 73.4107 35.9146 74.594 34.3153 74.6217C32.6513 74.6495 31.1537 73.4754 29.3048 73.2998C27.5391 73.1334 26.0508 73.688 24.1187 73.6049C23.8968 73.9561 23.3606 73.9469 23.0648 74.215C21.5117 76.258 23.5825 79.1423 24.738 80.4088C26.1247 81.9341 27.308 82.5628 29.3048 83.5612C30.6175 84.2175 32.032 84.9109 33.169 84.9848C34.0103 85.0403 35.1012 84.7352 36.155 84.6798C37.2181 84.6243 38.3367 84.7352 39.141 84.4764C39.5477 84.347 39.8528 83.9217 40.2873 83.6629C40.7588 83.3763 41.3134 83.2746 41.6093 83.0527C41.9883 82.7754 42.3026 82.2392 42.6631 81.8325C43.0422 81.3887 43.5784 81.0836 43.8927 80.7139C44.2162 80.3441 44.3641 79.8541 44.6877 79.4936C45.2054 78.9204 45.7878 78.5507 46.1853 77.8666C47.3871 77.3489 48.5057 76.6001 49.6982 76.1378C50.7336 75.7403 51.8152 75.6294 52.7766 75.1209C53.9692 74.4923 55.3004 73.8729 56.5576 73.1888C57.556 72.6434 58.5637 72.3661 59.5436 71.8669C60.1722 71.5433 60.6714 70.887 61.3 70.5449C61.7993 70.2768 62.3632 70.36 62.8809 70.1382C63.6851 69.7961 64.4709 68.9734 65.2567 68.4094C66.6434 67.4203 67.8914 66.4773 69.7403 65.9689C69.9899 65.6084 70.4521 65.5067 70.7109 65.1554C72.4766 64.7486 73.8079 63.3804 75.213 62.3081C75.4996 61.5315 75.7677 60.7458 76.0173 59.96C76.0266 59.9045 76.045 59.8398 76.0543 59.7843C75.8509 59.6641 75.7492 59.47 75.7954 59.2389Z" fill="#0163A4"/>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 24 KiB