diff --git a/ui/experiments/editor.html b/ui/experiments/editor.html
index 69346550..b5fd2aa3 100755
--- a/ui/experiments/editor.html
+++ b/ui/experiments/editor.html
@@ -27,6 +27,25 @@ div > span:first-child {
 	width: 100px;
 }
 
+/* range syling... */
+input[type='range'] {
+	-webkit-appearance: none !important;
+	background: silver;
+	height: 4px;
+	border: solid 1px gray;
+	border-radius: 2px;
+}
+input[type='range']::-webkit-slider-thumb {
+	-webkit-appearance: none !important;
+	background: white;
+	height: 15px;
+	width: 15px;
+	border: solid 1px gray;
+	border-radius: 50%;
+}
+
+
+