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 | |
| parent | f175552dcd86cda7a7fcafc1db211084fabd65a0 (diff) | |
font!
| -rw-r--r-- | README.md | 9 | ||||
| -rw-r--r-- | src/pages/FiraCodeNerdFontMono-Regular.ttf | bin | 0 -> 2647492 bytes | |||
| -rw-r--r-- | src/pages/index.html | 7 | ||||
| -rw-r--r-- | src/templates/base.html | 12 |
4 files changed, 23 insertions, 5 deletions
@@ -1,3 +1,10 @@ # www.eviltransgenders.club -Source code for the [Evil Transgenders Club](https://www.eviltransgenders.club) website. +Source code for the [Evil Transgenders Club](https://www.eviltransgenders.club) +website. + +## Attribution + +This website makes use of the [Fira Code](https://github.com/tonsky/FiraCode) +[Nerd Font](https://nerdfonts.com), which is licensed under version 1.1 of the +[Open Font License](https://raw.githubusercontent.com/tonsky/FiraCode/refs/heads/master/LICENSE). diff --git a/src/pages/FiraCodeNerdFontMono-Regular.ttf b/src/pages/FiraCodeNerdFontMono-Regular.ttf Binary files differnew file mode 100644 index 0000000..328e61d --- /dev/null +++ b/src/pages/FiraCodeNerdFontMono-Regular.ttf diff --git a/src/pages/index.html b/src/pages/index.html index fd24512..e03d20e 100644 --- a/src/pages/index.html +++ b/src/pages/index.html @@ -9,8 +9,11 @@ home <h2>So, what is this?</h2> <p> The Evil Transgenders Club is intended to be a silly little internet - community for queer people and allies, primarily those interested in tech - - though all are welcome. + community primarily for queer people and allies, though anyone who is cool + is welcome! :) + </p> + + <p> </p> </section> </main> 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; } |
