blob: 97df0a2102d5177bc6c0b17f65623321997a6293 [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;
6 background: black;
7 overflow: scroll;
8}
9
10#terminal div.line {
11 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;
21 background: black;
22 color: #45FF17;
23 font-size: 18px;
24 font-family: Monaco, 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;
34 color: #45FF17;
35 font-size: 18px;
36 font-family: Monaco, serif;
37}
38
Scott Bakerbf1610d2014-06-18 18:22:03 -070039.terminal_help {
40 margin: 2px;
41 color: #45FF17;
42 font-size: 18px;
43 font-family: Monaco, serif;
44 background:black;
45 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 {
54 color: #45FF17;
55 font-size: 16px;
56 margin-left: 2px;
57}