From d1f5f606691edaa340ebcef4bb022285fe87b443 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Thu, 12 Nov 2020 19:20:12 -0500 Subject: Added nord theme --- config.toml | 4 ++-- content/other/The-Internets-Own-Boy.md | 5 ++--- static/css/custom-dark.css | 9 +++++++++ static/css/custom.css | 9 +++++++++ 4 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 static/css/custom-dark.css create mode 100644 static/css/custom.css diff --git a/config.toml b/config.toml index a7b7331..7665217 100644 --- a/config.toml +++ b/config.toml @@ -17,8 +17,8 @@ pygmentscodefencesguesssyntax = true featherIconsCDN = true mode = "auto" - # customCSS = "css/custom.css" # Custom CSS applied to default styles. - # customDarkCSS = "css/custom-dark.css" # Custom styles applied to dark mode css. + customCSS = "css/custom.css" # Custom CSS applied to default styles. + customDarkCSS = "css/custom-dark.css" # Custom styles applied to dark mode css. # customJS = ["js/custom.js", "js/custom1.js"] # Custom JS scripts. # Nav. diff --git a/content/other/The-Internets-Own-Boy.md b/content/other/The-Internets-Own-Boy.md index 444eb11..62c886e 100644 --- a/content/other/The-Internets-Own-Boy.md +++ b/content/other/The-Internets-Own-Boy.md @@ -2,9 +2,8 @@ title: "The Internets Own Boy" date: 2020-11-12T16:03:33-05:00 draft: false -tags: [documentary, aaron-swartz] +tags: [documentary, aaron swartz] description: "The Internet's Own Boy depicts the life of American computer programmer, writer, political organizer and Internet activist Aaron Swartz." --- - - + diff --git a/static/css/custom-dark.css b/static/css/custom-dark.css new file mode 100644 index 0000000..e9edd8a --- /dev/null +++ b/static/css/custom-dark.css @@ -0,0 +1,9 @@ + +html.dark a, +html.dark .posts .tags a { + color: #88c0d0; +} + +html.dark, html.dark body { + background-color: #2e3440; +} diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..2ce4768 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,9 @@ +/* test */ + +a { + color: #4c566a; +} + +html { + background-color: #e5e9f0 ; +} -- cgit