-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
56 lines (46 loc) · 798 Bytes
/
main.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
body {
margin: 0;
background: #333333;
}
#json {
display: none;
}
.terminal {
position: relative;
color: white;
font-family: 'courier new', courier, serif;
font-size: 13px;
word-break: break-word;
}
#output {
overflow: scroll;
/* hide horizontal scrollbar on Windows */
overflow-x: hidden;
padding: 0 15px;
}
.terminal__cursor {
float: left;
padding: 7px;
}
#input {
width: 90%;
background: #333333;
color: white;
border: none;
font-family: 'courier new', courier, serif;
font-size: 14px;
height: 29px;
}
.terminal__list {
padding: 0;
list-style-type: none;
}
.terminal__list li {
display: inline-block;
margin-right: 40px;
}
.terminal__output {
}
.terminal__error {
color: #CF0000;
}