Toddle is great, but as a (old-school) HTML/CSS developer I'm having trouble wrapping my head around the concept of CSS and styling. Examples of things I'm missing that might be solved in some other way are:
- A global stylesheet. I'm aware of the "Themes" part, but that feels somewhat restricted. How do I set a global line-height for every page, for instance? Or where do I define the global size of an H2, the border radius of all input fields, etc. Or if I just want a utility class (sr-only, for example)?
- How do I set styles to the <html> and <body> tags. I'm seeing the <div in the preview, but is this <div> the top level I can style?
- In the CSS editor of an element (specifically the top level div) I've tried adding more global styles, but I'm not able to add new rules with selectors. For instance every <p> should have a common bottom padding, adding p { padding-bottom: 5vh; } strips everything around the declaration.