I want to change the font size of this line

I want the default size of this line of text to be larger without having to manually adjust it each time

I just found the solution through your reply and it adjusts by shrinking

:root {
–initial-font-size: 18px;
–shrinking-factor: 0.93em;
}

#document {
font-size: var(–initial-font-size) !important;
}

#document * {
font-size: 1em;
}

.tree-node-container {
font-size: var(–shrinking-factor) !important;
}

What about further levels? Do you want it to get smaller as it goes deeper?

@hannesfrank once posted a cool CSS that makes the font smaller for deeper levels. I couldn’t find it in search though.

Yes, that’s what I meant, I want them to be different font sizes, the first level should have larger text, I just want that to be the default, but I don’t know how to adjust it through the code, I’ve tried many ways and they all resize the whole text, I just want to adjust the top line of text only. Thanks for your help