Compare commits

...

11 Commits

Author SHA1 Message Date
Luca ac0f55fb88 Add 'Save the date' blog post
continuous-integration/drone/push Build is passing Details
2022-12-08 21:16:38 +01:00
Luca 2cc8246f01 Fix previous fix
continuous-integration/drone/push Build is passing Details
2022-12-03 18:49:33 +01:00
Luca 714689596b Use max of viewport height, height of background stars as minimum body height
continuous-integration/drone/push Build is passing Details
2022-12-03 18:47:31 +01:00
Luca ec8462eecf Always load remote OCR-A font to prevent broken local fonts from being used
continuous-integration/drone/push Build is passing Details
2022-12-03 18:43:46 +01:00
Luca e60f77ec27 Tweak 'uber' a little more
continuous-integration/drone/push Build is passing Details
2022-12-02 16:35:53 +01:00
Luca 01d4a3d5be Remove currently broken links and add year to Relive
continuous-integration/drone/push Build is passing Details
2022-12-02 00:57:34 +01:00
Luca 5f14f8170c Reference 'large' breakpoint in clip-path calculation 2022-12-02 00:57:02 +01:00
Luca 63fa0d23f8 uber
continuous-integration/drone/push Build is passing Details
2022-12-01 20:52:45 +01:00
Luca 659dcd26ae Add motto and date
continuous-integration/drone/push Build is passing Details
2022-12-01 20:51:07 +01:00
Luca 4d86f502b1 Simplify clip-path calculation
continuous-integration/drone/push Build is passing Details
2022-12-01 19:48:02 +01:00
Luca 25b8ef7dc5 Update design (WIP)
continuous-integration/drone/push Build is passing Details
2022-12-01 19:40:54 +01:00
15 changed files with 877 additions and 231 deletions

View File

@ -1,4 +1,5 @@
$color-background: #151821; $color-background-0: #272771;
$color-background-100: #1d71b8;
$color-burger: #ddd; $color-burger: #ddd;
$color-highlight: #fff200; $color-highlight: #fff200;
$color-link: #fff200; $color-link: #fff200;

View File

@ -20,3 +20,8 @@
font-weight: 700; font-weight: 700;
src: local("Noto Sans Mono Bold"), local("NotoSansMono-Bold"), url(/NotoSansMono-Bold.ttf); src: local("Noto Sans Mono Bold"), local("NotoSansMono-Bold"), url(/NotoSansMono-Bold.ttf);
} }
@font-face {
font-family: "OCR A";
src: url(/OCRA.ttf), url(/OCRA.otf);
}

View File

@ -71,7 +71,7 @@ $timeslot-height: 0.65em;
} }
& > .schedule-title { & > .schedule-title {
background: $color-background; background: $color-background-0;
font-size: 1.17rem; font-size: 1.17rem;
margin-bottom: 0; margin-bottom: 0;
padding-bottom: 0.5em; padding-bottom: 0.5em;
@ -92,7 +92,7 @@ $timeslot-height: 0.65em;
} }
.schedule-timeline { .schedule-timeline {
background: $color-background; background: $color-background-0;
padding: 0 0.5em 0 1em; padding: 0 0.5em 0 1em;
position: sticky; position: sticky;
left: 0; left: 0;
@ -107,7 +107,7 @@ $timeslot-height: 0.65em;
} }
.schedule-days { .schedule-days {
background: $color-background; background: $color-background-0;
display: flex; display: flex;
font-size: 1rem; font-size: 1rem;
left: 0; left: 0;

View File

@ -1,9 +1,14 @@
$footer-spacing: 200px;
$footer-height: 200px;
//* //*
$header-height: 150px; $header-height: 200px;
$header-spacing: 150px; $header-spacing: 200px;
$header-variant: header; $header-variant: header;
/*/ /*/
$header-height: 1000px; $header-height: 1000px;
$header-spacing: 300px; $header-spacing: 300px;
$header-variant: header-tall; $header-variant: header-tall;
//*/ //*/
$stars-height: 1057px;

View File

@ -6,23 +6,38 @@
* { * {
box-sizing: border-box; box-sizing: border-box;
font-family: "Noto Sans", sans-serif;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
body { body {
background: $color-background; background: linear-gradient($color-background-0, $color-background-100);
color: $color-text; color: $color-text;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
font-family: "Noto Sans", sans-serif;
margin: 0 auto; margin: 0 auto;
min-height: 100vh; min-height: unquote("max(100vh, #{$stars-height})");
max-width: $large; max-width: $large;
main { main {
flex-grow: 1; flex-grow: 1;
} }
@media screen and (min-width: $small) {
&::before {
background: url(/stars.svg) repeat-x top;
clip-path: polygon(0 0, 100% 0, 100% 100%, calc(50% + #{$large * 0.5}) 100%, calc(50% + #{$large * 0.5}) $header-spacing, calc(50% - #{$large * 0.5}) $header-spacing, calc(50% - #{$large * 0.5}) 100%, 0 100%);
content: '';
display: block;
height: $stars-height;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
}
}
} }
header, footer { header, footer {
@ -37,7 +52,7 @@ header {
margin-top: 1rem; margin-top: 1rem;
pre { pre {
font-family: "Noto Sans Mono", monospace; font-family: "OCR A", "Noto Sans Mono", monospace;
font-size: 0.8rem; font-size: 0.8rem;
font-weight: bold; font-weight: bold;
line-height: 1; line-height: 1;
@ -45,7 +60,6 @@ header {
span { span {
color: $color-highlight; color: $color-highlight;
font-family: inherit;
} }
} }
@ -91,8 +105,15 @@ header {
main { main {
padding: 1rem; padding: 1rem;
.tldr { .upcoming {
margin-top: -0.8rem; font-family: "OCR A", "Noto Sans Mono", monospace;
font-size: 3em;
text-align: center;
.uber {
background: url(/uber.svg) no-repeat 50% 69% / 92.5% 92.5%;
color: transparent;
}
} }
} }
@ -109,7 +130,24 @@ footer {
} }
@media screen and (min-width: $small) { @media screen and (min-width: $small) {
margin-bottom: 0.5rem; margin-bottom: 0;
&::before {
background: url(/footer.svg) bottom / auto $footer-height no-repeat;
content: '';
display: block;
height: $footer-height;
left: 0;
margin-top: calc(1.5rem + 1.5em);
position: absolute;
width: 100%;
z-index: -1;
}
& > nav {
margin-bottom: $footer-spacing;
margin-top: 1.5rem;
}
} }
} }

View File

@ -4,10 +4,10 @@ paginate = 3
title = 'Intergalaktische Erfahrungsreise' title = 'Intergalaktische Erfahrungsreise'
[menu] [menu]
[[menu.footer]] # [[menu.footer]]
name = "Kontakt" # name = "Kontakt"
url = "mailto:info@fairydust.reisen" # url = "mailto:info@fairydust.reisen"
weight = 5 # weight = 5
[[menu.footer]] [[menu.footer]]
name = "Impressum" name = "Impressum"
url = "https://hackerspace-bamberg.de/Impressum" url = "https://hackerspace-bamberg.de/Impressum"
@ -24,7 +24,7 @@ title = 'Intergalaktische Erfahrungsreise'
weight = 30 weight = 30
[[menu.main]] [[menu.main]]
name = "Relive" name = "Relive 2022"
url = "https://streaming.media.ccc.de/iger-2022/relive" url = "https://streaming.media.ccc.de/iger-2022/relive"
weight = 12 weight = 12
# [[menu.main]] # [[menu.main]]
@ -39,10 +39,10 @@ title = 'Intergalaktische Erfahrungsreise'
# name = "Engelsystem" # name = "Engelsystem"
# url = "https://helfen.fairydust.reisen/" # url = "https://helfen.fairydust.reisen/"
# weight = 40 # weight = 40
[[menu.main]] # [[menu.main]]
name = "Feedback" # name = "Feedback"
url = "https://wiki.fairydust.reisen/feedback" # url = "https://wiki.fairydust.reisen/feedback"
weight = 70 # weight = 70
[minify] [minify]
minifyOutput = true minifyOutput = true

View File

@ -0,0 +1,14 @@
---
slug: "save-the-date-2023"
title: "IGER 2023: Save the date!"
date: 2022-12-08
menu:
main:
parent: Aktuelles
---
Vor ein paar Wochen haben wir es per Mastodon und Twitter schon angedeutet, heute verkündet der [backspace](https://hackerspace-bamberg.de) offiziell: Die Intergalaktische Erfahrungsreise findet auch 2023 wieder in Bamberg statt!
Diesmal im Sommer, nämlich **vom 20. bis zum 23. Juli** (4 Tage!), begeben wir uns zu unserem nächsten Reiseziel **„23.000 Meilen über dem Meer“**.
Folgt uns gerne auf [Mastodon](https://chaos.social/@erfahrungsreise) (oder [Twitter](https://twitter.com/erfahrungsreise)), um den Ticket- und Merchverkauf nicht zu verpassen.

View File

@ -20,11 +20,11 @@
<body> <body>
<header> <header>
<div class="header-brand"> <div class="header-brand">
<img alt="Logo der Intergalaktischen Erfahrungsreise, kurz IGER" class="header-logo" src="/icon.svg"> <img alt="Logo der Intergalaktischen Erfahrungsreise, kurz IGER" class="header-logo" src="/logo.svg">
<pre><span>I</span>NTER <pre><span>I</span>nter
<span>G</span>ALAKTISCHE <span>G</span>alaktische
<span>E</span>RFAHRUNGS <span>E</span>rfahrungs
<span>R</span>EISE</pre> <span>R</span>eise</pre>
</div> </div>
<input class="nav-toggle" id="toggleMainNav" type="checkbox"> <input class="nav-toggle" id="toggleMainNav" type="checkbox">
<label class="nav-burger" for="toggleMainNav"> <label class="nav-burger" for="toggleMainNav">
@ -39,6 +39,7 @@
</nav> </nav>
</header> </header>
<main> <main>
<p class="upcoming">23.000 Meilen <span class="uber">uber</span> dem Meer<br>20.-&#8203;23.&#8203;7.&#8203;2023</p>
{{ block "main" . }} {{ block "main" . }}
{{ end }} {{ end }}
</main> </main>

BIN
static/OCRA.otf Normal file

Binary file not shown.

BIN
static/OCRA.ttf Normal file

Binary file not shown.

175
static/footer.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 140 KiB

View File

@ -2,212 +2,323 @@
<!-- Created with Inkscape (http://www.inkscape.org/) --> <!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
width="1999.9999" width="1000"
height="300" height="200"
viewBox="0 0 529.16662 79.375002" viewBox="0 0 1000 200.00001"
version="1.1" version="1.1"
id="svg537" id="svg20302"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"> xmlns:svg="http://www.w3.org/2000/svg">
<defs <defs
id="defs534"> id="defs20299" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath311">
<path
clip-rule="nonzero"
d="M 3.4439182e-7,418.00001 1196.2188,418.00003 V 1444 l -1237.233462,0.8561 z"
id="path313"
style="stroke-width:0.999997" />
</clipPath>
</defs>
<g <g
id="layer1"> id="layer1">
<path
fill-rule="nonzero"
fill="#ffffff"
fill-opacity="1"
d="m 188.10528,60.336566 c 0,5.56452 -4.5117,10.07622 -10.07622,10.07622 -5.56452,0 -10.07621,-4.5117 -10.07621,-10.07622 0,-5.564515 4.51169,-10.076211 10.07621,-10.076211 5.56452,0 10.07622,4.511696 10.07622,10.076211"
id="path159"
style="stroke-width:0.352778" />
<path
fill-rule="nonzero"
fill="#ffffff"
fill-opacity="1"
d="m 241.64732,65.677456 c 0,1.97335 -1.59988,3.57326 -3.57187,3.57326 -1.97334,0 -3.57326,-1.59991 -3.57326,-3.57326 0,-1.97197 1.59992,-3.57187 3.57326,-3.57187 1.97199,0 3.57187,1.5999 3.57187,3.57187"
id="path165"
style="stroke-width:0.352778" />
<path
fill-rule="nonzero"
fill="#ffffff"
fill-opacity="1"
d="m 461.83517,62.075783 c 0,2.91593 -2.36474,5.28202 -5.28204,5.28202 -2.91729,0 -5.282,-2.36609 -5.282,-5.28202 0,-2.91731 2.36471,-5.2834 5.282,-5.2834 2.9173,0 5.28204,2.36609 5.28204,5.2834"
id="path169"
style="stroke-width:0.352778" />
<path
fill-rule="nonzero"
fill="#ffffff"
fill-opacity="1"
d="m 270.28659,1.7473557 c 0,1.83417 -1.4869,3.31969 -3.32107,3.31969 -1.83279,0 -3.31969,-1.48552 -3.31969,-3.31969 0,-1.83417003 1.4869,-3.3197 3.31969,-3.3197 1.83417,0 3.32107,1.48552997 3.32107,3.3197"
id="path181"
style="stroke-width:0.352778" />
<g <g
clip-path="url(#clipPath311)" id="g21025"
id="g155" transform="matrix(4.034339,0.60072089,-0.60072089,4.034339,174.64856,-393.74518)">
transform="matrix(0.18789442,0.25592815,-0.25592815,0.18789442,334.07974,-227.96195)"> <g
<path id="satellit"
fill-rule="nonzero" transform="matrix(0.26458333,0,0,0.26458333,-13.704894,5.3117228)">
fill="#fff200" <g
fill-opacity="1" id="g17910">
d="m 744.99609,418.33203 c 0,0 -81.79687,184.11719 -537.05468,317.47266 -289.199222,84.71093 -322.82422,282.84761 -269.605472,434.25391 45.683593,129.9609 173.097652,251.7578 407.289062,270.6094 434.01562,34.9375 876.8867,-261.0274 876.8867,-261.0274 0,0 -528.15233,188.4063 -772.32811,30.5313 -142.875,-92.375 -131.76953,-281.03518 37.97266,-401.91018 C 762.49219,612.91016 744.99609,418.33203 744.99609,418.33203" <circle
id="path153" /> class="st4"
cx="569.20001"
cy="357.39999"
r="4"
id="circle17894"
style="fill:#ffffff" />
<circle
class="st4"
cx="608.09998"
cy="348.20001"
r="4.4000001"
id="circle17896"
style="fill:#ffffff" />
<circle
class="st4"
cx="648.79999"
cy="337.5"
r="4.0999999"
id="circle17898"
style="fill:#ffffff" />
<circle
class="st4"
cx="685.79999"
cy="329"
r="3.7"
id="circle17900"
style="fill:#ffffff" />
<circle
class="st4"
cx="722.29999"
cy="322"
r="3.2"
id="circle17902"
style="fill:#ffffff" />
<circle
class="st4"
cx="758.09998"
cy="315.70001"
r="2.9000001"
id="circle17904"
style="fill:#ffffff" />
<circle
class="st4"
cx="793.40002"
cy="310.79999"
r="2.5999999"
id="circle17906"
style="fill:#ffffff" />
<circle
class="st4"
cx="826.59998"
cy="307.20001"
r="2"
id="circle17908"
style="fill:#ffffff" />
</g> </g>
<g
id="g17930">
<circle
class="st4"
cx="50.700001"
cy="518.40002"
r="2.5"
id="circle17912"
style="fill:#ffffff" />
<circle
class="st4"
cx="86.400002"
cy="502.39999"
r="2.9000001"
id="circle17914"
style="fill:#ffffff" />
<circle
class="st4"
cx="123.3"
cy="487.39999"
r="3.2"
id="circle17916"
style="fill:#ffffff" />
<circle
class="st4"
cx="157.89999"
cy="475.10001"
r="3.5"
id="circle17918"
style="fill:#ffffff" />
<circle
class="st4"
cx="194.60001"
cy="461"
r="3.8"
id="circle17920"
style="fill:#ffffff" />
<circle
class="st4"
cx="234.3"
cy="448"
r="4.1999998"
id="circle17922"
style="fill:#ffffff" />
<circle
class="st4"
cx="273.70001"
cy="435.20001"
r="4.3000002"
id="circle17924"
style="fill:#ffffff" />
<circle
class="st4"
cx="314.39999"
cy="423.5"
r="4.4000001"
id="circle17926"
style="fill:#ffffff" />
<circle
class="st4"
cx="17.6"
cy="533.09998"
r="1.9"
id="circle17928"
style="fill:#ffffff" />
</g>
</g>
<g
id="Uboot"
transform="matrix(0.26458333,0,0,0.26458333,-13.704894,5.3117228)">
<g
id="g17981">
<g
id="g17975">
<path <path
fill-rule="nonzero" class="st5"
fill="#ffffff" d="m 543.2,365.1 c -4.1,0.7 -13.3,0.9 -15.7,0.3 -0.5,-0.1 -2,-0.5 -2.6,-0.8 -4.1,-2.1 -9.8,-7 -23.6,-12.7 -14.2,-5.9 -39.3,-14.3 -80.5,-0.7 -11.3,3.7 -21.9,8.1 -31.4,12.5 l -1.1,-0.8 c -3.5,-2.7 -19.5,-13.9 -39.9,-14.4 -26,-0.7 -58.6,9 -68.6,12.8 0,0 0,0 0,0 -0.2,0.1 -0.5,0.2 -0.7,0.3 0,0 -0.1,0 -0.1,0.1 -0.3,0.1 -0.5,0.2 -0.7,0.3 0,0 0,0 -0.1,0 -0.2,0.1 -0.4,0.2 -0.6,0.3 0,0 -0.1,0 -0.1,0 -0.2,0.1 -0.3,0.2 -0.4,0.2 0,0 0,0 -0.1,0 -0.1,0.1 -0.2,0.1 -0.2,0.2 -1.6,1.6 -0.3,7.1 0.4,10 0.7,2.9 2.3,7.8 4.4,9.1 0.9,0.6 30.7,-9.4 47.4,-4.4 0.8,0.2 1.4,0.5 2.2,0.7 9.6,3.2 13.6,7.3 15.3,9.7 -1,1.3 -2.7,5.9 1.2,23.1 2.1,9.2 3.8,15.2 5.3,19.1 -2.2,1.1 -4.6,2.3 -7.2,3.5 -14.4,6.6 -38.2,13.1 -48.2,15.7 -2.2,0.6 -4.7,1.2 -4.7,1.2 -1.3,0.6 -1.1,5.2 0,9.6 1.1,4.4 2.4,5.9 3.2,6.2 0.2,0.1 1.9,0 4.7,-0.2 0,0 0,0 0,0 v 0 c 10,-0.7 34.2,-3.4 55.9,-9.5 22.1,-6.3 30.4,-10.2 35.7,-13.1 2.1,-1.2 3.9,-2.4 5.5,-3.7 2,0 4,0 6.1,-0.1 42.5,-0.7 77,-11.3 95.8,-28.1 17.9,-15.9 24.1,-30.7 27.9,-36.5 0.6,-0.9 1.1,-1.6 1.6,-1.9 1.9,-1.3 10.4,-4.8 14.4,-6.3 0.1,-0.1 -0.3,-1.7 -0.5,-1.7 z"
fill-opacity="1" id="path17933"
d="m 511.52209,72.726195 c -1.10868,1.38742 -3.13166,1.61245 -4.51908,0.50377 -1.38744,-1.1087 -1.61322,-3.13069 -0.50453,-4.51812 1.10868,-1.38743 3.13144,-1.6142 4.51888,-0.50549 1.38741,1.10866 1.61342,3.13241 0.50473,4.51984" style="fill:#ffed00" />
id="path163"
style="stroke-width:0.317496" />
<path <path
fill-rule="nonzero" class="st6"
fill="#ffffff" d="m 434.5,347.4 c 0,0 4.1,14.9 16,19.1 7.4,2.6 18.8,2.5 29.4,-4.7 9.1,-6.2 11.2,-13.6 11.2,-13.6 0,0 -15.2,-5.1 -29.5,-4.9 -12.1,0.2 -27.1,4.1 -27.1,4.1 z"
fill-opacity="1" id="path17935"
d="m 348.72144,17.281771 c -1.63903,2.0511 -4.63116,2.38435 -6.6813,0.7461 -2.05111,-1.63904 -2.38609,-4.63097 -0.74707,-6.68207 1.63903,-2.0511097 4.63116,-2.3843597 6.68227,-0.74533 2.05013,1.63826 2.38513,4.63019 0.7461,6.6813" style="fill:#93b2c2" />
id="path171"
style="stroke-width:0.317496" /> <g
id="g17939">
<path <path
fill-rule="nonzero" d="m 462.2,340.3 c 16.3,-0.4 25.6,6.9 25.6,6.9 0,0 -2.7,7.3 -12.7,13.3 -7.6,4.6 -18.8,5.6 -26.8,0.8 -6.8,-4.1 -10.7,-14.7 -10.7,-14.7 0,0 7.6,-5.9 24.6,-6.3 z"
fill="#ffffff" id="path17937" />
fill-opacity="1"
d="m 504.18991,55.798665 c -1.10869,1.38743 -3.13164,1.61246 -4.51908,0.50376 -1.38742,-1.10867 -1.61419,-3.13144 -0.5055,-4.51887 1.10869,-1.38743 3.13243,-1.61342 4.51985,-0.50474 1.38744,1.10869 1.61341,3.13242 0.50473,4.51985" </g>
id="path179"
style="stroke-width:0.317496" />
<path <path
fill-rule="nonzero" class="st7"
fill="#ffffff" d="m 442.8,346.9 c 0,0 9.4,-4.5 20.9,-4.2 11.6,0.3 20.6,5.6 20.6,5.6 0,0 -3,5.5 -9.9,5.5 -6.8,0 -9.9,-5.4 -19.4,-6.9 -7.5,-1.2 -12.2,0 -12.2,0 z"
fill-opacity="1" id="path17941"
d="m 307.23344,27.986641 c -1.02972,1.28861 -2.91052,1.49863 -4.2001,0.46813 -1.2886,-1.02971 -1.49862,-2.91051 -0.46891,-4.19911 1.0305,-1.28958 2.91053,-1.49864 4.19913,-0.46892 1.28957,1.03049 1.50038,2.91033 0.46988,4.1999" style="fill:#354b54" />
id="path187"
style="stroke-width:0.317496" /> <g
id="g17951">
<ellipse
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-92.9723,116.8277)"
class="st6"
cx="376.39999"
cy="394.89999"
rx="13"
ry="10.3"
id="ellipse17943"
style="fill:#93b2c2" />
<g
id="g17947">
<ellipse
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-92.9768,116.8175)"
cx="376.29999"
cy="394.89999"
rx="9.8000002"
ry="7.8000002"
id="ellipse17945" />
</g>
<path <path
fill-rule="nonzero" class="st7"
fill="#00a870" d="m 369.4,393.3 c 0,0 2.6,-4.6 7.7,-4.6 6.5,0 7,4.4 7,4.4 0,0 -2.6,-1.9 -7.5,-1.8 -4,0 -7.2,2 -7.2,2 z"
fill-opacity="1" id="path17949"
d="m 405.85487,54.482355 c 0,0 -7.18956,10.24178 -20.79994,15.56453 -17.91297,7.00455 -44.50544,9.58668 -45.79074,9.20867 -1.29469,-0.38029 -1.7535,-3.13448 -2.01238,-4.57685 -0.25915,-1.44063 -0.40014,-3.98192 0.56186,-5.05436 0.41598,-0.46234 20.37873,-2.44515 29.21686,-8.3353 8.77266,-5.8452 9.84736,-9.91598 9.84736,-9.91598 z m 0,0" style="fill:#354b54" />
id="path195"
style="stroke-width:0.317496" /> </g>
<g
id="g17961">
<ellipse
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-89.7453,124.2159)"
class="st6"
cx="404.70001"
cy="386.89999"
rx="13"
ry="10.3"
id="ellipse17953"
style="fill:#93b2c2" />
<g
id="g17957">
<ellipse
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-89.7498,124.2057)"
cx="404.70001"
cy="387"
rx="9.8000002"
ry="7.8000002"
id="ellipse17955" />
</g>
<path <path
fill-rule="nonzero" class="st7"
fill="#00a870" d="m 397.8,385.3 c 0,0 2.6,-4.6 7.7,-4.6 6.5,0 7,4.4 7,4.4 0,0 -2.6,-1.9 -7.5,-1.8 -4.1,0.1 -7.2,2 -7.2,2 z"
fill-opacity="1" id="path17959"
d="m 332.071,23.210666 c -1.38024,0.247116 -2.11666,-2.333998 -2.51873,-4.572836 -0.42012,-2.340989 0.44685,-3.45905 0.90979,-3.805071 0.46373,-0.344936 24.09376,-7.3896908 41.63891,-6.6005928 15.00847,0.6744 19.91502,3.5664838 19.91502,3.5664838 l -19.97163,12.111597 c 0,0 -9.99414,-3.358765 -18.75099,-3.022517 -9.30131,0.357495 -21.22237,2.322936 -21.22237,2.322936" style="fill:#354b54" />
id="path197"
style="stroke-width:0.317496" /> </g>
<g
id="g17971">
<ellipse
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-86.5183,131.604)"
class="st6"
cx="433.10001"
cy="379"
rx="13"
ry="10.3"
id="ellipse17963"
style="fill:#93b2c2" />
<g
id="g17967">
<ellipse
transform="matrix(0.9626,-0.2711,0.2711,0.9626,-86.5228,131.5938)"
cx="433.10001"
cy="379"
rx="9.8000002"
ry="7.8000002"
id="ellipse17965" />
</g>
<path <path
fill-rule="nonzero" class="st7"
fill="#fff200" d="m 426.1,377.3 c 0,0 2.6,-4.6 7.7,-4.6 6.5,0 7,4.4 7,4.4 0,0 -2.6,-1.9 -7.5,-1.8 -4,0.1 -7.2,2 -7.2,2 z"
fill-opacity="1" id="path17969"
d="m 379.49129,51.653005 -2.61413,-0.28094 c 0,0 -1.07394,4.07179 -9.84764,9.91771 -8.83811,5.89016 -28.79987,7.87223 -29.21585,8.33457 -0.962,1.07244 -0.82101,3.61373 -0.56112,5.05537 0.25814,1.44136 0.71696,4.19551 2.01164,4.57584 0.18928,0.0562 0.93048,0.0477 2.11451,-0.0308 0,0 -1.64471,-1.81272 -2.04939,-4.57275 -0.40369,-2.76078 -0.13775,-3.54068 0.81996,-3.80377 0.9577,-0.26308 17.52534,-2.5658 25.45494,-6.62119 7.14986,-3.65678 11.01274,-8.18826 12.74217,-10.69038 0,0 8.98123,1.05911 14.75217,1.40875 6.58752,0.39942 12.15406,0.31138 12.15406,0.31138 l 0.60226,-0.77449 z m 0,0" style="fill:#354b54" />
id="path199"
style="stroke-width:0.317496" /> </g>
<path <path
fill-rule="nonzero" class="st5"
fill="#fff200" d="m 421,358.6 c 0,0 -8.7,-38.4 -9.5,-42 -0.8,-3.6 -0.8,-8.3 4.2,-11.2 3.7,-2.1 11.7,-3.8 11.7,-3.8 l 2.9,13 c 0,0 -6,0.8 -7.6,3.4 -1,1.6 -0.2,4.7 -0.2,4.7 l 7.4,32.2 z"
fill-opacity="1" id="path17973"
d="m 332.54573,14.152269 c -1.26368,0.372329 -2.0047,0.622498 -2.08367,0.68049 -0.46269,0.34638 -1.32991,1.464082 -0.90979,3.805071 0.40207,2.238838 1.13849,4.819952 2.51873,4.572836 0,0 11.92106,-1.965441 21.22237,-2.322936 8.75685,-0.336248 18.74998,3.02325 18.74998,3.02325 l 2.14681,-1.300714 c 0,0 -9.03574,-4.054708 -19.37311,-3.727391 -10.50412,0.332803 -21.32113,2.666214 -21.79591,2.568603 -0.47404,-0.09661 -1.04342,-1.180234 -1.28963,-2.601134 -0.55071,-3.179016 0.81422,-4.698075 0.81422,-4.698075" style="fill:#ffed00" />
id="path201"
style="stroke-width:0.317496" /> </g>
<path <path
fill-rule="nonzero" class="st8"
fill="#bdd3dc" d="m 358,379.9 c -21.8,-19.5 -54.2,-13.5 -80.8,-6.9 0.7,2.9 2.3,7.5 4.3,8.9 0.9,0.6 30.7,-9.4 47.4,-4.4 0.8,0.2 1.4,0.5 2.2,0.7 9.5,3.2 13.6,7.2 15.3,9.6 l 0.1,0.1 c 0.9,-1.1 7.6,-6.1 11.5,-8 z"
fill-opacity="1" id="path17977"
d="m 480.91473,16.340049 c 0.54347,0.367212 1.00113,0.611265 1.37835,0.691267 1.3477,0.28915 7.58892,0.03655 10.13915,-0.08179 0.12158,-0.0062 0.14639,0.16793 0.0292,0.197008 -2.4615,0.587079 -8.42907,2.075762 -9.60039,2.951108 -0.26233,0.195933 -1.00885,0.736188 -1.26438,1.048263 0.0122,-1.699806 -0.27547,-3.244158 -0.68197,-4.80586" style="fill:#fbba00" />
id="path203"
style="stroke-width:0.317496" />
<path <path
fill-rule="nonzero" class="st8"
fill="#00a870" d="m 519.3,378.1 c -35.9,36.8 -100.4,44.5 -130.1,48.3 -21.2,22.2 -74.6,30.1 -96.5,33.3 0,0.1 0,0.2 0.1,0.3 1.1,4.4 2.4,5.9 3.2,6.2 0.2,0.1 1.9,0 4.7,-0.2 0,0 0,0 0,0 v 0 c 10,-0.7 34.2,-3.4 55.9,-9.5 22.1,-6.3 30.4,-10.2 35.7,-13.1 2.1,-1.2 3.9,-2.4 5.5,-3.7 2,0 4,0 6.1,-0.1 42.5,-0.7 77,-11.3 95.8,-28.1 17.9,-15.9 24.1,-30.7 27.9,-36.5 0.6,-0.9 1.1,-1.6 1.6,-1.9 0.9,-0.6 3.3,-1.7 5.9,-2.9 -6.4,1.7 -10.8,2.9 -15.8,7.9 z"
fill-opacity="1" id="path17979"
d="m 456.53706,1.7304292 c 13.74202,4.647485 20.88899,12.2551718 24.37767,14.6096198 0.4065,1.561703 0.69411,3.106052 0.68197,4.80586 -1.76643,2.164618 -3.68688,7.047095 -10.02474,13.486427 -6.55215,6.656669 -18.60448,17.274479 -44.86211,19.472319 -26.05629,2.1808 -49.83196,-2.73159 -49.83196,-2.73159 0,0 -2.73138,0.4898 -5.21023,-13.308344 -2.85149,-15.88167 -1.11461,-17.09528 -1.11461,-17.09528 0,0 7.84033,-5.006836 25.78253,-12.2482468 23.94282,-9.66366706 45.73099,-11.886549 60.20148,-6.990765" style="fill:#fbba00" />
id="path205"
style="stroke-width:0.317496" /> </g>
<path
fill-rule="nonzero" </g>
fill="#fff200" </g>
fill-opacity="1"
d="m 373.29644,19.376898 c -1.85727,1.026588 -2.74413,1.591537 -2.74413,1.591537 0,0 -1.73613,1.21465 1.11535,17.096286 2.47885,13.798144 5.21023,13.308344 5.21023,13.308344 0,0 1.02505,0.21211 2.88423,0.52729 0,0 -2.0419,-0.10717 -3.62744,-4.58044 -1.58556,-4.47327 -3.66106,-13.679482 -4.16649,-20.151969 -0.50645,-6.471756 1.32825,-7.791048 1.32825,-7.791048"
id="path207"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#fff200"
fill-opacity="1"
d="m 480.64101,18.004193 c 0,0 -5.06444,-2.539221 -8.72381,-3.045163 -3.65765,-0.505673 -7.61511,-0.386569 -7.61511,-0.386569 l 1.01143,3.877776 c 0,0 2.66969,-0.521447 6.9226,-0.738974 4.0365,-0.206359 8.40489,0.29293 8.40489,0.29293"
id="path209"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#fff200"
fill-opacity="1"
d="m 435.34944,21.132157 c 0,0 -7.6948,0.590445 -13.67057,1.426653 -10.23603,1.43145 -19.3014,3.340466 -19.3014,3.340466 0,0 8.85256,-3.709835 18.97693,-6.450196 6.49869,-1.758604 13.24869,-2.477012 13.24869,-2.477012 z m 0,0"
id="path211"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#fff200"
fill-opacity="1"
d="m 374.72077,36.627889 c 0,0 10.46339,2.514215 16.37034,1.49622 7.83226,-1.348338 13.4751,-5.314207 13.31465,-11.513773 -0.15378,-5.953688 -5.78341,-8.214904 -9.21556,-8.356858 -8.77676,-0.361473 -18.21364,1.760295 -18.21364,1.760295 z m 0,0"
id="path213"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#00a870"
fill-opacity="1"
d="m 318.85137,39.678114 c -1.04792,0.01237 -2.08284,-2.340346 -2.44084,-4.814639 -0.35624,-2.47404 0.15239,-3.529035 0.61804,-3.875526 0.46627,-0.345671 24.67498,-6.880947 43.78485,-9.174593 16.65854,-1.99867 23.54936,-2.512744 27.87203,-2.543038 7.74737,-0.0536 12.98304,1.895252 13.5722,6.849254 0.74602,6.280461 -8.548,11.197554 -15.99269,11.175131 -5.34644,-0.01664 -10.85929,-1.106571 -26.93168,-0.807539 -14.78947,0.27566 -40.48191,3.19095 -40.48191,3.19095"
id="path215"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#fff200"
fill-opacity="1"
d="m 319.83798,30.145453 c -1.70767,0.467515 -2.71742,0.774971 -2.80941,0.842496 -0.46572,0.3464 -0.97328,1.400753 -0.6163,3.875798 0.35626,2.474021 1.39118,4.826738 2.4391,4.814367 0,0 1.04378,-0.118578 2.82977,-0.309703 0,0 -2.38541,-0.841207 -3.04315,-4.786316 -0.63181,-3.790301 1.20014,-4.436603 1.20014,-4.436603"
id="path217"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#151821"
fill-opacity="1"
d="m 438.88394,32.581315 c -1.15967,-1.579556 -2.09459,-3.328731 -2.78195,-5.199634 -4.13447,-11.262558 -2.11797,-17.7556781 0.30344,-21.2181278 1.69543,-2.424807 4.20996,-3.953953 7.27253,-4.422281 4.36588,-0.6651061 9.70447,0.849711 13.60069,3.861937 1.70707,1.319241 3.09451,2.720777 4.24244,4.2843457 2.62245,3.5719971 3.91619,8.0040721 3.84434,13.1725961 -0.069,5.027892 -1.81049,9.223598 -5.03588,12.131635 -2.43903,2.199907 -5.75429,3.656878 -9.09437,3.996591 -4.30307,0.440537 -9.03667,-2.092333 -12.35124,-6.607062 z m 0,0"
id="path219"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#bdd3dc"
fill-opacity="1"
d="m 462.1459,9.4288229 c -1.19122,-1.6225397 -2.62778,-3.0741977 -4.39265,-4.4386647 -4.05745,-3.135438 -9.6271,-4.71139402 -14.19126,-4.01456997 -3.27772,0.50010097 -5.97173,2.14102397 -7.792,4.74365397 -2.52541,3.6141917 -4.64613,10.3530778 -0.39556,21.9288708 0.71221,1.940365 1.68271,3.752646 2.88568,5.391195 3.47678,4.735666 8.47781,7.387597 13.05377,6.920595 3.50075,-0.357681 6.97599,-1.885939 9.53517,-4.192531 3.38841,-3.056939 5.21825,-7.446719 5.29194,-12.696579 0.0734,-5.340393 -1.27062,-9.93101 -3.99509,-13.6419701 m -1.24865,0.9167341 c 2.18207,2.97215 3.77272,7.01857 3.69435,12.704211 -0.15118,10.894832 -8.11772,14.826552 -13.43538,15.368834 -4.13072,0.421698 -8.56776,-2.101187 -11.64746,-6.296007 -1.08628,-1.479588 -2.00397,-3.167558 -2.67996,-5.008336 -3.49806,-9.528088 -2.74351,-16.279444 0.21135,-20.5074018 4.64121,-6.63996402 14.47074,-4.481992 19.76492,-0.391309 1.42376,1.101023 2.85326,2.442483 4.09218,4.1300088"
id="path221"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#2f404c"
fill-opacity="1"
d="m 461.34323,27.259356 c 0.93335,-3.079269 1.68286,-7.731359 -1.3736,-13.571057 -3.05646,-5.8396868 -8.08626,-8.3212428 -12.10646,-8.8869408 -5.20294,-0.732786 -7.63115,2.473113 -7.63115,2.473113 0,0 6.52061,0.320823 12.6477,9.3496328 5.78031,8.518729 4.24562,16.412092 4.24562,16.412092 0,0 3.00957,-1.789509 4.21789,-5.77684"
id="path223"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#ffffff"
fill-opacity="1"
d="m 335.60599,50.937545 c 0,0 -35.71989,12.85424 -104.33718,-8.75426 C 174.66892,24.359052 159.09172,16.073928 124.23843,33.166133 89.385127,50.258335 77.175537,88.502795 89.028228,128.22133 109.08882,195.44704 194.05106,261.07805 194.05106,261.07805 c 0,0 -119.113393,-69.90964 -133.262133,-150.12549 C 49.128334,44.838795 86.444257,12.931529 126.58023,6.1112072 c 27.87757,-4.738022 64.40806,8.7268658 98.36024,23.4307688 76.9719,33.336059 110.66552,21.395569 110.66552,21.395569"
id="path225"
style="stroke-width:0.317496" />
<path
fill-rule="nonzero"
fill="#ffffff"
fill-opacity="1"
d="m 47.605232,-5.9851528 c 0,0 -15.8745,25.0354978 -17.758638,57.4625378 -2.357195,40.56567 4.604997,64.594815 4.604997,64.594815 0,0 -12.805438,-30.343055 -13.793967,-59.304055 C 19.121016,11.71606 47.605232,-5.9851528 47.605232,-5.9851528"
id="path227"
style="stroke-width:0.317496" />
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

99
static/logo.svg Normal file
View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 27.0.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.5 283.5" style="enable-background:new 0 0 283.5 283.5;" xml:space="preserve">
<style type="text/css">
.st0{fill:#E6007E;}
.st1{fill:#93B2C2;}
.st2{fill:#FFED00;}
.st3{fill:#354B54;}
</style>
<path class="st0" d="M263.8,283.5H19.6C8.8,283.5,0,274.7,0,263.8V19.6C0,8.8,8.8,0,19.6,0h244.2c10.8,0,19.6,8.8,19.6,19.6v244.2
C283.5,274.7,274.7,283.5,263.8,283.5z"/>
<g>
<g>
<circle cx="113.3" cy="244.4" r="15.2"/>
</g>
<circle class="st1" cx="113.3" cy="244.4" r="10.4"/>
<g>
<circle cx="144.8" cy="244.4" r="15.2"/>
</g>
<circle class="st1" cx="144.8" cy="244.4" r="10.4"/>
<g>
<circle cx="201" cy="244.4" r="15.2"/>
</g>
<circle class="st1" cx="201" cy="244.4" r="10.4"/>
</g>
<path d="M118.4,244.4c0,2.8-2.3,5.1-5.1,5.1s-5.1-2.3-5.1-5.1V234h10.2V244.4z"/>
<path d="M149.9,244.4c0,2.8-2.3,5.1-5.1,5.1c-2.8,0-5.1-2.3-5.1-5.1V234h10.2V244.4z"/>
<path d="M206.1,244.4c0,2.8-2.3,5.1-5.1,5.1s-5.1-2.3-5.1-5.1V234h10.2V244.4z"/>
<path class="st2" d="M272.6,198.8c-4-0.2-12.8-2-14.9-3c-0.5-0.2-1.8-0.9-2.3-1.3c-3.4-2.9-7.8-8.8-19.6-17.1
c-12.2-8.6-34.1-21.9-76-17.9c-11.4,1.1-22.4,3-32.4,5.1l-0.9-1c-2.8-3.3-15.5-17.3-34.6-22.2c-24.4-6.3-57.3-4.1-67.6-2.6
c0,0,0,0,0,0c-0.3,0-0.5,0.1-0.7,0.1c0,0-0.1,0-0.1,0c-0.3,0-0.5,0.1-0.8,0.1c0,0,0,0-0.1,0c-0.2,0-0.4,0.1-0.6,0.1c0,0-0.1,0-0.1,0
c-0.2,0-0.3,0.1-0.4,0.1c0,0,0,0-0.1,0c-0.1,0-0.2,0.1-0.3,0.1c-1.8,1.2-1.8,6.7-1.8,9.6c0,2.9,0.5,7.8,2.2,9.6
c0.7,0.8,31-2.3,45.8,6c0.7,0.4,1.3,0.7,1.9,1.1c8.4,5.1,11.3,9.8,12.4,12.5c-1.2,1-3.8,5.1-3.8,22.1c0,9.1,0.4,15.2,0.9,19.2
c-2.3,0.6-4.8,1.2-7.5,1.8c-15,3.2-38.9,4.2-48.9,4.5c-2.2,0.1-4.7,0.1-4.7,0.1c-1.4,0.3-2.2,4.7-2.1,9.1c0.1,4.4,1,6.1,1.7,6.5
c0.2,0.1,1.8,0.4,4.5,0.8c0,0,0,0,0,0l0,0c9.6,1.4,33.1,4.1,54.8,2.9c22.2-1.2,31-3.1,36.5-4.8c2.2-0.7,4.2-1.5,6-2.3
c1.9,0.4,3.8,0.8,5.8,1.3c40.4,8.4,75.2,5.8,96.6-6c20.3-11.2,29.4-23.9,34.2-28.6c0.8-0.7,1.4-1.2,2-1.5c2-0.8,10.9-2.3,14.9-2.9
C272.8,200.3,272.8,198.8,272.6,198.8z"/>
<path class="st1" d="M173.7,158.7c0,0,0.7,15,11.1,21.5c6.4,4,17.3,6.4,28.8,1.8c9.9-4,13.5-10.4,13.5-10.4s-13.2-8-26.9-10.9
C188.7,158.3,173.7,158.7,173.7,158.7z"/>
<g>
<path d="M201.4,157.9c15.5,3.1,22.7,12,22.7,12s-4.1,6.4-14.9,9.9c-8.2,2.7-19,1.3-25.5-4.9c-5.6-5.3-6.9-16.2-6.9-16.2
S185.3,154.7,201.4,157.9z"/>
</g>
<path class="st3" d="M181.6,160c0,0,9.8-2.2,20.7,0.6c10.9,2.8,18.3,9.8,18.3,9.8s-4,4.6-10.5,3.1c-6.4-1.4-8.2-7.3-16.8-10.7
C186.3,159.9,181.6,160,181.6,160z"/>
<g>
<ellipse transform="matrix(0.9987 -5.160845e-02 5.160845e-02 0.9987 -9.7234 5.8569)" class="st1" cx="108.6" cy="191.2" rx="12.6" ry="10"/>
<g>
<ellipse transform="matrix(0.9987 -5.160845e-02 5.160845e-02 0.9987 -9.7236 5.8549)" cx="108.5" cy="191.2" rx="9.5" ry="7.5"/>
</g>
<path class="st3" d="M102.3,188.2c0,0,3.5-3.8,8.3-2.7c6.1,1.4,5.7,5.7,5.7,5.7s-2-2.3-6.7-3.3C105.7,187,102.3,188.2,102.3,188.2z
"/>
</g>
<g>
<ellipse transform="matrix(0.9987 -5.160845e-02 5.160845e-02 0.9987 -9.6094 7.3268)" class="st1" cx="137.1" cy="189.7" rx="12.6" ry="10"/>
<g>
<ellipse transform="matrix(0.9987 -5.160845e-02 5.160845e-02 0.9987 -9.6095 7.3248)" cx="137" cy="189.7" rx="9.5" ry="7.5"/>
</g>
<path class="st3" d="M130.8,186.7c0,0,3.5-3.8,8.3-2.7c6.1,1.4,5.7,5.7,5.7,5.7s-2-2.3-6.7-3.3
C134.2,185.5,130.8,186.7,130.8,186.7z"/>
</g>
<g>
<ellipse transform="matrix(0.9987 -5.160845e-02 5.160845e-02 0.9987 -9.4953 8.7966)" class="st1" cx="165.6" cy="188.3" rx="12.6" ry="10"/>
<g>
<ellipse transform="matrix(0.9987 -5.160845e-02 5.160845e-02 0.9987 -9.4955 8.7946)" cx="165.5" cy="188.3" rx="9.5" ry="7.5"/>
</g>
<path class="st3" d="M159.4,185.2c0,0,3.5-3.8,8.3-2.7c6.1,1.4,5.7,5.7,5.7,5.7s-2-2.3-6.7-3.3
C162.8,184.1,159.4,185.2,159.4,185.2z"/>
</g>
<path class="st2" d="M158.6,166.4c0,0,0-38.1,0-41.7s1-8,6.4-9.7c4-1.2,11.9-1.1,11.9-1.1v12.9c0,0-5.9-0.5-7.9,1.6
c-1.3,1.3-1.2,4.4-1.2,4.4l0.1,32L158.6,166.4z"/>
<g>
<path class="st2" d="M33.6,20.2c3.2,0,5,2.4,5,5.6v72.5c0,3.2-1.8,5.6-5,5.6h-6.6c-3.2,0-5-2.4-5-5.6V25.7c0-3.2,1.8-5.6,5-5.6
H33.6z"/>
<path class="st2" d="M58.4,53.6c3.2,0,5,1.3,5,4.5v7.7c0,3.2-1.8,4.5-5,4.5h-6.6c-3.2,0-5-1.3-5-4.5v-7.7c0-3.2,1.8-4.5,5-4.5H58.4
z"/>
<path class="st2" d="M99.7,63.1h15.4c3.2,0,4.5,2.1,4.5,5.3v19.7c0,10.7-5.5,15.7-16.2,15.7H87.9c-10.7,0-16.9-5-16.9-15.7V35.9
c0-10.7,6.2-15.7,16.9-15.7h14.8c10.7,0,16.9,5,16.9,15.7v12.7c0,3.2-1.3,5-4.5,5h-7.8c-3.2,0-4.6-1.8-4.6-5V37c0-3.2-1.6-6-4.8-6
h-5.2c-3.2,0-4.7,2.8-4.7,6V87c0,3.2,1.5,6,4.7,6h6c3.2,0,4.8-2.8,4.8-6v-9.6c0-3.2-0.5-4.7-3.7-4.7c-4.3,0-6.6,0-6.6-4.8
C93.1,63.1,95.4,63.1,99.7,63.1z"/>
<path class="st2" d="M138.9,53.6c3.2,0,5,1.3,5,4.5v7.7c0,3.2-1.8,4.5-5,4.5h-6.6c-3.2,0-5-1.3-5-4.5v-7.7c0-3.2,1.8-4.5,5-4.5
H138.9z"/>
<path class="st2" d="M183.1,20.2c3.2,0,4.8,0.9,4.8,4.1v2.6c0,3.2-1.6,4.2-4.8,4.2h-9.7c-3.2,0-4.4,1.4-4.4,4.6v16.4
c0,3.2,1.6,4.7,4.8,4.7h5.9c3.2,0,4.1,0.9,4.1,4.1v2.6c0,3.2-0.9,4.2-4.1,4.2h-5.9c-3.2,0-4.8,1.4-4.8,4.6v16.3
c0,3.2,1.2,4.7,4.4,4.7h9.7c3.2,0,4.8,0.9,4.8,4.1v2.7c0,3.2-1.6,4.1-4.8,4.1h-25.5c-3.2,0-5.6-2.4-5.6-5.6V25.7
c0-3.2,2.4-5.6,5.6-5.6H183.1z"/>
<path class="st2" d="M203.9,53.6c3.2,0,5,1.3,5,4.5v7.7c0,3.2-1.8,4.5-5,4.5h-6.6c-3.2,0-5-1.3-5-4.5v-7.7c0-3.2,1.8-4.5,5-4.5
H203.9z"/>
<path class="st2" d="M234,98.3c0,3.2-2,5.6-5.2,5.6h-6.6c-3.2,0-5-2.4-5-5.6V25.7c0-3.2,1.3-5.6,4.5-5.6h27.5
c10.7,0,16.5,7.4,16.5,18.1v10.9c0,6.4-3.2,13.5-10.5,16.6c-0.4,0.2-0.6,0.5-0.6,0.9c0,0.6,0.3,1.3,0.6,1.9l11.9,29.7
c0.3,0.8,0.5,1.5,0.5,2.2c0,2.1-1.4,3.4-3.4,3.4h-6.6c-4.3,0-5.8-2.2-7.2-5.6l-12.4-30c-0.4-1-1.3-1.5-2.1-1.5
c-0.9,0-1.6,0.6-1.6,1.7L234,98.3z M248.6,48.1v-8.8c0-5.3-2.9-8.3-8.2-8.3h-1.9c-3.2,0-4.5,2.5-4.5,5.7v14.1
c0,3.2,1.6,5.8,4.8,5.8C244.8,56.5,248.6,54.8,248.6,48.1z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

155
static/stars.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

42
static/uber.svg Normal file
View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="55.380753mm"
height="16.483541mm"
viewBox="0 0 55.380753 16.483541"
version="1.1"
id="svg983"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs980" />
<g
id="layer1"
transform="translate(-99.823041,-68.266279)">
<g
id="g978"
transform="matrix(0.26458333,0,0,0.26458333,84.745252,18.339405)">
<path
class="st4"
d="m 94.5,245.3 c 0,1.8 0.3,5.7 -3.8,5.7 -3.3,0 -3.8,-2.7 -3.8,-5.4 v -1.3 l -6.2,4.1 c -2.5,1.6 -4.6,2.6 -6.6,2.6 h -5.7 c -2.2,0 -4.6,-0.6 -7.1,-2.8 -3.4,-3 -3.4,-6.2 -3.5,-10.4 L 57,213.7 c -0.1,-2.8 0.3,-5.8 3.8,-5.8 3.3,0 3.7,2.8 3.8,5.3 l 0.8,23.6 c 0.1,1.8 0.2,3.8 0.8,5 0.6,1.2 2.6,1.6 4.5,1.6 h 2.6 c 0.9,0 1.7,-0.2 2.4,-0.7 L 87,235.6 v -22.3 c 0,-2.6 0.6,-5.3 3.8,-5.3 3.2,0 3.8,2.6 3.8,5.3 v 32 z M 69.3,198.7 c 0,2.4 -1,4.9 -4,4.9 -3,0 -4,-2.5 -4,-4.9 v -5 c 0,-2.7 1.1,-5 4,-5 2.9,0 4,2.2 4,5 z m 20.4,0 c 0,2.4 -1,4.9 -4,4.9 -3,0 -4,-2.5 -4,-4.9 v -5 c 0,-2.7 1.1,-5 4,-5 2.9,0 4,2.2 4,5 z"
id="path552"
style="fill:#ffffff" />
<path
class="st4"
d="m 122.4,213.5 1.4,-1.4 c 2.6,-2.6 4.1,-4.2 7.6,-4.2 h 8.5 c 2,0 3.8,1.1 5.7,2.7 l 2.6,2.2 c 3,2.6 4.2,4.8 4.2,8.9 v 15.4 c 0,4.1 -1.1,6.2 -4.2,8.9 l -2.6,2.2 c -1.8,1.5 -4.1,2.7 -6,2.7 h -7.9 c -3.1,0 -5.3,-1.9 -7.4,-3.9 l -1.8,-1.7 v 0.5 c 0,2.5 -0.8,5.1 -3.8,5.1 -3.3,0 -3.8,-2.7 -3.8,-5.4 v -48.2 c 0,-2.6 0.6,-5.3 3.8,-5.3 3.2,0 3.8,2.6 3.8,5.3 v 16.2 z m 0,19 c 0,2.5 0.3,3.4 2.3,5.1 l 4.4,3.8 c 1,0.8 2.2,1.9 3,1.9 h 5.8 c 1.1,0 1.8,-0.2 2.4,-0.7 l 3.4,-2.8 c 0.9,-0.7 1,-2.6 1,-4.1 v -13.6 c 0,-1.5 -0.4,-2.7 -1,-3.2 l -3.5,-2.7 c -0.5,-0.4 -1,-0.6 -1.8,-0.6 H 133 c -1,0 -2.3,0.6 -3.2,1.4 l -5,4.3 c -1.3,1 -2.3,2.2 -2.3,4.6 v 6.6 z"
id="path554"
style="fill:#ffffff" />
<path
class="st4"
d="m 185.8,251 c -3.2,0 -4.5,0 -6.9,-2.1 l -3.3,-2.9 c -3,-2.7 -3.9,-4.5 -3.9,-8.6 v -14.8 c 0,-4.1 0.6,-6.5 3.8,-9.2 l 2.7,-2.3 c 3.6,-3.1 5.4,-3.2 8.5,-3.2 h 7 c 3.8,0 5.5,0.4 8.5,2.8 l 3.1,2.5 c 3.5,2.8 4,5.8 4,10 v 6.1 c 0,4.4 -0.7,5.7 -5.3,5.7 h -24.6 v 2.6 c 0,0.7 0.6,1.7 1.1,2.2 l 1.9,2.1 c 1,1.1 2.6,1.4 5.1,1.4 H 204 c 2.6,0 5.3,0.6 5.3,3.8 0,3.4 -3,3.8 -5.3,3.8 h -18.2 z m -6.4,-23.7 h 22.2 v -4.6 c 0,-1.4 0.1,-2.6 -1,-3.6 l -3,-2.6 c -1,-0.9 -2.5,-1 -3.7,-1 h -6.5 c -1.4,0 -2.6,0 -3.9,0.9 l -2.6,1.9 c -1,0.7 -1.6,1.3 -1.6,3.5 v 5.5 z"
id="path556"
style="fill:#ffffff" />
<path
class="st4"
d="m 228.9,213.6 c 0,-2.8 0.3,-5.7 3.8,-5.7 3,0 3.8,2.6 3.8,5.1 v 3.1 l 6,-5 c 2.2,-1.8 4.4,-3.3 6.8,-3.3 h 6.1 c 3,0 5.4,1 7.5,3 2.6,2.6 3.4,5.2 3.4,8.7 0,2.6 -0.5,5.4 -3.8,5.4 -2.8,0 -3.9,-2.2 -3.9,-4.7 0,-1.3 0,-2.2 -0.8,-3.4 -1,-1.4 -2.8,-1.4 -4.6,-1.4 H 251 c -1.4,0 -2.5,0.7 -3.8,1.8 l -10.7,8.9 v 19.4 c 0,2.6 -0.6,5.3 -3.8,5.3 -3.2,0 -3.8,-2.6 -3.8,-5.3 z"
id="path558"
style="fill:#ffffff" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB