aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-05-27 10:24:52 -0400
committerRosa <rosaontheweb@proton.me>2026-05-27 10:24:52 -0400
commitf136bc6cb5c37e55e73ff5f70618a9f950461bc4 (patch)
tree963296fd70069fb65669e869fc91e7bfc71ea4b4 /src
parentf175552dcd86cda7a7fcafc1db211084fabd65a0 (diff)
font!
Diffstat (limited to '')
-rw-r--r--src/pages/FiraCodeNerdFontMono-Regular.ttfbin0 -> 2647492 bytes
-rw-r--r--src/pages/index.html7
-rw-r--r--src/templates/base.html12
3 files changed, 15 insertions, 4 deletions
diff --git a/src/pages/FiraCodeNerdFontMono-Regular.ttf b/src/pages/FiraCodeNerdFontMono-Regular.ttf
new file mode 100644
index 0000000..328e61d
--- /dev/null
+++ b/src/pages/FiraCodeNerdFontMono-Regular.ttf
Binary files differ
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;
}