Just like any other time you put two selectors one after another (for example li a), you get the descendant combinator. So * * is any element that is a descendant of any other element — in other words, any element that isn't the root element of the whole document.
That selects all elements nested inside another element in much the same way div a would select all <a> elements nested somewhere inside a <div> element.