This commit is contained in:
tree 2022-07-21 18:31:50 +02:00
rodič f96e70ec6d
revize 38b29794a9
13 změnil soubory, kde provedl 809 přidání a 3 odebrání

750
package-lock.json vygenerováno

Rozdílový obsah nebyl zobrazen, protože je příliš veliký Načíst rozdílové porovnání

Zobrazit soubor

@ -17,13 +17,17 @@
"@playwright/test": "^1.22.2",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"svelte": "^3.44.0",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4",
"vite": "^3.0.0"
},

6
postcss.config.cjs Normal file
Zobrazit soubor

@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

6
src/app.css Normal file
Zobrazit soubor

@ -0,0 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding:wght@200;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

Zobrazit soubor

@ -4,6 +4,7 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://kit.fontawesome.com/c1c6b3e09d.js" crossorigin="anonymous"></script>
%sveltekit.head%
</head>
<body>

Zobrazit soubor

@ -0,0 +1,7 @@
<script>
import "../app.css";
</script>
<div class="font-mono">
<slot />
</div>

Zobrazit soubor

@ -1,2 +1,19 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
<svelte:head>
<title>ETHBrno²</title>
</svelte:head>
<div class="flex justify-center items-center h-screen bg-[#15202B] text-white transition-all">
<div class="text-center px-10 lg:px-4 lg:w-1/2">
<div class="text-center mb-8"><img src="/logo-red.png" class="inline-block w-[350px]" /></div>
<div class="transition-all text-[#E73845] "><h1 class="text-7xl opacity-100">ETHBrno²</h1></div>
<div class="mt-8 text-2xl uppercase tracking-widest font-italic">&gt; Privacy & Security edition &lt;</div>
<div class="mt-4 text-sm opacity-50 lowercase">#anonymity #non-kyc #encryption #decentralization #p2p #smartcontracts #audits #vulnerabilities #analytics #wallets #scams #MEV #zeroknowledgeproofs #zkp </div>
<div class="mt-8">October 2022 @ Brno, Czech Republic</div>
<div class="mt-8 text-3xl transition-all opacity-80">
<a href="https://twitter.com/ethbrno" target="_blank"><i class="fab fa-twitter hover:text-[#E73845] transition-all"></i></a>
<a href="https://docs.ethbrno.cz/" target="_blank"><i class="fa-solid fa-book hover:text-[#E73845] transition-all"></i></a>
<a href="https://github.com/gweicz/ethbrno/" target="_blank"><i class="fa-brands fa-github hover:text-[#E73845] transition-all"></i></a>
</div>
</div>
</div>

binární
static/favicon.png

Binární soubor nebyl zobrazen.

Před

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

Za

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

binární
static/logo-bw.png Normal file

Binární soubor nebyl zobrazen.

Za

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

5
static/logo-bw.svg Normal file

Rozdílový obsah nebyl zobrazen, protože některé řádky jsou příliš dlouhá

Za

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

binární
static/logo-red.png Normal file

Binární soubor nebyl zobrazen.

Za

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

Zobrazit soubor

@ -5,7 +5,9 @@ import preprocess from 'svelte-preprocess';
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess(),
preprocess: preprocess({
postcss: true
}),
kit: {
adapter: adapter(),

8
tailwind.config.cjs Normal file
Zobrazit soubor

@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {},
},
plugins: [],
}