website/dev/index.html

143 lines
3.8 KiB
HTML
Raw Normal View History

2024-09-16 23:55:27 -03:00
<!doctype html>
2024-09-16 19:57:02 -03:00
<html lang="en">
<head>
2024-09-16 23:55:27 -03:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2024-09-18 10:48:52 -03:00
<meta name="description" content="jabuxas' website" />
2024-09-17 00:44:55 -03:00
<title>jabuxas' hub</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
2024-09-16 23:55:27 -03:00
<link href="style.css" rel="stylesheet" />
<style>
@font-face {
font-family: Lilex;
src: url(./fonts/Lilex-Regular.ttf) format("truetype");
}
@font-face {
font-family: "JetBrainsMono Nerd Font";
src: url("./fonts/JetBrains-Mono-Nerd-Font-Complete.ttf") format("truetype");
}
body {
font-family: Lilex;
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #1e1e1e;
color: #d4d4d4;
}
.container {
display: flex;
flex-direction: column;
}
img {
width: 150px;
border-radius: 50px;
}
.top-level div {
display: flex;
align-items: center;
gap: 2em;
}
.link-item {
display: flex;
align-items: center;
2024-09-24 13:13:04 -03:00
gap: 15px;
}
.link-item a {
text-decoration: none;
color: #d4d4d4;
font-weight: bolder;
}
.icon {
font-family: "JetBrainsMono Nerd Font";
}
.mail-icon:before {
content: "\f42f";
font-size: 2em;
}
.github-icon:before {
content: "\f09b";
font-size: 2em;
}
.gitea-icon:before {
content: "\e702";
font-size: 2.8em;
}
.paste-icon:before {
content: "\f429";
font-size: 2em;
2024-09-24 13:13:04 -03:00
padding-left: 7px;
}
.blog-icon:before {
content: "\e287";
font-size: 2em;
padding-left: 4px;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
color: #777;
}
</style>
2024-09-16 19:57:02 -03:00
</head>
<body>
2024-09-16 23:55:27 -03:00
<div class="container">
<div class="top-level">
<div>
2024-09-17 00:34:11 -03:00
<img src="./images/icon.jpg" alt="jabuxas' icon" />
2024-09-16 23:55:27 -03:00
<h2>jabuxas</h2>
</div>
<h2>====================</h2>
</div>
<div class="bottom-level">
2024-09-17 00:34:11 -03:00
<div class="link-item">
<span class="mail-icon icon"></span>
<a href="mailto:jabuxas@proton.me">my contact email</a>
2024-09-17 00:34:11 -03:00
</div>
<div class="link-item">
<span class="github-icon icon"></span>
<a href="https://github.com/jabuxas" target="_blank">my github</a>
2024-09-17 00:34:11 -03:00
</div>
<div class="link-item">
<span class="gitea-icon icon"></span>
<a href="https://git.jabuxas.xyz/jabuxas" target="_blank">my gitea</a>
2024-09-17 00:34:11 -03:00
</div>
2024-09-24 13:13:04 -03:00
<div class="link-item">
<span class="blog-icon icon"></span>
<a href="https://blog.jabuxas.xyz" target="_blank">my blog</a>
</div>
2024-09-17 00:34:11 -03:00
<div class="link-item">
<span class="paste-icon icon"></span>
<a href="https://paste.jabuxas.xyz" target="_blank">my paste</a>
2024-09-17 00:34:11 -03:00
</div>
2024-09-16 23:55:27 -03:00
</div>
</div>
2024-09-18 10:48:52 -03:00
<footer>© 2024 jabuxas - all rights by yours truly</footer>
2024-09-16 19:57:02 -03:00
</body>
</html>