looks good
BIN
dev/fonts/JetBrains-Mono-Nerd-Font-Complete.ttf
Normal file
BIN
dev/images/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
dev/images/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 310 KiB |
BIN
dev/images/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
dev/images/favicon-16x16.png
Normal file
After Width: | Height: | Size: 863 B |
BIN
dev/images/favicon-32x32.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
dev/images/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
@ -4,7 +4,11 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>jabuxas directions</title>
|
||||
<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>
|
||||
|
||||
@ -12,17 +16,28 @@
|
||||
<div class="container">
|
||||
<div class="top-level">
|
||||
<div>
|
||||
<img src="./icon.jpg" alt="jabuxas' icon" />
|
||||
<img src="./images/icon.jpg" alt="jabuxas' icon" />
|
||||
<h2>jabuxas</h2>
|
||||
</div>
|
||||
<h2>====================</h2>
|
||||
</div>
|
||||
<div class="bottom-level">
|
||||
<div>email</div>
|
||||
<div>github</div>
|
||||
<div>selfhosted gitea instance</div>
|
||||
<div>paste</div>
|
||||
<div>linkedin</div>
|
||||
<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>
|
||||
|
1
dev/site.webmanifest
Normal 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"}
|
@ -1,6 +1,11 @@
|
||||
@font-face {
|
||||
font-family: Lilex;
|
||||
src: url(./fonts/Lilex-Regular.ttf);
|
||||
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 {
|
||||
@ -10,6 +15,9 @@ body {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
background-color: #1e1e1e;
|
||||
color: #d4d4d4;
|
||||
}
|
||||
|
||||
.container {
|
||||
@ -28,3 +36,39 @@ img {
|
||||
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;
|
||||
}
|
||||
|