From d52f97d636ee69a0e45676a60f1f7dcaebd3b156 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 21 Apr 2024 23:30:22 +0000 Subject: [PATCH] Add website to repo --- index.html | 76 ++++++++++++++++++++++++++++++++++++++++++++++++ static/gitea.svg | 31 ++++++++++++++++++++ style.css | 48 ++++++++++++++++++++++++++++++ 3 files changed, 155 insertions(+) create mode 100644 index.html create mode 100644 static/gitea.svg create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..e33173f --- /dev/null +++ b/index.html @@ -0,0 +1,76 @@ + + + + + Kovachev.xyz Main Page + + + + +
+ +
+

Main Page

+
+ +
+

Welcome to the main page of my website.

+

Here you will find a variety of hobbies, projects, and resources + relating to those areas.

+ + + + +

Biography

+

I'm a student of computer science currently in his first year. My interests are especially compilers, operating systems, and servers, at least as far as concerns computing; my interests outside of computers include + languages, exercise, and reading.

+

Also, if you'd like, you can take a look at my CV.

+ +

Git

+
+ + Gitea logo + +
+ +

You can access my Git repositories (personal projects etc.) at git.kovachev.xyz.

+

If you'd like to make an account and use the platform, please contact me! I can create an account for you (but for security I've disabled registration in general).

+ +

Library

+

Click here to access the + calibre library. You can log in using the credentials:

+ Username: public
+ Password: public +
+ +

Email

+

I'm hosting an email server and a web-facing client as well, if you'd like to access your emails through a free interface.

+

If you'd like to avail yourself, please see mail.kovachev.xyz! (Note: not currently set up.)

+ + + diff --git a/static/gitea.svg b/static/gitea.svg new file mode 100644 index 0000000..9df6b83 --- /dev/null +++ b/static/gitea.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..2266ad8 --- /dev/null +++ b/style.css @@ -0,0 +1,48 @@ +body { + color: beige; + background: #111; + margin-bottom: 200px; + font-family: sans-serif; +} + +main { + max-width: 55%; + margin: auto; +} + +h1 { + text-align: center; + color: lightgreen; +} + +h2 { + text-align: center; + color: deeppink; + font-size: 24pt; + border-bottom: dashed #ddd 1px; + max-width: 500px; + margin: 1em auto; +} + +ul.links { + list-style: none; +} + +#link_menu li { + display: inline; +} + +div.center { + align-items: center; + align-content: center; + align-self: center; + text-align: center; +} + +.invert { + filter: invert(1.0); +} + +a { + text-decoration: none; +}