diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-02-15 01:17:12 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-02-15 01:17:12 +0300 |
commit | a46fa2436e54768f8c70fe2ee9c46730607ed6df (patch) | |
tree | 80a1e24b4f3fc55c9afab7c2b8665ebb2887b0e6 /style.css | |
parent | feat: new IRC network and small changes (diff) |
feat: rework
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 20 |
1 files changed, 13 insertions, 7 deletions
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; } |