diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-04-12 17:20:49 +0200 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-04-12 17:20:49 +0200 |
commit | 6f106b16963664328c154abe52e6d6f8a87777bf (patch) | |
tree | 69e29f76dd64a50580284d2f23b08356b0443493 | |
parent | 15a288096132e6116c830fb90b1e747dc0c50bab (diff) |
responsive header + new links
-rw-r--r-- | index.html | 2 | ||||
-rw-r--r-- | style.css | 6 |
2 files changed, 8 insertions, 0 deletions
@@ -18,10 +18,12 @@ This is my personal website on which I host some cool things. Most of my projects are hosted on <a target="_blank" href="https://github.com/lonkaars">my GitHub</a>. I'm working on a blog, but for now these are the things hosted on here: </p> <ul> + <li>My personal <a target="_blank" href="https://blog.pipeframe.xyz">blog</a></li> <li>My <a target="_blank" href="https://bitwarden.pipeframe.xyz">bitwarden</a> instance</li> <li>My minecraft server <code>minecraft.pipeframe.xyz</code> (invite-only)</li> <li>My <a target="_blank" href="https://filestash.pipeframe.xyz">filestash</a> instance</li> <li>An <a target="_blank" href="https://etesync.pipeframe.xyz">etesync</a> server</li> + <li>My private <a target="_blank" href="https://git.pipeframe.xyz">git</a> server</li> </ul> <p> I'm also working on <a target="_blank" href="https://github.com/lonkaars/po-4-op-een-rij">a connect 4 website</a>. This was originally a simple school project, but I decided to go overboard and try to show off as much as I can. It's not finished yet, and has a lot of security issues, but I'm taking it on as my 'summer break project' so that's also going to be hosted on this domain when it's semi-safe to run publicly. @@ -43,6 +43,12 @@ h1 { font-weight: 700; } +@media screen and (max-width: 600px) { + h1 { + font-size: 12vw; + } +} + a { color: var(--flame); } code { |