diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-06-01 17:04:24 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-06-01 17:04:24 +0900 |
commit | dd5e634482c2747d4514b784ec8dded9c7fa29cf (patch) | |
tree | a27d32f65cf2f9864496548a72862c34d425a60f /static/archive.css | |
parent | f23c6ed4f84055551b459d235c4a675faf017cea (diff) | |
download | phylactery-dd5e634482c2747d4514b784ec8dded9c7fa29cf.tar.gz |
Finish basic functionality
Diffstat (limited to 'static/archive.css')
-rw-r--r-- | static/archive.css | 24 |
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%; +} |