blob: 4a24cf01f5a139deaebd92b3ca356c1fd6dd3eb6 [file] [log] [blame]
Scott Baker999edc62014-06-18 15:40:56 -07001#terminal {
2 width: 960px;
3 margin:50px auto 50px auto;
4 border: 1px solid black;
5 height: 400px;
Scott Bakerc9dcc782014-06-19 22:42:49 -07006 background: #002b36;
Scott Baker999edc62014-06-18 15:40:56 -07007 overflow: scroll;
8}
9
Scott Bakerc9dcc782014-06-19 22:42:49 -070010#terminal div.terminal_line {
Scott Baker999edc62014-06-18 15:40:56 -070011 width: 940px;
12 margin-bottom: 5px;
13}
14
15#terminal input {
16 width: 875px;
17 margin: 1px 0 1px 10px;
Scott Baker79bb6782014-06-19 14:32:52 -070018 border: none;
Scott Baker999edc62014-06-18 15:40:56 -070019 display: inline;
20 padding: 2px;
Scott Bakerc9dcc782014-06-19 22:42:49 -070021 background: #002b36;
22 color: #839496;
23 font-size: 15px;
24 font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace;
Scott Bakerbf1610d2014-06-18 18:22:03 -070025 border-radius:0;
Scott Baker999edc62014-06-18 15:40:56 -070026}
27
Scott Baker79bb6782014-06-19 14:32:52 -070028#terminal input:focus {
29 box-shadow:none;
30}
31
Scott Bakerbf1610d2014-06-18 18:22:03 -070032#terminal p {
Scott Baker999edc62014-06-18 15:40:56 -070033 margin: 2px;
Scott Bakerc9dcc782014-06-19 22:42:49 -070034 color: #839496;
35 font-size: 15px;
36 font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace;
Scott Baker999edc62014-06-18 15:40:56 -070037}
38
Scott Bakerbf1610d2014-06-18 18:22:03 -070039.terminal_help {
40 margin: 2px;
Scott Bakerc9dcc782014-06-19 22:42:49 -070041 color: #839496;
42 font-size: 15px;
43 font-family: Menlo, Monaco, 'Andale Mono', 'lucida console', 'Courier New', monospace;
44 background: #002b36;
Scott Bakerbf1610d2014-06-18 18:22:03 -070045 padding:0;
46 line-height:normal;
47}
48
Scott Baker999edc62014-06-18 15:40:56 -070049#terminal a {
50 color: #6495ED;
51}
52
53#terminal span.prompt {
Scott Bakerc9dcc782014-06-19 22:42:49 -070054 color: #839496;
Scott Baker999edc62014-06-18 15:40:56 -070055 font-size: 16px;
56 margin-left: 2px;
57}
Scott Baker4e9f35f2014-06-19 23:50:46 -070058
59/* an experiment with syntax hilighting */
60
61.terminal_string {
62 /*color:green; */
63 color:#859900;
64}
65
66.terminal_number {
67 /*color:darkorange;*/
68 color:#d33682;
69}
70
71.terminal_boolean {
72 /*color:blue;*/
73 color:#7777A0;
74}
75
76.terminal_null {
77 /*color:magenta;*/
78 color:#A000A0;
79}
80
81.terminal_key {
82 /*color:red;*/
83 color:#268bd2;
84}
85