From 02852e3b4a6f90916494dfbdc24225a85473cec5 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Tue, 12 Sep 2023 20:45:22 +0200 Subject: [PATCH] add styling for last changed Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- book.toml | 1 + styles/last-changed.css | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 styles/last-changed.css diff --git a/book.toml b/book.toml index 4e67dc4..756c90b 100644 --- a/book.toml +++ b/book.toml @@ -18,6 +18,7 @@ git-repository-url = "https://github.com/rustic-rs/dev-docs" git-repository-icon = "fa-github" edit-url-template = "https://github.com/rustic-rs/dev-docs/edit/main/{path}" cname = "rustic.cli.rs" +additional-css = ["./styles/last-changed.css"] [output.html.fold] enable = true diff --git a/styles/last-changed.css b/styles/last-changed.css new file mode 100644 index 0000000..21de821 --- /dev/null +++ b/styles/last-changed.css @@ -0,0 +1,7 @@ +footer { + font-size: 0.8em; + text-align: center; + border-top: 1px solid grey; + padding: 1.25em 0; + margin-top: 1.25em; +}