home: add a last updated timestamp to terms & privacy

This commit is contained in:
2026-07-24 10:10:59 +01:00
parent 81486654de
commit 33eb9d7748
3 changed files with 20 additions and 4 deletions
+2 -2
View File
@@ -14,11 +14,11 @@
<img src="assets/logo.avif" class="logo" /> <img src="assets/logo.avif" class="logo" />
<div class="flex flex-col gap-8 mt-4"> <div class="flex flex-col gap-8 mt-4">
<p class="font-light">hello, and welcome to atom.town. here, you will be at home.</p> <p class="font-light">hello, and welcome to atom.town. here, you will be at home.</p>
<div class="flex flex-col"> <div class="flex flex-col w-fit">
<a href="https://mail.atom.town" target="_blank" class="font-normal pop big">webmail</a> <a href="https://mail.atom.town" target="_blank" class="font-normal pop big">webmail</a>
<a href="https://git.atom.town" target="_blank" class="font-normal pop big">git</a> <a href="https://git.atom.town" target="_blank" class="font-normal pop big">git</a>
</div> </div>
<div class="flex flex-col"> <div class="flex flex-col w-fit">
<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> <a href="setup.html" class="font-normal pop big">setup</a>
</div> </div>
+14 -1
View File
@@ -31,7 +31,7 @@ ul {
/* tailwind lite */ /* tailwind lite */
:root { --space: 4px; } :root { --space: 4px; }
.flex { display: flex; width: fit-content; } .flex { display: flex; }
.flex-col { flex-direction: column; } .flex-col { flex-direction: column; }
.gap-2 { gap: calc(var(--space) * 2); } .gap-2 { gap: calc(var(--space) * 2); }
@@ -42,6 +42,12 @@ ul {
.self-start { align-self: flex-start; } .self-start { align-self: flex-start; }
.justify-between { justify-content: space-between; }
.w-fit { width: fit-content; }
.items-center { align-items: center; }
.font-light { font-weight: 300; } .font-light { font-weight: 300; }
.font-normal { font-weight: 400; } .font-normal { font-weight: 400; }
.font-heavy { font-weight: 500; } .font-heavy { font-weight: 500; }
@@ -54,6 +60,13 @@ ul {
} }
/* tailwind lite */ /* tailwind lite */
.small {
font-size: 16px;
@media (max-width: 1024px) {
font-size: 32px;
}
}
.big { .big {
font-size: 24px; font-size: 24px;
@media (max-width: 1024px) { @media (max-width: 1024px) {
+4 -1
View File
@@ -29,7 +29,10 @@
<li>atom.town does not share, nor ever will share any information it collects with any third parties, beyond what is absolutely necessary to run the service.</li> <li>atom.town does not share, nor ever will share any information it collects with any third parties, beyond what is absolutely necessary to run the service.</li>
</ul> </ul>
</div> </div>
<a href="/" class="self-start font-normal pop">← back</a> <div class="flex justify-between items-center">
<a href="/" class="self-start font-normal pop">← back</a>
<p class="font-light small">last updated 2026-07-23</p>
</div>
</div> </div>
</body> </body>
</html> </html>