Add custom CSS

This commit is contained in:
Dave Gallant
2021-09-16 15:43:58 -04:00
parent 21e145a44f
commit fd2cdbba0b
3 changed files with 13 additions and 10 deletions

View File

@@ -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: ''

View File

@@ -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";
};

3
static/css/custom.css Normal file
View File

@@ -0,0 +1,3 @@
.container{
max-width: 900px
}