Skip to content

Commit

Permalink
chore(release): 1.12.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.12.0](v1.11.0...v1.12.0) (2021-07-21)

### Features

* use source sans instead of noto for default fonts ([46463c8](46463c8))
  • Loading branch information
semantic-release-bot committed Jul 21, 2021
1 parent 46463c8 commit a26b86a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.12.0](https://github.com/pengx17/logseq-dev-theme/compare/v1.11.0...v1.12.0) (2021-07-21)


### Features

* use source sans instead of noto for default fonts ([46463c8](https://github.com/pengx17/logseq-dev-theme/commit/46463c8348bb561c7662fa2609565e73bfde30a3))

# [1.11.0](https://github.com/pengx17/logseq-dev-theme/compare/v1.10.12...v1.11.0) (2021-07-21)


Expand Down
29 changes: 17 additions & 12 deletions custom.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Noto+Sans+SC:wght@400;500;700;900&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fira+Code");
@import url("https://cdn.jsdelivr.net/gh/adobe-fonts/source-sans@3.046R/source-sans-3VF.css");
@font-face {
font-family: "Source Han Sans VF";
font-weight: 200 900;
font-style: normal;
font-stretch: normal;
src: url("https://cdn.jsdelivr.net/gh/adobe-fonts/source-han-sans@2.003R/Variable/Subset/SourceHanSansCN-VF.otf");
}
:root {
--ct-text-size: 15px;
--ct-text-size: 16px;
--ct-line-height: 1.5;
--ls-font-family: "Noto Sans", "Noto Sans SC", ui-sans-serif, system-ui,
-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";
--ct-page-title-font-family: "Noto Sans SC", ui-sans-serif, system-ui,
-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";
--ls-font-family: "Source Sans 3 VF", "Source Han Sans VF", ui-sans-serif,
system-ui, -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";
--ct-page-title-font-family: var(--ls-font-family);
--ct-code-font-family: "Fira Code", ui-monospace, SFMono-Regular, Menlo,
Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
Expand Down Expand Up @@ -515,7 +520,7 @@ div.items-center::after,
content: "";
top: 1em;
bottom: 0;
left: -16px;
left: -17px;
position: absolute;
border-left: 2px solid transparent;
}
Expand Down Expand Up @@ -596,7 +601,6 @@ div.items-center::after,

/* lists */
ol > li::marker {
font-family: Asap;
font-weight: 600;
font-variant-numeric: tabular-nums;
}
Expand All @@ -617,6 +621,7 @@ ol > li::marker {
b,
strong {
color: var(--ct-bold-color);
font-weight: 600;
}

/* External links */
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logseq-dev-theme",
"author": "pengx17",
"version": "1.11.0",
"version": "1.12.0",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit a26b86a

Please sign in to comment.