From 5bff81ccd9851e34f3488a8e7d9f0fb934084d02 Mon Sep 17 00:00:00 2001 From: Adam Olech Date: Sun, 17 Oct 2021 22:57:45 +0200 Subject: Add custom CSS --- config.toml | 4 +--- static/css/custom.css | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 static/css/custom.css diff --git a/config.toml b/config.toml index 1fa66ec..e1768e9 100644 --- a/config.toml +++ b/config.toml @@ -5,7 +5,5 @@ title = 'where extinct potatos go to retire' [params] author = "Adam Olech" - -## Set one of: -# gravatar = "soho@example.com" profilePicture = "images/me.jpg" +customCss = ["css/custom.css"] diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..4fba6b6 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,3 @@ +.sidebar { + background-image: linear-gradient(to right top, #084035, #215a56, #3d7579, #5d919c, #80adbf); +} -- cgit v1.2.1