-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.css
61 lines (52 loc) · 821 Bytes
/
terminal.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
57
58
59
60
61
.terminal-main {
margin: auto;
box-sizing: border-box;
overflow-y: auto;
height: 100%;
border: 3px solid #eee;
border-radius: 10px;
padding: 10px;
background: rgba(0, 0, 0, .7);
color: white;
font: 1em 'Courier New' monospace;
}
.terminal-ps1 {
display: table-cell;
width: 1%;
bottom: 0;
white-space: nowrap;
}
.terminal-lastline {
display: table;
width: 100%;
height: auto;
height: 1%;
}
.terminal-input {
display: table-cell;
width: 100%;
background: transparent;
color: white;
border: 0 none;
margin: 0;
padding: 0;
outline: 0 none;
font: inherit;
}
.terminal-green {
color: green;
}
.terminal-red {
color: red;
}
.terminal-blue {
color: blue;
}
.terminal-yellow {
color: yellow;
}
.terminal-output {
margin: 0;
padding: 0;
font: inherit;
}