alielie
2026-09-10 9ec80cafc23f5ee3278cacce3c9f86f4087b435a
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
62
63
64
65
66
67
68
69
70
71
72
73
 
 
 
#terminal {
  border: 1px solid #CCCCCC;
  height: 400px;
  background: black;
  overflow: scroll;
}
 
#terminal div.line {
  margin-bottom: 5px;
}
 
#terminal input {
  width: 90%;
  margin: 1px 0 1px 10px;
  border: none;
  display: inline;
  padding: 2px;
  background: black;
  color: #FFFFFF;
  font-size: 16px;
  font-family: Consolas, Monaco, monospace;
 
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
}
 
#terminal input:focus {
  border: none;
    -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
}
 
#terminal input[disabled]{
cursor: default;
}
 
#terminal p, #terminal pre {
  margin: 2px;
  padding:0;
  color: #FFFFFF;
  font-size: 16px;
  background: black;
  font-family: Consolas, Monaco, monospace;
}
 
#terminal p.error, #terminal pre.error {
    color: #FF3300;
}
 
#terminal a {
  color: #6495ED;
}
 
#terminal span.prompt {
  color: #FFFFFF;
  font-size: 14px;
  margin-left: 2px;
}
 
header {
}
 
footer {
    margin-top: 10px;
    border-top: 1px solid #CCCCCC;
}