aboutsummaryrefslogtreecommitdiff
path: root/src/templates
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/base.html36
1 files changed, 25 insertions, 11 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
index 0da5dd2..4f6b0ef 100644
--- a/src/templates/base.html
+++ b/src/templates/base.html
@@ -14,30 +14,41 @@
font-family: monospace;
}
- h1 {
+ header h1 {
color: var(--trans-blue);
text-align: center;
}
- .trans-shadow {
- text-shadow: 1px 1px var(--trans-pink), 2px 2px white, 3px 3px var(--trans-pink), 4px 4px var(--trans-blue);
+
+ a {
+ color: #fff;
}
- .subtitle {
- text-align: center;
+ a:hover {
+ background-color: #fff;
+ color: #000;
+ }
+
+ a[rel="external"]:after {
+ content: " (ext)";
}
- .main-navigation {
+ main {
+ border: 2px solid #fff;
+ margin-left: 15%;
+ margin-right: 15%;
+ }
+
+ #main-navigation {
text-align: center;
}
- a {
- color: #fff;
+ .trans-shadow {
+ text-shadow: 1px 1px var(--trans-pink), 2px 2px white, 3px 3px var(--trans-pink), 4px 4px var(--trans-blue);
}
- a:hover {
- background-color: #fff;
- color: #000;
+ .subtitle {
+ text-align: center;
}
</style>
</head>
@@ -45,6 +56,9 @@
<body>
<header>
<h1 class="trans-shadow">the evil transgenders club</h1>
+ <nav id="main-navigation">
+ <a href="/">home</a>
+ </nav>
</header>
{{body}}
</body>