Is there some documentation of the full list of options available in the mermaid statements documents here: https://mermaid.js.org/syntax/flowchart.html#styling-a-node and https://mermaid.js.org/syntax/flowchart.html#styling-and-classes ?
The example given in the mermaid documntation:
flowchart LR
id1(Start)-->id2(Stop)
style id1 fill:#f9f,stroke:#333,stroke-width:4px
style id2 fill:#bbf,stroke:#f66,stroke-width:2px,color:#fff,stroke-dasharray: 5 5
shows fill, stroke, stroke-width etc, but it does not accept font-size, nor other css styles I have tried.
Is there a list somewhere with a complete list of what can follow style {nodeId}
?