better colors and fonts for terminal
authorScott Baker <smbaker@gmail.com>
Fri, 20 Jun 2014 05:42:49 +0000 (22:42 -0700)
committerScott Baker <smbaker@gmail.com>
Fri, 20 Jun 2014 05:42:49 +0000 (22:42 -0700)
planetstack/core/static/shell/constants.js
planetstack/core/static/shell/opencloud_shell.css

index 5231cda..97b690a 100644 (file)
@@ -14,7 +14,7 @@ var DefaultInputHtml = function(stack) {
         linePrompt += "<span class='prompt'>.</span>";\r
       }\r
     }\r
-    return "<div class='line'>" +\r
+    return "<div class='terminal_line'>" +\r
            linePrompt +\r
            "<input type='text' class='readLine active' />" +\r
            "</div>";\r
index 97df0a2..26df63f 100644 (file)
@@ -3,11 +3,11 @@
   margin:50px auto 50px auto;
   border: 1px solid black;
   height: 400px;
-  background: black;
+  background: #002b36;
   overflow: scroll;
 }
 
-#terminal div.line {
+#terminal div.terminal_line {
   width: 940px;
   margin-bottom: 5px;
 }
   border: none;
   display: inline;
   padding: 2px;
-  background: black;
-  color: #45FF17;
-  font-size: 18px;
-  font-family: Monaco, monospace;
+  background: #002b36;
+  color: #839496;
+  font-size: 15px;
+  font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace;
   border-radius:0;
 }
 
 
 #terminal p {
   margin: 2px;
-  color: #45FF17;
-  font-size: 18px;
-  font-family: Monaco, serif;
+  color: #839496;
+  font-size: 15px;
+  font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace;
 }
 
 .terminal_help {
   margin: 2px;
-  color: #45FF17;
-  font-size: 18px;
-  font-family: Monaco, serif;
-  background:black;
+  color: #839496;
+  font-size: 15px;
+  font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace;
+  background: #002b36;
   padding:0;
   line-height:normal;
 }
@@ -51,7 +51,7 @@
 }
 
 #terminal span.prompt {
-  color: #45FF17;
+  color: #839496;
   font-size: 16px;
   margin-left: 2px;
 }