Your comments

Any thoughts? This currently makes it quite painful for me. Personally I'd like to tile the dials on the left (and apply a few other minor cosmetic tweaks) so every time FVD gets an update I need to manually patch the code...

I understand this function obviously targets only a small crowd but at the same time it won't be too complicated to implement I reckon?


PS: my patch, I just used !important everywhere so if FVD could allow me to inject my rules to the new tab page it'd work out of the box.

diff --git a/styles/newtab/style.css b/styles/newtab/style.css
index afae544..e25cdc3 100644
--- a/styles/newtab/style.css
+++ b/styles/newtab/style.css
@@ -1,4 +1,42 @@
+/* custom */
+.newtabCell .body {
+  background-color: rgba(255, 255, 255, 0.5) !important;
+}
+
+.dataContainer {
+    margin-left: 50px !important;
+}
+
+.newtabCell {
+  width: 190px !important;
+}
+
+.newtabCell > .body {
+  width: 180px !important;
+}
+
+.newtabCell > .imgShadow {
+  width: 180px !important;
+}
+
+.newtabCell > .footer {
+  width: 170px !important;
+}
+
+.newtabCell[col="1"] {
+  left: 190px !important;
+}
+
+.newtabCell[col="2"] {
+  left: 380px !important;
+}
+
+.newtabCell[col="3"] {
+  left: 570px !important;
+}
+
+/* default */
 * {
     margin: 0;
     padding: 0;
 }