From dd5e634482c2747d4514b784ec8dded9c7fa29cf Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Wed, 1 Jun 2022 17:04:24 +0900 Subject: Finish basic functionality --- static/archive.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 static/archive.css (limited to 'static') 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%; +} -- cgit 1.4.1