From 9ba3c3d09c6db4449722607d899ccef2730ac886 Mon Sep 17 00:00:00 2001 From: azahi Date: Tue, 12 Nov 2024 23:28:32 +0300 Subject: feat: rework --- android-chrome-192x192.png | Bin 7393 -> 82383 bytes android-chrome-512x512.png | Bin 33443 -> 501240 bytes apple-touch-icon.png | Bin 6677 -> 73494 bytes azahi.webp | Bin 0 -> 85812 bytes favicon-16x16.png | Bin 321 -> 964 bytes favicon-32x32.png | Bin 666 -> 3101 bytes favicon.ico | Bin 15406 -> 15406 bytes index.html | 122 ++++++++++++++++++++++++++++----------------- style.css | 63 +++++++++++------------ 9 files changed, 105 insertions(+), 80 deletions(-) create mode 100644 azahi.webp diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png index 556b7c6..ecd6d4f 100644 Binary files a/android-chrome-192x192.png and b/android-chrome-192x192.png differ diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png index 0f154e3..93a8e5f 100644 Binary files a/android-chrome-512x512.png and b/android-chrome-512x512.png differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png index b18b23b..5970e77 100644 Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ diff --git a/azahi.webp b/azahi.webp new file mode 100644 index 0000000..46b2d9e Binary files /dev/null and b/azahi.webp differ diff --git a/favicon-16x16.png b/favicon-16x16.png index 7ded3ee..22f9e5b 100644 Binary files a/favicon-16x16.png and b/favicon-16x16.png differ diff --git a/favicon-32x32.png b/favicon-32x32.png index c0e103b..f8dc726 100644 Binary files a/favicon-32x32.png and b/favicon-32x32.png differ diff --git a/favicon.ico b/favicon.ico index d74d67c..25e7b61 100644 Binary files a/favicon.ico and b/favicon.ico differ diff --git a/index.html b/index.html index 0d80aa5..9ded0f9 100644 --- a/index.html +++ b/index.html @@ -1,47 +1,79 @@ - - - - azahi - - - - - - - - - -
-
-

azahi

-

- Azat Bahawi | Азат Багавиев -

-

- Keyoxide - | - Projects - | - GitHub - | - Repology -

-

-

-
Email:
-
azat [at] bahawi [dot] net (PGP) -
2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B
-
IRC:
-
azahi @ Libera
-
azahi @ OFTC
-
azahi @ hackint
-
azahi @ Rizon
-
Matrix:
-
@azahi:azahi.cc
-
-

-
-
- + + + + + + + + + + + + + azahi + + +
+
+
+ +

azahi

+

Azat Bahawi | Азат Багавиев

+

+ Keyoxide + | + Projects + | + GitHub + | + Repology +

+
+
Email:
+
+ azat [at] bahawi [dot] net + (PGP) +
+
+ 2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B +
+
IRC:
+
+ azahi + @ + Libera +
+
+ azahi + @ + OFTC +
+
+ azahi + @ + hackint +
+
+ azahi + @ + Rizon +
+
Matrix:
+
+ @azahi:azahi.cc +
+
+
+
+
+ diff --git a/style.css b/style.css index 31b9de3..3cd652d 100644 --- a/style.css +++ b/style.css @@ -1,58 +1,51 @@ -:root { - --black: #161719; - --blue: #81a2be; - --cyan: #8abeb7; - --green: #b5bd68; - --magenta: #b294bb; - --red: #cc6666; - --white: #ffffff; - --yellow: #f0c674; -} - @media (prefers-color-scheme: light) { - :root { - --background: var(--white); - --foreground: var(--black); - --link-color: var(--blue); - } + :root { + --link-color: #81a2be; + } } @media (prefers-color-scheme: dark) { - :root { - --background: var(--black); - --foreground: var(--white); - --link-color: var(--red); - } + :root { + --link-color: #cc6666; + } } body { - background-color: var(--background); - color: var(--foreground); - font-family: Iosevka, monospace; - font-size: 1.3em; - line-height: 1.2em; + font-family: Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", + "Nimbus Sans Narrow", sans-serif-condensed, sans-serif; + font-weight: normal; + font-size: 1.2rem; + line-height: 1.4rem; } a { - color: var(--link-color); + color: var(--link-color); } dt { - font-style: italic; + font-style: italic; } code { - white-space: pre; + white-space: pre; } .container { - position: absolute; - top: 50%; - left: 50%; - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); + position: absolute; + top: 50%; + left: 50%; + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + margin: auto; } .center { - text-align: center; + text-align: center; +} + +.image { + display: block; + margin-left: auto; + margin-right: auto; + width: 50%; } -- cgit 1.4.1