obsidian

https://joshwin.imprint.to/post/how-i-use-obsidian-to-manage-my-goals-tasks-notes-and-software-development-knowledge-base

Obsdian CSS
https://forum.obsidian.md/t/common-selectors-for-custom-css/1984

code(s)

Media Query snippet (I intend to adapt this for smaller mobile fonts?)

@media screen and (max-width: 1024px) {
.crm tbody {
flex-direction: column;
align-items: center;
}

@media screen and (max-width: 768px) {
.crm tbody {
width: auto;
}

.crm td img {
width: 100px;
height: 100px;
}

.crm .image-embed > img {
margin: 5px;
}