summaryrefslogtreecommitdiff
path: root/docs/user_guide/custom_css.md
diff options
context:
space:
mode:
authorLibravatar CDN <cardinal@codeword.info>2024-11-05 13:36:43 +0000
committerLibravatar GitHub <noreply@github.com>2024-11-05 14:36:43 +0100
commit38a08cd25aa89f55e2ae6d5e5a4160fada111680 (patch)
treecde4135a5e4c0faddb7ab1fa9a11ccd899db91f1 /docs/user_guide/custom_css.md
parent[bugfix] Fix setting immediate `expires_at` value on filter endpoints (#3513) (diff)
downloadgotosocial-38a08cd25aa89f55e2ae6d5e5a4160fada111680.tar.xz
[docs] add zh docs (#3507)
* [docs] add zh docs * [docs] add lang dropdown * [docs] update mkdocs zh config * [docs] migrate assets * [docs] update overrides dir in mkdocs zh config * [docs] exclude locales director in main mkdocs config * [docs] rename assets to public to avoid conflicting with template * [docs] extra_css change followup * [docs] add theme.palette.toggle.icon back into mkdocs zh config * [docs] fix zh readme reference + migrate language-specific repo markdown to docs * [docs] translate remaining repo docs + update reference * [docs] update zh index.md reference * [docs/zh] wording alignment
Diffstat (limited to 'docs/user_guide/custom_css.md')
-rw-r--r--docs/user_guide/custom_css.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/user_guide/custom_css.md b/docs/user_guide/custom_css.md
index 513074c62..679240bca 100644
--- a/docs/user_guide/custom_css.md
+++ b/docs/user_guide/custom_css.md
@@ -14,7 +14,7 @@ This allows you to customize the appearance of your GoToSocial profile for users
Here's a standard GoToSocial profile page:
-![A GoToSocial test profile page. The standard color scheme of grey, blue, and orange.](./../assets/cssstandard.png)
+![A GoToSocial test profile page. The standard color scheme of grey, blue, and orange.](./../public/cssstandard.png)
Let's say we want the background color to be black instead of grey.
@@ -30,7 +30,7 @@ We then click on Save Profile Info.
If we go back to our profile page and refresh the page, it now looks like this:
-![The same GoToSocial test profile page. The background is now black.](./../assets/cssblack.png)
+![The same GoToSocial test profile page. The background is now black.](./../public/cssblack.png)
If we want to get really fancy, we can add an ombre effect to the background, by using the following CSS code instead:
@@ -42,7 +42,7 @@ If we want to get really fancy, we can add an ombre effect to the background, by
After saving the css and refreshing the profile page, the profile now looks like this:
-![The same GoToSocial test profile page. The background now starts dark red and fades to purple further down the page.](./../assets/cssgradient.png)
+![The same GoToSocial test profile page. The background now starts dark red and fades to purple further down the page.](./../public/cssgradient.png)
## Accessibility