From cc995b14d79834c035b1ed4eb51eb385ad3d75f8 Mon Sep 17 00:00:00 2001
From: Karol Kania <999044+khanyooh@users.noreply.github.com>
Date: Tue, 08 Dec 2020 20:12:51 +0000
Subject: [PATCH] Some visual changes mostly related to fonts
---
exampleSite/config.toml | 4 ++--
exampleSite/assets/css/custom.css | 42 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+), 2 deletions(-)
diff --git a/exampleSite/assets/css/custom.css b/exampleSite/assets/css/custom.css
new file mode 100644
index 0000000..11e2490
--- /dev/null
+++ b/exampleSite/assets/css/custom.css
@@ -0,0 +1,42 @@
+
+/* THESE MODIFICATIONS MAY OVERWRITE DEFAULT STYLES */
+
+/*
+:root {
+ --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+}
+
+html {
+ font-family: sans-serif;
+}
+
+body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
+ line-height: 1.5;
+}
+
+a:link,
+a:visited {
+ opacity: 1;
+ color: var(--tag-color);
+}
+
+.post .post-content a {
+ letter-spacing: 0px;
+}
+
+.page-top .nav {
+ padding: 6px 30px;
+ font-size: 14px;
+}
+
+.tag,
+.category {
+ font-size: 14px;
+}
+
+p {
+ font-size: 14px;
+}
+*/
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index d1687a4..be0a4db 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -25,8 +25,8 @@
profilePicture = "images/profile.jpg"
keywords = ""
favicon = "favicons/"
-customCss = []
-customJs = []
+customCss = [] # ie ["css/custom.css"]
+customJs = [] # ie ["js/custom.js"]
mainSections = ["post"]
images = ["images/site-feature-image.png"]
doNotLoadAnimations = false
--
Gitblit v1.10.0