This commit is contained in:
tree 2022-04-06 23:00:25 +02:00
rodič 9857fcae3c
revize 28801cb15f
9 změnil soubory, kde provedl 128 přidání a 23 odebrání

Zobrazit soubor

@ -68,9 +68,6 @@
{#if speaker.bio}
<div class="mt-1 text-xs text-blue-web italic"><SvelteMarkdown source={speaker.bio} /></div>
{/if}
{#if speaker.orgs}
<div class="mt-1 text-xs text-blue-web"><SvelteMarkdown source={speaker.orgs} /></div>
{/if}
</div>
{/if}

Zobrazit soubor

@ -5,15 +5,15 @@
{#if $bundle}
<div class="bg-blue-web-bg text-white">
<div class="relative mx-auto px-6 pt-10 pb-8 max-w-6xl flex">
<div class="relative mx-auto px-6 pt-10 pb-6 max-w-6xl flex pr-4">
<div class="flex-1">
<div>
<a href="/"><img src="/img/logo-white.svg" alt="UTXO.22" class="w-26" /></a>
</div>
<div class="mt-4 font-bold">
<div class="mt-4 font-semibold">
4.-5. červen 2022 @ Gabriel Loci, Praha
</div>
<div class="mt-2">
<div class="mt-2 font-thin">
Otevřená komunitní kryptoměnová konference
</div>
<div class="mt-4">
@ -22,8 +22,15 @@
</div>
<SocialButtons size="normal" />
</div>
<div class="relative mx-auto px-6 pt-10 pb-10 max-w-6xl text-xs opacity-50">
<i class="fas fa-heart text-red-500" /> S láskou vytváří <a href="https://utxo.foundation" class="underline hover:no-underline">UTXO Foundation, z.s.</a>
<div class="relative mx-auto px-6 pt-10 pb-6 max-w-6xl text-xs opacity-50 sm:flex">
<div class="flex-1 mt-1 mb-2">
<i class="fas fa-heart text-red-500" /> S láskou vytváří <a href="https://utxo.foundation" class="underline hover:no-underline" target="_blank">UTXO Foundation, z.s.</a>
</div>
<div>
<span class="font-bold">v0.8.0</span> | powered by
<a href="https://svelte.dev/" class="font-bold" target="_blank" ><img src="/img/svelte-logo.svg" class="w-5 inline" alt="Svelte" /> Svelte</a> |
grafický návrh <a href="https://www.ppmedia.cz/" target="_blank"><img src="/img/pen-production-logo.svg" class="w-24 inline-block pb-1 ml-1" /></a>
</div>
</div>
</div>
{/if}

Zobrazit soubor

@ -1,8 +1,15 @@
<script>
import { page } from '$app/stores';
import { bundle } from '$lib/stores';
import { bundle, userData } from '$lib/stores';
import SocialButtons from '$lib/SocialButtons.svelte';
function logoClick () {
userData.update(ud => {
ud.hpTrack = 'top'
return ud
})
}
</script>
<header class="relative" style="background-color: #32375C;">
@ -11,7 +18,7 @@
<div class="">
<div class="sm:flex flex-wrap space-x-10">
<div class="block justify-start flex-1 my-auto">
<a href="/"><img src="/img/logo-white.svg" class="w-26" alt="UTXO.22" /></a>
<a href="/" on:click={logoClick}><img src="/img/logo-white.svg" class="w-26" alt="UTXO.22" /></a>
</div>
<div class="sm:flex sm:space-x-10 uppercase text-sm font-bold text-white">
<a sveltekit:prefetch href="/" class="m-auto hover:text-[#E16A61]" class:text-blue-400={$page.url.pathname === '/'}>O konferenci</a>

Zobrazit soubor

@ -10,5 +10,6 @@ export const orderTicketForm = writable({
});
export const userData = writable({
favoriteEvents: []
favoriteEvents: [],
hpTrack: 'top',
});

Zobrazit soubor

@ -3,11 +3,10 @@
</script>
<script>
import { bundle } from '$lib/stores.js';
import { bundle, userData } from '$lib/stores.js';
import Avatar from '$lib/Avatar.svelte';
import SvelteMarkdown from 'svelte-markdown';
let currentTrack = 'top'
let onlyLead = true
let onlyLeadPreview = false
@ -17,13 +16,13 @@
function changeTrack (tId) {
return function () {
currentTrack = tId
userData.update(ud => { ud.hpTrack = tId; return ud; })
onlyLead = !tId
}
}
function handleShowFull () {
$: currentTrack = null
userData.update(ud => { ud.hpTrack = null; return ud })
}
</script>
@ -36,20 +35,20 @@
{#if $bundle}
<div class="flex flex-wrap gap-3 text-xs uppercase font-bold text-blue-web justify-left">
{#each tracks as track}
<div class="py-2 px-8 rounded-full shadow border border-solid {currentTrack === track.id ? 'bg-utxo-gradient border-0 text-white' : 'border-blue-web hover:bg-blue-web hover:text-white hover:border-transparent cursor-pointer'}" on:click={changeTrack(track.id)}>{track.shortname || track.name} {#if !track.id}({$bundle.spec.speakers.length}){/if}</div>
<div class="py-2 px-8 rounded-full shadow border border-solid {$userData.hpTrack === track.id ? 'bg-utxo-gradient border-0 text-white' : 'border-blue-web hover:bg-blue-web hover:text-white hover:border-transparent cursor-pointer'}" on:click={changeTrack(track.id)}>{track.shortname || track.name} {#if !track.id}({$bundle.spec.speakers.length}){/if}</div>
{/each}
</div>
<div class="flex flex-wrap gap-6 mt-14 justify-center">
{#each $bundle.spec.speakers as speaker}
{#if (currentTrack === 'top' && speaker.lead === true) || currentTrack !== 'top'}
{#if (!currentTrack || speaker.tracks.includes(currentTrack)) || currentTrack === 'top'}
{#if ($userData.hpTrack === 'top' && speaker.lead === true) || $userData.hpTrack !== 'top'}
{#if (!$userData.hpTrack || speaker.tracks.includes($userData.hpTrack)) || $userData.hpTrack === 'top'}
<Avatar speaker={speaker} />
{/if}
{/if}
{/each}
</div>
{#if currentTrack === 'top'}
{#if $userData.hpTrack === 'top'}
<div class="relative cursor-pointer mb-10">
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-white flex" on:click={handleShowFull}></div>
<div class="flex flex-wrap gap-3 mt-10 justify-center">

Zobrazit soubor

@ -16,14 +16,23 @@
return track.shortname || track.name
}
function getFlagEmoji(countryCode) {
const codePoints = countryCode
.toUpperCase()
.split('')
.map(char => 127397 + char.charCodeAt());
return String.fromCodePoint(...codePoints);
}
</script>
<section class="relative mx-auto py-10 px-6 max-w-6xl mb-10 text-blue-web">
{#if $bundle}
<div class="sm:flex gap-10 mt-4">
<div><Avatar speaker={s} size="big" /></div>
<div class="mt-4">
<h1 class="uppercase text-2xl font-bold">{s.name}</h1>
<div class="mt-4 sm:mt-0">
<div class="mb-4 text-sm uppercase">Přednášející</div>
<h1 class="uppercase text-2xl font-bold">{s.name} {getFlagEmoji(s.country)}</h1>
{#if s.bio}
<div class="mt-4 text-blue-web italic"><SvelteMarkdown source={s.bio} /></div>
{/if}
@ -32,10 +41,10 @@
{/if}
<div class="mt-4">Sekce: {s.tracks.map(t => trackRender(t)).join(', ')}</div>
{#if s.twitter}
<div class="mt-2">Twitter: <a href="https://twitter.com/{s.twitter}" target="_blank">@{s.twitter}</a></div>
<div class="mt-2">Twitter: <a href="https://twitter.com/{s.twitter}" target="_blank" class="font-bold">@{s.twitter}</a></div>
{/if}
{#if s.web && s.web.url}
<div class="mt-2">Web: <a href="{s.web.url}" target="_blank">{s.web.name || s.web.url}</a></div>
<div class="mt-2">Web: <a href="{s.web.url}" target="_blank" class="font-bold">{s.web.name || s.web.url.replace(/^https?:\/\//, '')}</a></div>
{/if}
</div>
</div>

Zobrazit soubor

@ -0,0 +1,61 @@
<svg width="124px" height="30px" viewBox="0 0 124 30" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group-18" fill="#82849A" fill-rule="nonzero">
<g id="Layer_19" transform="translate(44.043124, 15.435835)">
<path d="M2.92657343,6.3559322 C3.21561772,6.10169492 3.46853147,5.81113801 3.68531469,5.4842615 C3.86596737,5.1937046 4.08275058,4.86682809 4.26340326,4.46731235 C4.44405594,4.06779661 4.58857809,3.59564165 4.62470862,3.08716707 C4.76923077,1.59806295 4.2995338,0.617433414 3.14335664,0.14527845 C2.85431235,0.0363196126 2.56526807,0 2.27622378,0 C1.98717949,0 1.6981352,0.0726392252 1.40909091,0.181598063 C1.15617716,0.290556901 0.903263403,0.472154964 0.686480186,0.653753027 C0.46969697,0.871670702 0.289044289,1.08958838 0.180652681,1.38014528 C0.0722610723,1.67070218 0,1.96125908 0,2.25181598 C0,2.54237288 0.0722610723,2.79661017 0.180652681,3.08716707 C0.289044289,3.34140436 0.46969697,3.59564165 0.65034965,3.77723971 C0.831002331,3.95883777 1.12004662,4.14043584 1.40909091,4.28571429 C1.80652681,4.46731235 2.13170163,4.64891041 2.34848485,4.9031477 C2.56526807,5.12106538 2.70979021,5.37530266 2.81818182,5.55690073 C2.92657343,5.84745763 2.96270396,6.10169492 2.92657343,6.3559322 Z" id="Path"></path>
</g>
<g id="Layer_18" transform="translate(35.010490, 0.000000)">
<path d="M1.33682984,6.57384988 L1.33682984,21.937046 L1.33682984,21.937046 L1.33682984,27.6029056 C1.33682984,28.9830508 0.867132867,29.7094431 0,29.8910412 L0,30 C2.85431235,29.7094431 5.2027972,27.2760291 5.2027972,23.4261501 L5.2027972,8.02663438 L5.2027972,8.02663438 L5.2027972,2.39709443 C5.2027972,1.01694915 5.67249417,0.290556901 6.53962704,0.108958838 L6.53962704,0 C3.68531469,0.290556901 1.33682984,2.68765133 1.33682984,6.57384988 Z" id="Path"></path>
</g>
<g id="Layer_17" transform="translate(28.036988, 11.404358)">
<path d="M6.57606603,0 C6.61219657,0 6.61219657,0 6.6483271,0 L6.6483271,0.108958838 C4.80566976,0.326876513 4.33597279,1.81598063 4.11918958,4.35835351 C3.97466743,5.7748184 3.97466743,8.97094431 4.11918958,10.6416465 C4.33597279,13.1840194 4.80566976,14.6731235 6.6483271,14.8910412 L6.6483271,15 C6.61219657,15 6.61219657,15 6.57606603,15 C3.10753456,15 0.000308456275,12.3486683 0.000308456275,7.44552058 C-0.0358220799,2.61501211 3.10753456,0 6.57606603,0 Z" id="Path"></path>
</g>
<g id="Layer_16" transform="translate(41.803030, 3.305085)">
<path d="M0,0 L0,0.14527845 C1.44522145,0.363196126 2.16783217,1.88861985 2.16783217,5.04842615 C2.16783217,8.38983051 1.40909091,9.87893462 0,10.0605327 L0,10.1694915 L0.0722610723,10.1694915 C2.74592075,10.1694915 5.56410256,8.71670702 5.56410256,5.08474576 C5.56410256,1.34382567 2.67365967,0 0,0 Z" id="Path"></path>
</g>
<g id="Layer_15" transform="translate(0.000000, 11.368039)">
<path d="M5.05827506,0 L0,0 L0,0.363196126 L1.04778555,0.363196126 L1.04778555,11.3317191 L0,11.3317191 L0,11.6949153 L4.55244755,11.6949153 L4.55244755,11.3317191 L3.17948718,11.3317191 L3.17948718,6.61016949 L5.13053613,6.61016949 C6.75641026,6.61016949 8.70745921,5.73849879 8.70745921,3.30508475 C8.67132867,0.871670702 6.72027972,0 5.05827506,0 Z M3.17948718,0.363196126 L4.80536131,0.363196126 C5.92540793,0.363196126 6.3951049,1.23486683 6.3951049,3.30508475 C6.3951049,5.92009685 5.63636364,6.28329298 4.80536131,6.28329298 L3.17948718,6.28329298 L3.17948718,0.363196126 Z" id="Shape"></path>
</g>
<g id="Layer_14" transform="translate(8.382284, 15.835351)">
<path d="M3.36013986,0 C0.867132867,0 0,2.03389831 0,3.7409201 C0,6.10169492 1.37296037,7.44552058 3.75757576,7.44552058 C5.02214452,7.44552058 5.96153846,6.937046 6.3951049,5.99273608 L6.43123543,5.92009685 L6.06993007,5.73849879 L6.03379953,5.81113801 C5.70862471,6.61016949 4.91375291,7.04600484 3.86596737,7.04600484 C2.85431235,7.04600484 2.31235431,6.42857143 2.2039627,5.1937046 C2.16783217,4.64891041 2.16783217,3.88619855 2.16783217,3.4503632 L6.46736597,3.4503632 L6.46736597,3.37772397 C6.43123543,1.12590799 5.41958042,0 3.36013986,0 Z M4.51631702,3.12348668 L2.13170163,3.12348668 C2.13170163,2.83292978 2.16783217,2.36077482 2.2039627,2.10653753 C2.31235431,1.1622276 2.45687646,0.326876513 3.36013986,0.326876513 C3.93822844,0.326876513 4.26340326,0.690072639 4.40792541,1.4527845 C4.48018648,1.92493947 4.51631702,2.61501211 4.51631702,3.12348668 Z" id="Shape"></path>
</g>
<g id="Layer_13" transform="translate(15.247086, 15.835351)">
<path d="M7.2983683,6.90072639 L7.2983683,2.61501211 C7.2983683,0.544794189 5.6002331,0 4.62470862,0 C3.61305361,0 3.07109557,0.399515738 2.78205128,0.799031477 L2.78205128,0.217917676 L0,0.217917676 L0,0.544794189 L0.975524476,0.544794189 L0.975524476,6.937046 L0,6.937046 L0,7.22760291 L3.75757576,7.22760291 L3.75757576,6.90072639 L2.78205128,6.90072639 L2.78205128,1.56174334 C2.78205128,1.1622276 3.28787879,0.399515738 4.22727273,0.399515738 C4.76923077,0.399515738 5.45571096,0.617433414 5.45571096,1.70702179 L5.45571096,6.90072639 L4.48018648,6.90072639 L4.48018648,7.22760291 L8.23776224,7.22760291 L8.23776224,6.90072639 L7.2983683,6.90072639 Z" id="Path"></path>
</g>
<g id="Layer_12" transform="translate(53.039627, 11.368039)">
<path d="M5.05827506,0 L0,0 L0,0.363196126 L1.04778555,0.363196126 L1.04778555,11.3317191 L0,11.3317191 L0,11.6949153 L4.55244755,11.6949153 L4.55244755,11.3317191 L3.17948718,11.3317191 L3.17948718,6.61016949 L5.13053613,6.61016949 C6.75641026,6.61016949 8.70745921,5.73849879 8.70745921,3.30508475 C8.67132867,0.871670702 6.72027972,0 5.05827506,0 Z M3.17948718,0.363196126 L4.80536131,0.363196126 C5.92540793,0.363196126 6.3951049,1.23486683 6.3951049,3.30508475 C6.3951049,5.92009685 5.63636364,6.28329298 4.80536131,6.28329298 L3.17948718,6.28329298 L3.17948718,0.363196126 Z" id="Shape"></path>
</g>
<g id="Layer_11" transform="translate(61.891608, 15.835351)">
<path d="M5.6002331,0.254237288 C5.27505828,0.0726392252 4.91375291,0 4.58857809,0 C3.82983683,0 3.14335664,0.508474576 2.78205128,1.34382567 L2.78205128,0.181598063 L0,0.181598063 L0,0.508474576 L0.975524476,0.508474576 L0.975524476,6.90072639 L0,6.90072639 L0,7.22760291 L4.08275058,7.22760291 L4.08275058,6.90072639 L2.78205128,6.90072639 L2.78205128,2.57869249 C2.78205128,1.67070218 3.54079254,0.544794189 4.01048951,0.544794189 C4.08275058,0.544794189 4.15501166,0.581113801 4.26340326,0.799031477 L5.49184149,2.86924939 L5.81701632,2.83292978 L5.6002331,0.290556901 L5.6002331,0.254237288 Z" id="Path"></path>
</g>
<g id="Layer_10" transform="translate(68.106061, 15.835351)">
<path d="M3.64918415,0 C1.48135198,0 0,1.48910412 0,3.7409201 C0,5.88377724 1.55361305,7.44552058 3.64918415,7.44552058 C5.81701632,7.44552058 7.2983683,5.95641646 7.2983683,3.70460048 C7.2983683,1.56174334 5.78088578,0 3.64918415,0 Z M2.2039627,2.25181598 C2.27622378,1.30750605 2.38461538,0.326876513 3.64918415,0.326876513 C4.80536131,0.326876513 5.05827506,1.23486683 5.13053613,2.21549637 C5.2027972,3.1598063 5.2027972,4.21307506 5.13053613,5.15738499 C5.05827506,6.0653753 4.94988345,7.08232446 3.68531469,7.08232446 C2.49300699,7.08232446 2.31235431,6.10169492 2.24009324,5.1937046 C2.0955711,4.24939467 2.0955711,3.19612591 2.2039627,2.25181598 Z" id="Shape"></path>
</g>
<g id="Layer_9" transform="translate(76.271562, 11.368039)">
<path d="M6.72027972,0 L3.93822844,0 L3.93822844,0.326876513 L4.91375291,0.326876513 L4.91375291,5.23002421 C4.66083916,4.9031477 4.11888112,4.46731235 3.25174825,4.46731235 C1.66200466,4.46731235 0,5.62953995 0,8.20823245 C0,10.7506053 1.6981352,11.9128329 3.25174825,11.9128329 C4.19114219,11.9128329 4.6969697,11.4769976 4.94988345,11.1138015 L4.94988345,11.6949153 L7.73193473,11.6949153 L7.73193473,11.3680387 L6.75641026,11.3680387 L6.75641026,0 L6.72027972,0 Z M3.46853147,11.5133172 C2.45687646,11.5133172 2.2039627,10.8232446 2.0955711,9.5157385 C2.02331002,8.82566586 2.02331002,7.66343826 2.0955711,6.86440678 C2.2039627,5.52058111 2.45687646,4.86682809 3.46853147,4.86682809 C4.44405594,4.86682809 4.87762238,5.7748184 4.87762238,6.13801453 L4.87762238,10.3874092 C4.87762238,10.7506053 4.33566434,11.5133172 3.46853147,11.5133172 Z" id="Shape"></path>
</g>
<g id="Layer_8" transform="translate(84.039627, 16.016949)">
<path d="M7.15384615,0 L4.37179487,0 L4.37179487,0.326876513 L5.34731935,0.326876513 L5.34731935,5.70217918 C5.34731935,6.10169492 4.84149184,6.86440678 3.9020979,6.86440678 C3.57692308,6.86440678 2.78205128,6.71912833 2.78205128,5.55690073 L2.78205128,0 L0,0 L0,0.326876513 L0.975524476,0.326876513 L0.975524476,4.6125908 C0.975524476,6.68280872 2.67365967,7.22760291 3.54079254,7.22760291 C4.55244755,7.22760291 5.09440559,6.82808717 5.38344988,6.42857143 L5.38344988,7.04600484 L8.16550117,7.04600484 L8.16550117,6.71912833 L7.15384615,6.71912833 L7.15384615,0 Z" id="Path"></path>
</g>
<g id="Layer_7" transform="translate(92.566434, 15.871671)">
<path d="M5.81701632,5.7748184 C5.49184149,6.53753027 4.6969697,7.00968523 3.75757576,7.00968523 C2.52913753,7.00968523 2.27622378,5.70217918 2.2039627,5.15738499 C2.13170163,4.17675545 2.13170163,3.01452785 2.2039627,2.10653753 C2.31235431,0.871670702 2.56526807,0.254237288 3.504662,0.254237288 C4.04662005,0.254237288 4.19114219,0.399515738 4.33566434,0.653753027 L5.70862471,2.65133172 L6.03379953,2.65133172 L5.78088578,0.399515738 L5.74475524,0.399515738 C5.16666667,0.217917676 4.22727273,0 3.504662,0 C0.939393939,0 0,1.92493947 0,3.7409201 C0,6.02905569 1.33682984,7.44552058 3.54079254,7.44552058 C4.76923077,7.44552058 5.70862471,6.90072639 6.14219114,5.99273608 L6.17832168,5.92009685 L5.81701632,5.73849879 L5.81701632,5.7748184 Z" id="Path"></path>
</g>
<g id="Layer_6" transform="translate(99.214452, 12.966102)">
<path d="M3.82983683,9.26150121 C3.75757576,9.47941889 3.57692308,9.87893462 3.14335664,9.87893462 C2.85431235,9.87893462 2.67365967,9.73365617 2.67365967,8.97094431 L2.67365967,3.41404358 L4.11888112,3.41404358 L4.11888112,3.05084746 L2.67365967,3.05084746 L2.67365967,0 L2.38461538,0 L0.831002331,1.34382567 L0.831002331,3.05084746 L0,3.05084746 L0,3.41404358 L0.831002331,3.41404358 L0.831002331,8.38983051 C0.831002331,9.55205811 1.62587413,10.31477 2.89044289,10.31477 C3.68531469,10.31477 4.04662005,9.8062954 4.15501166,9.37046005 L4.19114219,9.29782082 L3.86596737,9.18886199 L3.82983683,9.26150121 Z" id="Path"></path>
</g>
<g id="Layer_5" transform="translate(104.597902, 11.368039)">
<path d="M1.08391608,2.14285714 C1.6981352,2.14285714 2.13170163,1.67070218 2.13170163,1.08958838 C2.13170163,0.472154964 1.66200466,0 1.08391608,0 C0.46969697,0 0,0.472154964 0,1.08958838 C0.0361305361,1.70702179 0.46969697,2.14285714 1.08391608,2.14285714 Z" id="Path"></path>
</g>
<g id="Layer_4" transform="translate(103.839161, 16.016949)">
<polygon id="Path" points="2.78205128 0 0 0 0 0.326876513 0.939393939 0.326876513 0.939393939 6.71912833 0 6.71912833 0 7.04600484 3.75757576 7.04600484 3.75757576 6.71912833 2.78205128 6.71912833"></polygon>
</g>
<g id="Layer_3" transform="translate(107.994172, 15.835351)">
<path d="M3.64918415,0 C1.48135198,0 0,1.48910412 0,3.7409201 C0,5.88377724 1.55361305,7.44552058 3.64918415,7.44552058 C5.81701632,7.44552058 7.2983683,5.95641646 7.2983683,3.70460048 C7.33449883,1.56174334 5.78088578,0 3.64918415,0 Z M2.2039627,2.25181598 C2.27622378,1.30750605 2.38461538,0.326876513 3.64918415,0.326876513 C4.80536131,0.326876513 5.05827506,1.23486683 5.13053613,2.21549637 C5.2027972,3.1598063 5.2027972,4.21307506 5.13053613,5.15738499 C5.05827506,6.0653753 4.94988345,7.08232446 3.68531469,7.08232446 C2.49300699,7.08232446 2.31235431,6.10169492 2.24009324,5.1937046 C2.13170163,4.24939467 2.13170163,3.19612591 2.2039627,2.25181598 Z" id="Shape"></path>
</g>
<g id="Layer_2" transform="translate(115.762238, 15.835351)">
<path d="M7.2983683,6.90072639 L7.2983683,2.61501211 C7.2983683,0.544794189 5.6002331,0 4.62470862,0 C3.61305361,0 3.07109557,0.399515738 2.78205128,0.799031477 L2.78205128,0.217917676 L0,0.217917676 L0,0.544794189 L0.975524476,0.544794189 L0.975524476,6.937046 L0,6.937046 L0,7.22760291 L3.75757576,7.22760291 L3.75757576,6.90072639 L2.78205128,6.90072639 L2.78205128,1.56174334 C2.78205128,1.1622276 3.28787879,0.399515738 4.22727273,0.399515738 C4.76923077,0.399515738 5.45571096,0.617433414 5.45571096,1.70702179 L5.45571096,6.90072639 L4.48018648,6.90072639 L4.48018648,7.22760291 L8.23776224,7.22760291 L8.23776224,6.90072639 L7.2983683,6.90072639 Z" id="Path"></path>
</g>
</g>
</g>
</svg>

Za

Šířka:  |  Výška:  |  Velikost: 13 KiB

Zobrazit soubor

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 98.1 118" style="enable-background:new 0 0 98.1 118;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FF3E00;}
.st1{fill:#FFFFFF;}
</style>
<path class="st0" d="M91.8,15.6C80.9-0.1,59.2-4.7,43.6,5.2L16.1,22.8C8.6,27.5,3.4,35.2,1.9,43.9c-1.3,7.3-0.2,14.8,3.3,21.3
c-2.4,3.6-4,7.6-4.7,11.8c-1.6,8.9,0.5,18.1,5.7,25.4c11,15.7,32.6,20.3,48.2,10.4l27.5-17.5c7.5-4.7,12.7-12.4,14.2-21.1
c1.3-7.3,0.2-14.8-3.3-21.3c2.4-3.6,4-7.6,4.7-11.8C99.2,32.1,97.1,22.9,91.8,15.6"/>
<path class="st1" d="M40.9,103.9c-8.9,2.3-18.2-1.2-23.4-8.7c-3.2-4.4-4.4-9.9-3.5-15.3c0.2-0.9,0.4-1.7,0.6-2.6l0.5-1.6l1.4,1
c3.3,2.4,6.9,4.2,10.8,5.4l1,0.3l-0.1,1c-0.1,1.4,0.3,2.9,1.1,4.1c1.6,2.3,4.4,3.4,7.1,2.7c0.6-0.2,1.2-0.4,1.7-0.7L65.5,72
c1.4-0.9,2.3-2.2,2.6-3.8c0.3-1.6-0.1-3.3-1-4.6c-1.6-2.3-4.4-3.3-7.1-2.6c-0.6,0.2-1.2,0.4-1.7,0.7l-10.5,6.7
c-1.7,1.1-3.6,1.9-5.6,2.4c-8.9,2.3-18.2-1.2-23.4-8.7c-3.1-4.4-4.4-9.9-3.4-15.3c0.9-5.2,4.1-9.9,8.6-12.7l27.5-17.5
c1.7-1.1,3.6-1.9,5.6-2.5c8.9-2.3,18.2,1.2,23.4,8.7c3.2,4.4,4.4,9.9,3.5,15.3c-0.2,0.9-0.4,1.7-0.7,2.6l-0.5,1.6l-1.4-1
c-3.3-2.4-6.9-4.2-10.8-5.4l-1-0.3l0.1-1c0.1-1.4-0.3-2.9-1.1-4.1c-1.6-2.3-4.4-3.3-7.1-2.6c-0.6,0.2-1.2,0.4-1.7,0.7L32.4,46.1
c-1.4,0.9-2.3,2.2-2.6,3.8s0.1,3.3,1,4.6c1.6,2.3,4.4,3.3,7.1,2.6c0.6-0.2,1.2-0.4,1.7-0.7l10.5-6.7c1.7-1.1,3.6-1.9,5.6-2.5
c8.9-2.3,18.2,1.2,23.4,8.7c3.2,4.4,4.4,9.9,3.5,15.3c-0.9,5.2-4.1,9.9-8.6,12.7l-27.5,17.5C44.8,102.5,42.9,103.3,40.9,103.9"/>
</svg>

Za

Šířka:  |  Výška:  |  Velikost: 1.7 KiB

Zobrazit soubor

@ -0,0 +1,4 @@
<svg width="1000" height="1000" viewBox="0 0 1000 1000" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M489.5 226.499C328 231.632 280 346.999 269 409.499C283.333 386.332 328.5 335.5 395 335.5C472.5 335.5 531.5 422 567.5 449C611.237 481.803 699.123 525.115 814.5 490C906.5 462 949.167 364.332 958.5 317.999C914 378.499 846.5 414.838 763 371.999C705.5 342.499 662.5 221 489.5 226.499Z" fill="#07B6D5"/>
<path d="M261 500.999C99.5 506.132 51.5 621.499 40.5 683.999C54.8333 660.832 100 610 166.5 610C244 610 303 696.5 339 723.5C382.737 756.303 470.623 799.615 586 764.5C678 736.5 720.667 638.832 730 592.499C685.5 652.999 618 689.338 534.5 646.499C477 616.999 434 495.5 261 500.999Z" fill="#07B6D5"/>
</svg>

Za

Šířka:  |  Výška:  |  Velikost: 714 B