diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2025-12-15 12:40:05 +0100 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2025-12-15 12:40:05 +0100 |
| commit | 4586207504390a714c816b14371f3e4f5f7b7b77 (patch) | |
| tree | 15b083be47684dbb84d0f2e17d1668f750e62a77 | |
| parent | feat: replace pml68.png with a smaller webp (diff) | |
| download | pml68.dev-4586207504390a714c816b14371f3e4f5f7b7b77.tar.gz | |
feat: add PGP key to home page
| -rw-r--r-- | index.html | 3 | ||||
| -rw-r--r-- | style.css | 8 |
2 files changed, 11 insertions, 0 deletions
@@ -20,6 +20,9 @@ <div class="main"> <h1>pml68</h1> <p>Just your average IT student</p> + <a href="https://meta.sr.ht/~pml68.pgp" class="pgp" target="_blank"> + B57D24D24689941074DB550ADA2322CFD52418EE + </a> <div class="socials"> <a href="https://github.com/pml68" class="icon" target="_blank" aria-label="GitHub"> <svg class="social-icon" viewbox="0 0 512 512"> @@ -67,6 +67,13 @@ a.icon { width: clamp(var(--icon-min), var(--icon-desired), var(--icon-max)); } +.pgp { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + display: block; +} + .container { display: flex; height: 100dvh; @@ -81,6 +88,7 @@ a.icon { text-align: left; line-height: 1.2; margin: 20px; + max-width: min(28ch, calc(100vw - 40px)); } /* Projects page */ |
