]> source.dussan.org Git - svg.js.git/commitdiff
Added bench styling
authorwout <wout@impinc.co.uk>
Thu, 4 Aug 2016 16:41:10 +0000 (18:41 +0200)
committerwout <wout@impinc.co.uk>
Thu, 4 Aug 2016 16:41:10 +0000 (18:41 +0200)
bench/runner.html
bench/svg.bench.js

index 4c4020855eabc260b41077b410ee06eb88954e59..0e005f14dee8fede6bcf947d34a08ba3eb613862 100644 (file)
@@ -4,8 +4,10 @@
   <title>SVG.js benchmarker</title>
   <style>
     body {
-      font-family: 'Helvetica Light', Helvetica, sans-serif;
+      font-family: 'Menlo', monospace;
       font-weight: 300;
+      color: #999;
+      font-size: 14px;
     }
     svg {
       width: 2px;
       position: fixed;
       right: 0;
     }
+    span.name {
+      color: #B7CD3E;
+    }
+    span.ms {
+      color: #FF0066;
+    }
   </style>
 </head>
 <body>
index 653d438f9eb5127595714ee1c35835dccf302bd4..0cf46cc3cda7186fbb6232d364a97dcc9fec1284 100644 (file)
@@ -57,7 +57,7 @@
   , write: function(name, ms) {
       var test = document.createElement('div')
       test.className = 'test'
-      test.innerHTML = 'Compleded "' + name + '" in ' + ms + 'ms'
+      test.innerHTML = 'Compleded <span class="name">' + name + '</span> in <span class="ms">' + ms + 'ms</span>'
 
       this.pad().appendChild(test)