-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal.css
82 lines (82 loc) · 1.17 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
* {
border: none;
font-family: Courier;
margin: 0;
}
body {
background: #000;
color: #76ff26;
}
canvas {
display: block;
border: none;
resize: auto;
overflow-x: auto;
overflow-y: auto;
}
#user-input:focus {
outline: none;
}
#user-input {
background-color: transparent;
border: none;
color: #5aff00;
resize: none;
font-family: Courier;
width: 98%;
height: 100%;
font-family: courier;
font-weight: bold;
font-size: inherit;
}
p {
padding: 1.2px;
font-weight: bold;
}
html,body {
margin: 0;
padding: 0;
height: 95vh;
}
#content {
margin-right: 1.9px;
overflow-x: hidden;
overflow-y: auto;
height: 95vh;
-ms-overflow-style: none;
scrollbar-width: none;
overflow: -moz-scrollbars-none;
}
#content::-webkit-scrollbar {
display: none;
}
div {
height: 100%;
}
y{
padding: 1.2px;
color: yellow;
}
c{
padding: 1.2px;
color: cyan;
}
r{
padding: 1.2px;
color: #ff5050;
}
o{
padding: 1.2px;
color: #ff9900;
}
w{
padding: 1.2px;
color: white;
}
lsk{
letter-spacing: 0px;
font-family: Consolas;
}
g{
color: #5aff00;
}