Преглед на файлове

use inline css for console

Gregg Tavares преди 7 години
родител
ревизия
dec477015c
променени са 1 файла, в които са добавени 11 реда и са изтрити 0 реда
  1. 11 0
      threejs/resources/threejs-lessons-helper.js

+ 11 - 0
threejs/resources/threejs-lessons-helper.js

@@ -118,6 +118,17 @@
   function setupConsole() {
     var parent = document.createElement("div");
     parent.className = "console";
+    Object.assign(parent.style, {
+      fontFamily: 'monospace',
+      fontSize: 'medium',
+      maxHeight: '50%',
+      position: 'fixed',
+      bottom: 0,
+      left: 0,
+      width: '100%',
+      overflow: 'auto',
+      background: '#DDD',
+    });
     var numLinesRemaining = 100;
     var added = false;