From a46fa2436e54768f8c70fe2ee9c46730607ed6df Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Wed, 15 Feb 2023 01:17:12 +0300 Subject: feat: rework --- index.html | 63 +++++++++++++++++++++++++++++++------------------------------- style.css | 20 +++++++++++++------- 2 files changed, 44 insertions(+), 39 deletions(-) diff --git a/index.html b/index.html index 3221543..a1502e1 100644 --- a/index.html +++ b/index.html @@ -12,37 +12,36 @@ -

azahi

-

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

-

- SRE/DevOps-engineer. Formerly a C/C++ SWE. -
- NixOS contributor and maintainer. -

-

- 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

+

+ 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 9d08044..31b9de3 100644 --- a/style.css +++ b/style.css @@ -13,6 +13,7 @@ :root { --background: var(--white); --foreground: var(--black); + --link-color: var(--blue); } } @@ -20,23 +21,20 @@ :root { --background: var(--black); --foreground: var(--white); + --link-color: var(--red); } } body { background-color: var(--background); color: var(--foreground); - font-family: monospace; + font-family: Iosevka, monospace; font-size: 1.3em; - display: table; - margin-left: auto; - margin-right: auto; - margin-top: 10em; - padding: 3em; + line-height: 1.2em; } a { - color: var(--red) + color: var(--link-color); } dt { @@ -47,6 +45,14 @@ code { white-space: pre; } +.container { + position: absolute; + top: 50%; + left: 50%; + -ms-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} + .center { text-align: center; } -- cgit 1.4.1