From 559822460c1777603a918b3642cb12f4820d52c5 Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sat, 5 Feb 2022 15:11:12 +0300 Subject: chore: initial --- android-chrome-192x192.png | Bin 0 -> 7393 bytes android-chrome-512x512.png | Bin 0 -> 33443 bytes apple-touch-icon.png | Bin 0 -> 6677 bytes azahi-a-big.png | Bin 0 -> 4184 bytes favicon-16x16.png | Bin 0 -> 321 bytes favicon-32x32.png | Bin 0 -> 666 bytes favicon.ico | Bin 0 -> 15406 bytes index.html | 45 +++++++++++++++++++++++++++++++++++++++++++++ site.webmanifest | 1 + style.css | 20 ++++++++++++++++++++ 10 files changed, 66 insertions(+) create mode 100644 android-chrome-192x192.png create mode 100644 android-chrome-512x512.png create mode 100644 apple-touch-icon.png create mode 100644 azahi-a-big.png create mode 100644 favicon-16x16.png create mode 100644 favicon-32x32.png create mode 100644 favicon.ico create mode 100644 index.html create mode 100644 site.webmanifest create mode 100644 style.css diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png new file mode 100644 index 0000000..556b7c6 Binary files /dev/null and b/android-chrome-192x192.png differ diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png new file mode 100644 index 0000000..0f154e3 Binary files /dev/null and b/android-chrome-512x512.png differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png new file mode 100644 index 0000000..b18b23b Binary files /dev/null and b/apple-touch-icon.png differ diff --git a/azahi-a-big.png b/azahi-a-big.png new file mode 100644 index 0000000..edd63bf Binary files /dev/null and b/azahi-a-big.png differ diff --git a/favicon-16x16.png b/favicon-16x16.png new file mode 100644 index 0000000..7ded3ee Binary files /dev/null and b/favicon-16x16.png differ diff --git a/favicon-32x32.png b/favicon-32x32.png new file mode 100644 index 0000000..c0e103b Binary files /dev/null and b/favicon-32x32.png differ diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..d74d67c Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..f9b1d6b --- /dev/null +++ b/index.html @@ -0,0 +1,45 @@ + + + + + + azahi.cc + + + + + + + + + +
+
+avatar
+

azahi

+Azat Bahawi (Азат Багавиев) + + + +DevOps engineer. Formerly C/C++ SWE. + +GitHub +GitLab + +email: azahi [at] bahawi [dot] net +IRC: azahi (Libera, Rizon, OFTC) +Matrix: @azahi:azahi.cc + + + +Not active on any conventional social media. +Whoever you may find there is most certainly not me. + + + +Please use the aforementioned email to contact me. +I can speak Tatar, Russian and English languages freely. +
+
+ + diff --git a/site.webmanifest b/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..93d8a62 --- /dev/null +++ b/style.css @@ -0,0 +1,20 @@ +@media (prefers-color-scheme: light) { + :root { + --background: white; + --foreground: black; + } +} + +@media (prefers-color-scheme: dark) { + :root { + --background: black; + --foreground: white; + } +} + +body { + background-color: var(--background); + color: var(--foreground); + font-family: monospace; + font-size: 14px; +} -- cgit 1.4.1