diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-07-02 17:38:29 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-07-02 17:38:29 +0300 |
commit | 84169cc00825ff294498f380e0ec28b0bd088c27 (patch) | |
tree | 146ca36efbf2ba487056d6412724e962edccdec7 | |
parent | fix: links (diff) |
feat: revamp
-rw-r--r-- | index.html | 78 | ||||
-rw-r--r-- | style.css | 11 |
2 files changed, 42 insertions, 47 deletions
diff --git a/index.html b/index.html index ea6729b..1ce7b7d 100644 --- a/index.html +++ b/index.html @@ -1,43 +1,41 @@ <!doctype html> <html class="no-js" lang="en"> - <head> - <meta charset="utf-8"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - <title>azahi</title> - <meta name="description" content="azahi.cc"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - - <link rel="apple-touch-icon" href="apple-touch-icon.png"> - <link rel="icon" href="favicon.ico"> - <link rel="icon" sizes="16x16" type="image/png" href="favicon-16x16.png"> - <link rel="icon" sizes="32x32" type="image/png" href="favicon-32x32.png"> - <link rel="stylesheet" href="style.css"> - </head> - <body> - <h1 class="center">azahi</h1> - <p class="center"> - Azat Bahawi <i>(Азат Багавиев)</i> - </p> - <p class="center"> - DevOps engineer. Formerly a C/C++ SWE. - </p> - <p class="center"> - <a href="https://github.com/azahi">GitHub</a> - | - <a href="https://gitlab.com/azahi">GitLab</a> - </p> - <p> - <dl> - <dt>Email:</dt> - <dd><strong>azat [at] bahawi [dot] net</strong> (<a href="pgp.asc">PGP</a>) - <dd><code>2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B</code></ddd> - <dt>IRC:</dt> - <dd><strong>azahi</strong> @ <a href="https://libera.chat">Libera</a></dd> - <dd><strong>azahi</strong> @ <a href="https://oftc.net">OFTC</a></dd> - <dd><strong>azahi</strong> @ <a href="https://rizon.net">Rizon</a></dd> - <dt>Matrix:</dt> - <dd><strong>@azahi:azahi.cc</strong></dd> - </dl> - </p> - </body> + <head> + <meta charset="utf-8"> + <title>azahi</title> + <meta name="description" content="azahi.cc"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="apple-touch-icon" href="apple-touch-icon.png"> + <link rel="icon" href="favicon.ico"> + <link rel="icon" sizes="16x16" type="image/png" href="favicon-16x16.png"> + <link rel="icon" sizes="32x32" type="image/png" href="favicon-32x32.png"> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <h1 class="center">azahi</h1> + <p class="center"> + Azat Bahawi <i>(Азат Багавиев)</i> + </p> + <p class="center"> + DevOps-engineer. Formerly a C/C++ SWE. + </p> + <p class="center"> + <a href="https://github.com/azahi">GitHub</a> + | + <a href="https://gitlab.com/azahi">GitLab</a> + </p> + <p> + <dl> + <dt>Email:</dt> + <dd><strong>azat [at] bahawi [dot] net</strong> (<a href="pgp.asc">PGP</a>) + <dd><code>2688 0377 C31D 9E81 9BDF 83A8 C8C6 BDDB 3847 F72B</code></ddd> + <dt>IRC:</dt> + <dd><strong>azahi</strong> @ <a href="https://libera.chat">Libera</a></dd> + <dd><strong>azahi</strong> @ <a href="https://oftc.net">OFTC</a></dd> + <dd><strong>azahi</strong> @ <a href="https://rizon.net">Rizon</a></dd> + <dt>Matrix:</dt> + <dd><strong>@azahi:azahi.cc</strong></dd> + </dl> + </p> + </body> </html> diff --git a/style.css b/style.css index 1e90bf5..9d08044 100644 --- a/style.css +++ b/style.css @@ -28,18 +28,15 @@ body { color: var(--foreground); font-family: monospace; font-size: 1.3em; - margin-top: 10em; + display: table; margin-left: auto; margin-right: auto; - display: table; + margin-top: 10em; + padding: 3em; } a { - color: var(--blue) -} - -a:visited { - color: var(--magenta) + color: var(--red) } dt { |