Switch to side-by-side view

--- a/HelperStructs/Style.h
+++ b/HelperStructs/Style.h
@@ -1,6 +1,7 @@
 /* Copyright (C) 2011  Lucio Carreras
+ * Copyright (C) 2017 J.F. Dockes
  *
- * This file is part of sayonara player
+ * This file is part of Upplay
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,14 +22,13 @@
 
 #include <QString>
 #include <QPalette>
+#include <string>
 
 namespace Style {
 
-    QString get_style(bool dark);
+QString get_style(bool dark, float multiplier = 1.0);
 
-    QString get_tv_style(bool dark, QPalette* p=0);
-
-    QString get_v_slider_style(bool dark, int percent = -1);
+std::string scale_fonts(const std::string& style, float multiplier);
 
 };