Hi
What i want to accomplish: different style, manly background and title, per notebook.
New notes in that notebook get the same style.
Are Notebook names usable to change style (CSS) only from the notes in that notebook?
Example (simple):
Notebook name is"job", this name is in green and all notes have green background color.
CSS:
#job {
color: rgb(0, 255, 0);
}
#job > notes {
background-color: rgb(0, 255, 0);
}
I know "> notes" is not the right indicator but would something like that be possible or a feature?