diff --git a/sass/custom.scss b/sass/custom.scss
index 72634fe..dcbafc1 100644
--- a/sass/custom.scss
+++ b/sass/custom.scss
@@ -1,9 +1,33 @@
-main .post .hashtag {
- color: gray;
- font-size: 70%;
- background: none;
+#header .logo {
+ font-family: "Noto Serif Display", serif;
+ font-weight: 400;
+ font-style: normal;
}
+main .post {
+ font-family: "Noto Serif SC", serif;
+ font-weight: 400;
+ font-style: normal;
-main .post pre code {
- color: unset;
+ .post-content h1 {
+ font-size: 24px;
+ }
+
+ h1, h2, h3, h4, h5, h6, h1.post__title {
+ font-family: "Noto Sans SC", sans-serif;
+ font-weight: 320;
+ font-style: normal;
+ }
+
+ .hashtag {
+ color: gray;
+ font-size: 70%;
+ background: none;
+ }
+
+ pre code {
+ color: unset;
+ }
}
+
+
+
diff --git a/templates/index.html b/templates/index.html
index e15b8be..3b7b5b4 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,5 +1,9 @@
{% extends "even/templates/index.html" %}
+{% block css %}
+ {% include "style.html" %}
+{% endblock css %}
+
{% block extra_head %}
{% endblock extra_head %}
diff --git a/templates/page.html b/templates/page.html
index 6788466..fee0e4c 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,8 +1,7 @@
{% extends "even/templates/page.html" %}
{% block css %}
-
-
+ {% include "style.html" %}
{% endblock css %}
{% block extra_head %}
diff --git a/templates/style.html b/templates/style.html
new file mode 100644
index 0000000..420ed0b
--- /dev/null
+++ b/templates/style.html
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+