From a72dc96045c98811037d1a048baf30a5137b3867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Czy=C5=BC?= Date: Thu, 6 Apr 2023 00:11:47 +0200 Subject: [PATCH] content added --- public/index.html | 21 ++++++++++++++++++++- public/styles.css | 25 +++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 21cba3a..039961e 100644 --- a/public/index.html +++ b/public/index.html @@ -35,9 +35,28 @@ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> + + + Michael Czyż - +
+

Hi, I'm Mike 👋🏻 👨🏻‍💻

+ +

I'm a student and a frontend developer creating websites in many technologies and frameworks. I also want to get closer to the metal 🔨 so I create software in C++, C# and Python. Electron is terrifying me :electron:.

+

I built a Web App using Angular Material framework, a simple Server Manager program for Windows and much more! I'm also a co-author of a Discord multipurpose bot written in JavaScript.

+

I'm having a lot of fun with the latest technologies, mainly Cryptocurrencies 💰 and Artificial Inteligence 👁️.

+ +

Find Mike around the web 🌎:

+ + +

Psst! You can also take a look at my dotfiles and find my latest rice 🍚.

+
\ No newline at end of file diff --git a/public/styles.css b/public/styles.css index e69de29..de6ddc6 100644 --- a/public/styles.css +++ b/public/styles.css @@ -0,0 +1,25 @@ +@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400;0,500;1,400&display=swap'); + +html, body { + margin: 0; + height: 100vh; + background-color: #24273a; + color: #cad3f5; + display: flex; + justify-content: center; + align-items: center; + font-family: 'Schibsted Grotesk', sans-serif; +} + +.page { + box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px 0px, rgba(0, 0, 0, 0.23) 0px 6px 6px 0px; + box-sizing: border-box; + width: 8.5in; + height: 11in; + background-color: #363a4f; + padding: 0.5in; +} + +a { + color: #7dc4e4; +} \ No newline at end of file