diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-05-27 10:24:52 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-05-27 10:24:52 -0400 |
| commit | f136bc6cb5c37e55e73ff5f70618a9f950461bc4 (patch) | |
| tree | 963296fd70069fb65669e869fc91e7bfc71ea4b4 /src/templates | |
| parent | f175552dcd86cda7a7fcafc1db211084fabd65a0 (diff) | |
font!
Diffstat (limited to '')
| -rw-r--r-- | src/templates/base.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/templates/base.html b/src/templates/base.html index 9f72526..d089b5b 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -1,6 +1,8 @@ <!DOCTYPE html> <html lang="en"> <head> + <meta charset="utf-8" /> + <meta name="viewport" content="initial-scale=1,width=device-width" /> <title>{{title}} - the evil transgenders club</title> <style> :root { @@ -8,10 +10,15 @@ --trans-pink: #f5a9b8; } + @font-face { + font-family: 'FiraCode Nerd Font Mono'; + src: url("/FiraCodeNerdFontMono-Regular.ttf"); + } + body { background: black; color: white; - font-family: monospace; + font-family: 'FiraCode Nerd Font Mono', monospace; margin-left: 15%; margin-right: 15%; } @@ -32,7 +39,7 @@ } a[rel="external"]:after { - content: " (ext)"; + content: " "; } main { @@ -61,6 +68,7 @@ } footer { + border-top: 2px solid #333; text-align: center; } |
