about summary refs log tree commit diff homepage
path: root/static
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2022-06-01 17:04:24 +0900
committerNguyễn Gia Phong <mcsinyx@disroot.org>2022-06-01 17:04:24 +0900
commitdd5e634482c2747d4514b784ec8dded9c7fa29cf (patch)
treea27d32f65cf2f9864496548a72862c34d425a60f /static
parentf23c6ed4f84055551b459d235c4a675faf017cea (diff)
downloadphylactery-dd5e634482c2747d4514b784ec8dded9c7fa29cf.tar.gz
Finish basic functionality
Diffstat (limited to 'static')
-rw-r--r--static/archive.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/static/archive.css b/static/archive.css
new file mode 100644
index 0000000..7bd1c47
--- /dev/null
+++ b/static/archive.css
@@ -0,0 +1,24 @@
+body { margin: 0 }
+
+nav {
+    display: flex;
+    justify-content: space-around;
+    position: sticky;
+    top: 0;
+}
+nav > a {
+    color: white;
+    flex: 1;
+    text-align: center;
+    text-decoration: none;
+}
+nav > a:hover { font-weight: bold }
+#prev { background-color: #a40000 }
+#up { background-color: #4e9a06 }
+#next { background-color: #204a87 }
+
+img {
+    display: block;
+    margin: auto;
+    max-width: 100%;
+}