CSS documentation

Is there a documentation for customizing through custom.css?
I am trying to change the IMPORTANT block font size, but it would be nice to have reference to other customizations.

There is no documentation for such things. Should:

  • explore the DOM with Ctrl + Shift + i
  • ask here if you get stuck

Did not find how change the BEGIN_IMPORTANT (and others, caution, …) font size.
please, can you help?

Have a look at Can I change the background color for the “quote”, ”note”, “important” etc blocks? Instead of background-color, use e.g.:

.admonitionblock.important .text-lg {
  font-size: 32px;
}
4 Likes