start work on new site
static for now Signed-off-by: Nyx Tutt <me@everypizza.im>
This commit is contained in:
parent
be25d2776b
commit
851b381ef4
2 changed files with 69 additions and 0 deletions
14
site/assets/index.css
Normal file
14
site/assets/index.css
Normal file
|
@ -0,0 +1,14 @@
|
|||
@media (prefers-color-scheme: dark) {
|
||||
* {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: system-ui;
|
||||
}
|
55
site/index.html
Normal file
55
site/index.html
Normal file
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<title>
|
||||
Nyx's personal site
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="assets/index.css" rel="stylesheet" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>
|
||||
Nyx Tutt
|
||||
</h1>
|
||||
<h2>
|
||||
about it
|
||||
</h2>
|
||||
<p>
|
||||
it is a cat-robot-girl-thing. it likes to speak about itself in the third person.
|
||||
it likes linux and uses nixos.
|
||||
</p>
|
||||
<h2>
|
||||
contact
|
||||
</h2>
|
||||
<p>
|
||||
this one has a few forms of contact:<br>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="xmpp:nyx@everypizza.im">xmpp</a><br>
|
||||
</li>
|
||||
<li>
|
||||
<a href="matrix:u/n:everypizza.im">matrix</a><br>
|
||||
</li>
|
||||
<li>
|
||||
<a href="mailto:me@everypizza.im">email</a> (it has a pgp key in one of the key servers.)<br>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://sharkey.everypizza.im">fedi</a><br>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
<h2>
|
||||
links
|
||||
</h2>
|
||||
<p>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://listenbrainz.com/user/everypizza">listenbrainz</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://everypizza.im/">everypizza.im</a>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
</body>
|
Loading…
Add table
Reference in a new issue