Update
ci/woodpecker/push/woodpecker Pipeline was successful Podrobnosti

This commit is contained in:
tree 2022-10-24 17:35:11 +02:00
rodič 3c2e1aa768
revize 2943e118cf
5 změnil soubory, kde provedl 22 přidání a 4 odebrání

Zobrazit soubor

@ -6,7 +6,8 @@ body {
font-family: 'Roboto Mono', monospace; font-family: 'Roboto Mono', monospace;
/*background-color: #efa005;*/ /*background-color: #efa005;*/
/*background-color: #d6d00c;*/ /*background-color: #d6d00c;*/
background-color: #ffcb03; background-color: #303030;
color: white;
} }
a { a {
@ -19,4 +20,8 @@ a:hover {
.eb2-photo { .eb2-photo {
filter: sepia(100%) hue-rotate(20deg); filter: sepia(100%) hue-rotate(20deg);
}
.eb2-photo-invert {
filter: invert(1) sepia(100%) hue-rotate(20deg);
} }

Zobrazit soubor

@ -50,6 +50,12 @@
text: 'Kryptoanarchista a lunarpunk - Secret Network Czech, <a href="https://privacyhub.carrd.co/" target="_blank">Privacy Hub CZ|SK</a>', text: 'Kryptoanarchista a lunarpunk - Secret Network Czech, <a href="https://privacyhub.carrd.co/" target="_blank">Privacy Hub CZ|SK</a>',
url: 'https://twitter.com/JiriCepelka' url: 'https://twitter.com/JiriCepelka'
}, },
{
id: 'jacob-jelen',
name: 'Jacob Jelen',
text: 'Product designer, Creative Technologist',
url: 'https://twitter.com/jacobjelen'
},
{ {
id: 'vojtch', id: 'vojtch',
name: 'Vojtěch Studený', name: 'Vojtěch Studený',
@ -62,6 +68,12 @@
text: 'Business developer a hlavní analytik společnosti <a href="https://softvision.ai/ target="_blank">SoftVision</a>', text: 'Business developer a hlavní analytik společnosti <a href="https://softvision.ai/ target="_blank">SoftVision</a>',
url: 'https://www.linkedin.com/in/petr-hotovec-2b1759a7' url: 'https://www.linkedin.com/in/petr-hotovec-2b1759a7'
}, },
{
id: 'adam-sobotka',
name: 'Adam Sobotka',
text: 'Zakladatel Zitrone, člen Developer DAO a Forefront',
url: 'https://twitter.com/vorcigernix'
},
{ {
id: 'jiri-skrivan', id: 'jiri-skrivan',
name: 'Jiří Skřivan', name: 'Jiří Skřivan',
@ -107,7 +119,7 @@
</p> </p>
<div class="mt-6"> <div class="mt-6">
<a href="https://proxy-tickets.ethbrno.cz/"> <a href="https://proxy-tickets.ethbrno.cz/">
<button class="bg-eb2 text-[#ffffff] hover:bg-gray-700 font-bold py-2 px-4 rounded"> <button class="bg-eb2 text-[#000000] hover:opacity-50 font-bold py-2 px-4 rounded">
Koupit vstupenku → Koupit vstupenku →
</button> </button>
</a> </a>
@ -172,7 +184,7 @@
<div class="flex flex-wrap justify-center mt-4"> <div class="flex flex-wrap justify-center mt-4">
{#each partners as item} {#each partners as item}
<div> <div>
<a href={item.url} target="_blank"><img src="/photos/partners/{item.id}.png" alt="{item.name}" class="h-10 grayscale hover:grayscale-0" /> <a href={item.url} target="_blank"><img src="/photos/partners/{item.id}.png" alt="{item.name}" class="eb2-photo-invert h-10 grayscale hover:grayscale-0 invert" />
</div> </div>
{/each} {/each}
</div> </div>

Binární soubor nebyl zobrazen.

Za

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

Binární soubor nebyl zobrazen.

Za

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

Zobrazit soubor

@ -7,8 +7,9 @@ module.exports = {
eb2: { eb2: {
//DEFAULT: '#e11d48', //DEFAULT: '#e11d48',
//DEFAULT: '#992524', //DEFAULT: '#992524',
DEFAULT: '#59565e', //DEFAULT: '#59565e',
//normal: '#84cc16', //normal: '#84cc16',
DEFAULT: '#ffcb03'
} }
} }
}, },