Compare commits

...

2 Commits

Author SHA1 Message Date
ce6dbc9338 looks good 2024-09-17 00:34:11 -03:00
78e65a30e1 feat: add pic and basic skeleton 2024-09-16 23:55:27 -03:00
16 changed files with 111 additions and 6 deletions

Binary file not shown.

BIN
dev/fonts/Lilex-Bold.ttf Normal file

Binary file not shown.

Binary file not shown.

BIN
dev/fonts/Lilex-Medium.ttf Normal file

Binary file not shown.

BIN
dev/fonts/Lilex-Regular.ttf Normal file

Binary file not shown.

BIN
dev/fonts/Lilex-Thin.ttf Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
dev/images/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
dev/images/icon.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,15 +1,45 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jabuxas main page</title>
<link href="css/style.css" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Jab Hub</title>
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png" />
<link rel="manifest" href="./site.webmanifest" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1>hello world</h1>
<div class="container">
<div class="top-level">
<div>
<img src="./images/icon.jpg" alt="jabuxas' icon" />
<h2>jabuxas</h2>
</div>
<h2>====================</h2>
</div>
<div class="bottom-level">
<div class="link-item">
<span class="mail-icon icon"></span>
<a href="mailto:jabuxas@proton.me">jabuxas@proton.me</a>
</div>
<div class="link-item">
<span class="github-icon icon"></span>
<a href="https://github.com/jabuxas">github</a>
</div>
<div class="link-item">
<span class="gitea-icon icon"></span>
<a href="https://git.jabuxas.xyz/jabuxas">selfhosted gitea instance</a>
</div>
<div class="link-item">
<span class="paste-icon icon"></span>
<a href="https://paste.jabuxas.xyz">paste</a>
</div>
</div>
</div>
</body>
</html>

1
dev/site.webmanifest Normal file
View File

@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

74
dev/style.css Normal file
View File

@ -0,0 +1,74 @@
@font-face {
font-family: Lilex;
src: url(./fonts/Lilex-Regular.ttf) format("truetype");
}
@font-face {
font-family: "JetBrainsMono Nerd Font";
src: url("./fonts/JetBrainsMono Nerd Font.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;
gap: 1em;
}
img {
width: 150px;
border-radius: 50px;
}
.top-level div {
display: flex;
align-items: center;
gap: 2em;
}
.link-item {
display: flex;
align-items: center;
gap: 10px;
}
.link-item a {
text-decoration: none;
color: #d4d4d4;
font-weight: bolder;
}
.icon {
font-family: "JetBrainsMono Nerd Font";
}
.github-icon:before {
content: "\f09b";
font-size: 3em;
}
.gitea-icon:before {
content: "\e702";
font-size: 3em;
}
.paste-icon:before {
content: "\f429";
font-size: 3em;
}
.mail-icon:before {
content: "\eb1c";
font-size: 3em;
}