Block indentation using CSS classes

If you want more semantics in your content, use CSS classes instead of fixed indentation units. You can then adjust the levels in the styles sheets of your application whenever you want. 

This heading has the .custom-block-indent-a class

And this paragraph shares the same class, and that puts it at the same level.

But this one has the .custom-block-indent-b class

Using classes instead of fixed units (px or em) has another advantage. You retain control over what indentation levels are used in the documents. For instance, you can limit indentation to 2 or 3 different levels and there is no way users can go beyond that (.custom-block-indent-e class level). That should help you keep your content clean and predictable.