-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (54 loc) · 923 Bytes
/
style.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
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap");
* {
box-sizing: border-box;
}
body,
html {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
font-family: "Source Code Pro", monospace;
}
.terminal {
padding: 5px;
width: 100%;
height: 100%;
background-color: #1d1e22;
color: lime;
}
.terminal-input {
background-color: transparent;
color: #ccc;
font-family: "Source Code Pro", monospace;
border: none;
outline: none;
caret-color: lime;
caret-shape: block;
font-size: 16px;
}
.terminal-output {
padding: 5px;
width: 100%;
height: 100%;
background-color: #1d1e22;
color: #717790;
padding-left: 3ex;
}
.submit-button {
display: none;
}
#history {
color: lime;
}
#user-input {
overflow: auto;
}
textarea {
width: 98vw;
text-indent: 300px;
border: none;
resize: none;
background-color: transparent;
line-height: 1;
}