From fd2cdbba0b047e1661c408eb7091711296b22085 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Thu, 16 Sep 2021 15:43:58 -0400 Subject: [PATCH] Add custom CSS --- config.yaml | 4 ++-- content/post/why-i-threw-out-my-dotfiles.md | 16 ++++++++-------- static/css/custom.css | 3 +++ 3 files changed, 13 insertions(+), 10 deletions(-) create mode 100644 static/css/custom.css diff --git a/config.yaml b/config.yaml index bad39751..a7ff3c0d 100644 --- a/config.yaml +++ b/config.yaml @@ -34,8 +34,8 @@ params: title404: This page no longer exists, or maybe it never did? Try https://archive.org? assets: favicon: favicon.ico - # customCSS: - # - css/custom.css + customCSS: + - css/custom.css # customJS: # - js/custom.js gopher: '' diff --git a/content/post/why-i-threw-out-my-dotfiles.md b/content/post/why-i-threw-out-my-dotfiles.md index 7344d23f..d4db86e2 100644 --- a/content/post/why-i-threw-out-my-dotfiles.md +++ b/content/post/why-i-threw-out-my-dotfiles.md @@ -102,14 +102,14 @@ Now, to start off with a basic configuration, open up `~/.config/nixpkgs/home.ni git = { enable = true; aliases = { - "aa" = "add -A ."; - "br" = "branch"; - "c" = "commit -S"; - "ca" = "commit -S --amend"; - "cb" = "checkout -b"; - "co" = "checkout"; - "d" = "diff"; - "l" = + aa = "add -A ."; + br = "branch"; + c = "commit -S"; + ca = "commit -S --amend"; + cb = "checkout -b"; + co = "checkout"; + d = "diff"; + l = "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"; }; diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 00000000..086eb712 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,3 @@ +.container{ + max-width: 900px +}