Tribute page project PLEASE NOTE I'm forking for the first time and I want to make sure that I've interpreted the note correctly

In the CSS editor it says the following:

// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {…} or html {…}, or to all elements within body or html, i.e. h1 {…}, has the potential to pollute the test suite’s CSS. Try adding: * { color: red }, for a quick example!

It’s telling me to use inline styles rather than classes, correct?
Should I not use style sheets either?

I was looking forward to busting out some clean CSS.

Kind regards,
Vincent Liberty

Hello @libertyvincent

You are more than welcome to use CSS. The warning is there to let you know that the testing suite (the panel in the top left corner) is actually a part of the pen, and using global selectors might change its appearance.

The note is only warning you about using the * and some other global selcectors. Definitely use classes and style sheets over inline styles.

@borntofrappe @camperextraordinaire Thank you.