diff --git a/docs/assets/customising_mkdocs.jpg b/docs/assets/customising_mkdocs.jpg new file mode 100644 index 0000000..b609e94 Binary files /dev/null and b/docs/assets/customising_mkdocs.jpg differ diff --git a/docs/bootcamp/imagemagick.md b/docs/bootcamp/imagemagick.md index 5ed91e0..7dc7f54 100644 --- a/docs/bootcamp/imagemagick.md +++ b/docs/bootcamp/imagemagick.md @@ -4,6 +4,12 @@ ```bash magick source.jpg -strip -interlace Plane -gaussian-blur 0.05 -quality 85% result.jpg ``` + +* Also resizes the image to 800 width +```bash +magick customising_mkdocs.jpg -strip -interlace Plane -gaussian-blur 0.05 -quality 85% -resize 800x customising_mkdocs.jpg +``` + * [command source](https://stackoverflow.com/questions/7261855/recommendation-for-compressing-jpg-files-with-imagemagick) * [image resizing](https://legacy.imagemagick.org/Usage/resize/) diff --git a/docs/week1_fabacademy/customising-mkdocs.md b/docs/week1_fabacademy/customising-mkdocs.md index 9fd2e71..3ff5fba 100644 --- a/docs/week1_fabacademy/customising-mkdocs.md +++ b/docs/week1_fabacademy/customising-mkdocs.md @@ -2,8 +2,7 @@ I wanna customise my mkdocs theme. So I can have a dark mode. Because it currently looks like this. -![alt text](image.png) - +![alt text](../assets/customising_mkdocs.jpg) ## Issues @@ -30,7 +29,7 @@ extra_css: [extra.css] ### Attempt 2 After I read the documentation thoroughly i found out that the css file needs to be relative to the `docs` folder and not the `mkdocs.yml`. After that it showed the css and I could finaly customise the theme. -![alt text](image-1.png) + ## Customising Material theme I decided to switch to material theme because its easier to configure and you can add all sorts of modules onto it making it super customisable.