Switch to side-by-side view

--- a/HelperStructs/Style.h
+++ b/HelperStructs/Style.h
@@ -21,13 +21,17 @@
 #define STYLE_H_
 
 #include <QString>
-#include <QPalette>
 #include <string>
 
 namespace Style {
 
+/** Retrieve the application qss style sheet, read from disk, adjusted
+ * for color style and scale */
 QString get_style(bool dark, float multiplier = 1.0);
 
+/** Adjust font-size lines in input CSS/QSS string according to
+   multiplier. Only touches fonts given in 'pt' units, and the
+   directives must each happen in their own line. */
 std::string scale_fonts(const std::string& style, float multiplier);
 
 };