diff --git a/public/azrael.gif b/public/azrael.gif new file mode 100644 index 0000000..4af59e8 Binary files /dev/null and b/public/azrael.gif differ diff --git a/public/screenshots/ignibg.png b/public/screenshots/ignibg.png new file mode 100644 index 0000000..7a93738 Binary files /dev/null and b/public/screenshots/ignibg.png differ diff --git a/src/App.svelte b/src/App.svelte index 1f27296..acb74e0 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -25,6 +25,8 @@ var technologySelected = null; var technologyHover = false; + /** @type {null | "websites" | "applications" | "bots"} */ + var appTypeHover = null; @@ -42,7 +44,9 @@
-

I'm a young developer making websites and discord bots.

+

I'm a young developer making appTypeHover = "websites"} on:mouseleave={() => appTypeHover == "websites" && (appTypeHover = null)}>websites, + appTypeHover = "applications"} on:mouseleave={() => appTypeHover == "applications" && (appTypeHover = null)}>applications and + appTypeHover = "bots"} on:mouseleave={() => appTypeHover == "bots" && (appTypeHover = null)}>discord bots.

@@ -51,20 +55,52 @@
I helped many projects come to life. Here are some examples:
- - igni - The universal discord bot + + igni - The universal Discord bot + +

+ igni is a universal Discord bot, making managing Discord communities easy. +

+

+ It includes customizability, music playback (Youtube, SoundCloud, Spotify), moderation commands, anime, automation, games and more. +

+
- + Animasher - Platform for creating and sharing animations + +

+ Animasher is a work in progress platform for creating and sharing animations online. +

+

+ It allows people to easily create animations inside the website, and then share it with the world, as well as communicate with other creators to improve themselves. +

+
- + Heaventaker - Helltaker fan game + +

+ Heaventaker is a helltaker fan-game visual novel and puzzle game. +

+

+ Heaventaker currently has 3 different puzzles and 4 angels to collect. Playable online on the website, or on Android devices (application installable from Google Play Store) +

+
- + Mangades - Mangadex downloader + +

+ Mangades is a manga downloader from Mangadex. +

+

+ It can download mangas to EPUB or CBZ files online from browsers +

+
@@ -203,16 +239,10 @@ margin: 0 min(50px, 5%) 0 min(50px, 5%); width: calc(100% - min(100px, 10%)); } - .bar .small { - display: none; - } @media (max-width: 570px) { .bar .big { display: none; } - .bar .small { - display: initial; - } } .projects, .bottombar { max-width: 1380px; diff --git a/src/components/button.svelte b/src/components/button.svelte index 1d7d561..f3e1378 100644 --- a/src/components/button.svelte +++ b/src/components/button.svelte @@ -17,6 +17,7 @@ border-radius: 5px; padding: 10px 15px; color: white; + cursor: pointer; } .button:hover { text-decoration: none; @@ -25,12 +26,20 @@ display: inline-block; } + button { + border: 1px solid transparent; + } + button:active, .button:active { background: #007bc7; } - button:focus, .button:focus { + button:focus, .button:focus, button:hover { + border-color: black; + } + button.dark:focus, .button.dark:focus, button.dark:hover { border-color: white; } + .text { background: transparent; color: black; diff --git a/src/components/project.svelte b/src/components/project.svelte index 8d46253..1a64428 100644 --- a/src/components/project.svelte +++ b/src/components/project.svelte @@ -1,7 +1,9 @@