diff --git a/assets/TerminalVector.ttf b/assets/TerminalVector.ttf new file mode 100644 index 0000000..60468e6 Binary files /dev/null and b/assets/TerminalVector.ttf differ diff --git a/assets/favicon.ico b/assets/favicon.ico new file mode 100644 index 0000000..19c6b7c Binary files /dev/null and b/assets/favicon.ico differ diff --git a/assets/index.html b/assets/index.html index fccabb5..4842454 100644 --- a/assets/index.html +++ b/assets/index.html @@ -1,27 +1,65 @@ - - - - - - - - - - \ No newline at end of file + + + diff --git a/assets/styles.scss b/assets/styles.scss new file mode 100644 index 0000000..c5290d3 --- /dev/null +++ b/assets/styles.scss @@ -0,0 +1,21 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@font-face { + font-family: "Liberation Mono"; + src: + url("LiberationMono.woff2") format("woff2"), + url("LiberationMono.woff") format("woff"); + font-weight: normal; + font-style: normal; + font-display: swap; +} + +canvas { + @apply w-full h-[65vh] min-h-[200px] block mx-auto bg-black; +} + +.code { + @apply px-1 rounded font-mono bg-zinc-900 border border-zinc-700 lowercase; +}