Compare commits
No commits in common. "ce6dbc933870dc2fa1d83cbf446fe61e07fb4d32" and "ec15db950ea472769ae8d37899b0bd4b6c094196" have entirely different histories.
ce6dbc9338
...
ec15db950e
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 310 KiB |
Before Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 863 B |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 11 KiB |
@ -1,45 +1,15 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<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>Jab Hub</title>
|
<title>jabuxas main page</title>
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png" />
|
<link href="css/style.css" rel="stylesheet">
|
||||||
<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>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<h1>hello world</h1>
|
||||||
<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>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -1 +0,0 @@
|
|||||||
{"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,74 +0,0 @@
|
|||||||
@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;
|
|
||||||
}
|
|