.row > * what does this line mean in CSS.
Everything that is a direct child of .row
the * select all elements
in this case, because there is .row > in front of it, it selects all elements that are direct childrens of .row (elements with class of row)
you can read about the child combinator here: