diff options
Diffstat (limited to 'src/templates')
| -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; } |
