Compare commits

...
4 Commits
Author SHA1 Message Date
futile e447f6d775 home: add setup page 2026-07-23 13:05:12 +01:00
futile 001f2cd741 fak 2026-07-23 12:53:51 +01:00
futile a8521ad139 home: move css files to style/ 2026-07-23 12:52:50 +01:00
futile 3a0ee27b6f home: use avif for clouds background 2026-07-23 12:50:36 +01:00
7 changed files with 33 additions and 5 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

+3 -2
View File
@@ -5,8 +5,8 @@
<title>atom.town</title> <title>atom.town</title>
<link rel="preconnect" href="https://rsms.me/"> <link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css"> <link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="reset.css"> <link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style/style.css">
<link rel="icon" type="image/png" href="assets/logo_icon.png" /> <link rel="icon" type="image/png" href="assets/logo_icon.png" />
</head> </head>
<body> <body>
@@ -19,6 +19,7 @@
</div> </div>
<div class="flex flex-col"> <div class="flex flex-col">
<a href="terms-privacy.html" class="font-normal pop big">terms & privacy</a> <a href="terms-privacy.html" class="font-normal pop big">terms & privacy</a>
<a href="setup.html" class="font-normal pop big">setup</a>
</div> </div>
</div> </div>
</body> </body>
+27
View File
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>atom.town</title>
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style/style.css">
<link rel="icon" type="image/png" href="assets/logo_icon.png" />
</head>
<body>
<img src="assets/logo.png" class="logo" />
<div class="flex flex-col gap-8 mt-4">
<p class="font-light">some notes for stuff you might need to know</p>
<div class="flex flex-col gap-2">
<h2 class="font-heavy big">email</h2>
<ul>
<li class="font-light">the mailserver lives at <b>post.atom.town</b></li>
<li class="font-light">incoming mail uses <b>imap</b> with <b>ssl/tls</b> on port <b>993</b></li>
<li class="font-light">outgoing mail uses <b>smtp</b> with <b>ssl/tls</b> on port <b>465</b></li>
</ul>
</div>
<a href="##" onclick="history.go(-1)" class="self-start font-normal pop">← back</a>
</div>
</body>
</html>
+1 -1
View File
@@ -7,7 +7,7 @@
} }
html { html {
background: url("assets/clouds.png"), linear-gradient(180deg, hwb(230 20% 0%) 0%, hwb(230 90% 0%) 110%); background: url("../assets/clouds.avif"), linear-gradient(180deg, hwb(230 20% 0%) 0%, hwb(230 90% 0%) 110%);
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover, cover; background-size: cover, cover;
} }
+2 -2
View File
@@ -5,8 +5,8 @@
<title>atom.town</title> <title>atom.town</title>
<link rel="preconnect" href="https://rsms.me/"> <link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css"> <link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="reset.css"> <link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style/style.css">
<link rel="icon" type="image/png" href="assets/logo_icon.png" /> <link rel="icon" type="image/png" href="assets/logo_icon.png" />
</head> </head>
<body> <body>