Merge staging #22

Manually merged
thhsh merged 57 commits from staging into main 2025-07-22 01:38:08 +00:00
Showing only changes of commit e205eedc2e - Show all commits

View file

@ -12,3 +12,15 @@ To hide the title on a page (like on the [:octicons-arrow-right-16: Home page](.
}
</style>
```
## Images
### Logo Size
When embedding a site logo in a page (like on the [:octicons-arrow-right-16: Home page](../../support/index.md)), the sweet spot seems to be `300px` for the image width so that it doesn't look "off".
### Different images for dark/light mode
You can use `#only-dark` to only show an image in dark mode, and `#only-light` to only show an image in light mode. For example:
``` md linenums="1"
![StarCat Systems Logo-dark](https://cdn.starcat.systems/logos/Starcat_Systems-Head_Circle_Name-212121_Black-300x150px.svg#only-light)
![StarCat Systems Logo-light](https://cdn.starcat.systems/logos/Starcat_Systems-Head_Circle_Name-FFFFFF_White-300x150px.svg#only-dark)
```