Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/g1eny0ung/hugo-theme-dream.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYue Yang <g1enyy0ung@gmail.com>2021-06-26 18:15:57 +0300
committerYue Yang <g1enyy0ung@gmail.com>2021-06-26 18:15:57 +0300
commit9fb0b1f11c0a7859890691c8b030226eee1573c5 (patch)
treeedcd6aa81c46f2bd9011b1a36ae5ef6dbcb46781
parentb9a69a93af37c0924689bdcee36a52ad4aebd055 (diff)
Update custom.md
-rw-r--r--docs/custom.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/custom.md b/docs/custom.md
index 4704380..f366908 100644
--- a/docs/custom.md
+++ b/docs/custom.md
@@ -22,6 +22,30 @@ all the custom classes start with the `dream-` prefix. So in most cases, you onl
Here are some examples:
+### Custom fonts
+
+> Note: Since semantic-ui is close to being unmaintained, it is difficult to customize the theme **through source code**.
+>
+> So, to be more convenient and fast, I suggest using the following example method to override the font.
+
+For global:
+
+```css
+@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
+
+body {
+ font-family: 'Roboto', sans-serif !important;
+}
+```
+
+For post content:
+
+```css
+.markdown-body .main {
+ font-family: 'Roboto', sans-serif !important;
+}
+```
+
### Dim background in dark mode
This CSS snippet is useful when you want the `backgroundImage` and `backgroundImageDark` params to be the same and adapt to dark mode.