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>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<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" />
|
<link href="style.css" rel="stylesheet" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
@ -12,17 +16,28 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="top-level">
|
<div class="top-level">
|
||||||
<div>
|
<div>
|
||||||
<img src="./icon.jpg" alt="jabuxas' icon" />
|
<img src="./images/icon.jpg" alt="jabuxas' icon" />
|
||||||
<h2>jabuxas</h2>
|
<h2>jabuxas</h2>
|
||||||
</div>
|
</div>
|
||||||
<h2>====================</h2>
|
<h2>====================</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom-level">
|
<div class="bottom-level">
|
||||||
<div>email</div>
|
<div class="link-item">
|
||||||
<div>github</div>
|
<span class="mail-icon icon"></span>
|
||||||
<div>selfhosted gitea instance</div>
|
<a href="mailto:jabuxas@proton.me">jabuxas@proton.me</a>
|
||||||
<div>paste</div>
|
</div>
|
||||||
<div>linkedin</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>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</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-face {
|
||||||
font-family: Lilex;
|
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 {
|
body {
|
||||||
@ -10,6 +15,9 @@ body {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
|
background-color: #1e1e1e;
|
||||||
|
color: #d4d4d4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
@ -28,3 +36,39 @@ img {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 2em;
|
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;
|
||||||
|
}
|
||||||
|