CSS to show information sections side by side during review

Hey all,

Suddenly, I thought I wanted to see these sections side-by-side (instead of having to scroll down), so this is the CSS I use to do that. You can see the screenshot below. I use Tampermonkey to insert the CSS but you can use whatever.

It should not affect the collapse state of the sections.

Hope some might find this useful :slight_smile:

#subject-info .container > section {
width: 24%;
display: inline-grid;
}
#subject-info .container {
min-width: 90%;
}

5 Likes