commit 601afe0a89f43c03a04b83a0bed1d0034fb9faca parent d83316ce0a029b50db16dfae4e90f725cf736672 Author: ugrnm <ultrageranium@bleu255.com> Date: Wed, 8 Jun 2022 12:07:20 +0200 distinct style for bottom menu now working Diffstat:
| M | local.css | | | 10 | ++++++++++ |
| M | templates/page.tmpl | | | 2 | +- |
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/local.css b/local.css @@ -5,3 +5,13 @@ code { a { text-decoration: none; } + +.bottom_menu { + display: block; + margin-top: 1em; +} + +.last_edit { + font-style: italic; +} + diff --git a/templates/page.tmpl b/templates/page.tmpl @@ -192,7 +192,7 @@ Links: </TMPL_IF> <div class="bottom_menu"> -<a href="/about/">About</a> | <a href="/contact/">Contact</a> |<a href="/license/">LICENSE</a> | <span class="pagedate">Last edit <TMPL_VAR MTIME></span> +<a href="/about/">About</a> | <a href="/contact/">Contact</a> | <a href="/license/">LICENSE</a> | <span class="last_edit">Last edit <TMPL_VAR MTIME></span> <!-- Created <TMPL_VAR CTIME> --> </div>