Compare commits
2 Commits
ec15db950e
...
ce6dbc9338
Author | SHA1 | Date | |
---|---|---|---|
ce6dbc9338 | |||
78e65a30e1 |
BIN
dev/fonts/JetBrains-Mono-Nerd-Font-Complete.ttf
Normal file
BIN
dev/fonts/Lilex-Bold.ttf
Normal file
BIN
dev/fonts/Lilex-ExtraLight.ttf
Normal file
BIN
dev/fonts/Lilex-Medium.ttf
Normal file
BIN
dev/fonts/Lilex-Regular.ttf
Normal file
BIN
dev/fonts/Lilex-Thin.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 |
BIN
dev/images/icon.jpg
Normal file
After Width: | Height: | Size: 11 KiB |
@ -1,15 +1,45 @@
|
|||||||
<!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>jabuxas main page</title>
|
<title>Jab Hub</title>
|
||||||
<link href="css/style.css" rel="stylesheet">
|
<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>
|
</head>
|
||||||
|
|
||||||
<body>
|
<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>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
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"}
|
74
dev/style.css
Normal 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;
|
||||||
|
}
|