diff options
| author | Adam Olech <nddr89@gmail.com> | 2021-10-17 22:57:45 +0200 |
|---|---|---|
| committer | Adam Olech <nddr89@gmail.com> | 2021-10-17 22:57:45 +0200 |
| commit | 5bff81ccd9851e34f3488a8e7d9f0fb934084d02 (patch) | |
| tree | dedd40b2865b28cf98387d4062c96159c8e37e87 | |
| parent | 7b27ab4c127e7b20abc66340dc69d4885824225d (diff) | |
Add custom CSS
| -rw-r--r-- | config.toml | 4 | ||||
| -rw-r--r-- | static/css/custom.css | 3 |
2 files changed, 4 insertions, 3 deletions
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); +} |
