feat: initial commit

This commit is contained in:
Vitor Gonçalves 2023-06-13 19:35:08 -03:00
commit d78964c795
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
4 changed files with 63 additions and 0 deletions

1
README Normal file
View File

@ -0,0 +1 @@
this (should) be a cool website

BIN
bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 KiB

32
index.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>~vitorg - funi</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header class="block" class="text">
<h1>~vitorg</h1>
<nav>
<a href="/about">about me</a>
<a href="/blog">blog</a>
<a href="/tinylog">tinylog</a>
</nav>
</header>
<article class="block">
<div class="text">
<p>contact info:</p>
<ul>
<li>main email inbox: <a href="mailto:vitorg@vern.cc">vitorg@vern.cc</a></li>
</ul>
</div>
</article>
<footer class=block class="text">
<p>made by <a href="/">~vitorg</a> with love.<br>
check out <a href="https://vern.cc">~vern</a>!</p>
</footer>
</body>
</html>

30
style.css Normal file
View File

@ -0,0 +1,30 @@
:root {
--default-background: #eeccff;
}
html {
display: inline;
background-image: url("bg.jpg");
background-position: center top;
background-attachment: scroll;
background-size: cover;
}
body {
font-family: Inconsolata, monospace;
}
.block {
background-color: var(--default-background);
text-align: center;
padding: 0.8em;
margin: 1em 20% 1em 20%;
border-style: solid;
}
.text {
text-align: left;
padding: 0px 20% 0px 20%;
}