-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
42 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{% extends "even/templates/index.html" %} | ||
|
||
{% block css %} | ||
{% include "style.html" %} | ||
{% endblock css %} | ||
|
||
{% block extra_head %} | ||
<meta name='description' content="pg999w's blog"> | ||
{% endblock extra_head %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<link rel="stylesheet" href="{{ get_url(path="site.css", trailing_slash=false) }}"> | ||
<link rel="stylesheet" href="{{ get_url(path="custom.css", trailing_slash=false) }}"> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:[email protected]&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&family=Noto+Serif+SC:wght@400;700&display=swap" rel="stylesheet"> | ||
|